:root {
  --primary: #0a2e5d;
  --primary-dark: #061729;
  --primary-light: #154d84;
  --accent: #00c853;
  --accent-dark: #00963e;
  --white: #ffffff;
  --background: #f4f7fa;
  --text: #17212b;
  --text-soft: #627080;
  --border: #dbe4ec;
  --shadow: 0 20px 55px rgba(6, 23, 41, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* Encabezado */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 228, 236, 0.8);
  backdrop-filter: blur(14px);
}

.header-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 900;
}

.brand-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}

.brand-name {
  font-size: 25px;
  letter-spacing: 0.8px;
}

.brand-name span {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav > a,
.dropdown-button {
  color: var(--primary);
  font-weight: 700;
}

.main-nav > a:not(.button):hover,
.dropdown-button:hover {
  color: var(--accent-dark);
}

.nav-dropdown {
  position: relative;
}

.dropdown-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dropdown-button span {
  margin-left: 4px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -24px;
  width: 260px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
}

.dropdown-menu a:hover {
  color: var(--primary);
  background: var(--background);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--primary);
  border-radius: 5px;
}

/* Botones */

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--primary-dark);
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(0, 200, 83, 0.26);
}

.button-primary:hover {
  background: #09dc61;
}

.button-secondary,
.button-client {
  color: var(--white);
  background: var(--primary);
}

.button-secondary:hover,
.button-client:hover {
  color: var(--white);
  background: var(--primary-light);
}

.button-client {
  min-height: 43px;
  padding-inline: 19px;
  font-size: 14px;
}

/* Portada */

.hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 200, 83, 0.12), transparent 26%),
    linear-gradient(135deg, #f7fbff 0%, #eef5fa 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  color: var(--primary-dark);
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: -2.8px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-description {
  max-width: 650px;
  margin-top: 25px;
  color: var(--text-soft);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
}

.hero-decoration-one {
  top: -160px;
  right: -80px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(10, 46, 93, 0.04);
}

.hero-decoration-two {
  bottom: -160px;
  left: -140px;
  width: 390px;
  height: 390px;
  border: 80px solid rgba(0, 200, 83, 0.035);
}

/* Vista previa de la plataforma */

.platform-preview {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(219, 228, 236, 0.8);
  border-radius: 27px;
  box-shadow: var(--shadow);
  transform: perspective(1100px) rotateY(-3deg);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 22px;
  border-bottom: 1px solid var(--border);
}

.preview-header strong,
.preview-header span {
  display: block;
}

.preview-header strong {
  color: var(--primary);
  font-size: 17px;
}

.preview-header div > span {
  color: var(--text-soft);
  font-size: 12px;
}

.online-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.online-status span {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 200, 83, 0.12);
}

.map-preview {
  position: relative;
  height: 360px;
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 46, 93, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 46, 93, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #edf5f7, #f9fcfd);
  background-size: 34px 34px, 34px 34px, auto;
}

.map-preview::before,
.map-preview::after {
  content: "";
  position: absolute;
  background: rgba(10, 46, 93, 0.08);
  border-radius: 50%;
}

.map-preview::before {
  width: 250px;
  height: 120px;
  top: 50px;
  left: 70px;
  transform: rotate(-20deg);
}

.map-preview::after {
  width: 170px;
  height: 210px;
  right: 40px;
  bottom: 20px;
  transform: rotate(24deg);
}

.route {
  position: absolute;
  z-index: 3;
  height: 4px;
  background: var(--accent);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.55);
}

.route-one {
  width: 260px;
  top: 170px;
  left: 90px;
  transform: rotate(-22deg);
}

.route-two {
  width: 190px;
  right: 70px;
  bottom: 95px;
  transform: rotate(24deg);
}

.vehicle-marker {
  position: absolute;
  z-index: 5;
  padding: 7px 11px;
  color: var(--primary-dark);
  background: var(--white);
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(6, 23, 41, 0.18);
  font-size: 11px;
  font-weight: 900;
}

.vehicle-marker span {
  color: var(--accent);
}

.marker-one {
  top: 70px;
  left: 65px;
}

.marker-two {
  top: 180px;
  right: 45px;
}

.marker-three {
  bottom: 50px;
  left: 160px;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 17px;
  gap: 10px;
}

.preview-stats article {
  padding: 12px;
  text-align: center;
  background: var(--background);
  border-radius: 13px;
}

.preview-stats span,
.preview-stats strong {
  display: block;
}

.preview-stats span {
  color: var(--text-soft);
  font-size: 11px;
}

.preview-stats strong {
  margin-top: 3px;
  color: var(--primary);
  font-size: 13px;
}

/* Secciones */

.section {
  padding: 95px 0;
}

.section-light {
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(0, 200, 83, 0.12), transparent 25%),
    var(--primary-dark);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2,
.company-section h2,
.contact-section h2 {
  color: var(--primary-dark);
  font-size: clamp(33px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.5px;
}

.section-heading p {
  margin-top: 17px;
  color: var(--text-soft);
  font-size: 18px;
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light p {
  color: #b9c9d7;
}

/* Soluciones */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.solution-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.22s ease;
}

.solution-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 200, 83, 0.45);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--background);
  border-radius: 17px;
  font-size: 29px;
}

.solution-card h3 {
  color: var(--primary);
  font-size: 21px;
}

.solution-card p {
  margin: 12px 0 21px;
  color: var(--text-soft);
}

.solution-card a {
  color: var(--accent-dark);
  font-weight: 900;
}

/* Características */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  padding: 28px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
}

.feature > span {
  font-size: 30px;
}

.feature h3 {
  margin-top: 15px;
  font-size: 20px;
}

.feature p {
  margin-top: 7px;
  color: #b9c9d7;
}

/* Pasos */

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  position: relative;
  padding: 31px 24px;
  text-align: center;
  background: var(--background);
  border-radius: var(--radius);
}

.step-number {
  position: absolute;
  top: 17px;
  right: 19px;
  color: rgba(10, 46, 93, 0.18);
  font-size: 28px;
  font-weight: 900;
}

.step-icon {
  margin-bottom: 15px;
  font-size: 40px;
}

.step h3 {
  color: var(--primary);
}

.step p {
  margin-top: 9px;
  color: var(--text-soft);
  font-size: 15px;
}

/* Empresa */

.company-section {
  background: var(--background);
}

.company-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.company-grid p {
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 17px;
}

.company-grid blockquote {
  margin-top: 30px;
  padding: 20px 0 20px 22px;
  color: var(--primary);
  border-left: 5px solid var(--accent);
  font-size: 22px;
  font-weight: 800;
}

.founder strong {
  color: var(--primary-dark);
}

.company-panel {
  padding: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(0, 200, 83, 0.23), transparent 32%),
    var(--primary);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.company-logo {
  color: var(--white);
  font-size: 35px;
  font-weight: 900;
  letter-spacing: 1px;
}

.company-panel p {
  color: #d5e2ec;
}

.company-panel ul {
  margin-top: 26px;
  list-style: none;
}

.company-panel li {
  margin-top: 14px;
  padding-left: 26px;
  position: relative;
}

.company-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

/* Contacto */

.contact-section {
  background: var(--white);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: center;
  padding: 55px;
  color: var(--white);
  background:
    radial-gradient(circle at right, rgba(0, 200, 83, 0.18), transparent 35%),
    var(--primary-dark);
  border-radius: 28px;
}

.contact-box h2 {
  color: var(--white);
}

.contact-box p {
  max-width: 680px;
  margin-top: 17px;
  color: #b9c9d7;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.contact-phone {
  color: var(--white);
  font-weight: 800;
}

/* Pie */

.site-footer {
  padding: 70px 0 25px;
  color: #b9c9d7;
  background: #04101c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 45px;
}

.brand-footer {
  color: var(--white);
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 16px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-top: 9px;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-grid > div:first-child p {
  max-width: 330px;
  margin-top: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

/* WhatsApp */

.whatsapp-floating {
  position: fixed;
  z-index: 950;
  right: 22px;
  bottom: 22px;
  padding: 14px 19px;
  color: var(--primary-dark);
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0, 200, 83, 0.35);
  font-weight: 900;
}

/* Responsive */

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: -100%;
    width: min(88%, 380px);
    height: calc(100vh - 78px);
    padding: 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -15px 20px 45px rgba(6, 23, 41, 0.14);
    transition: 0.25s ease;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 400px;
    padding: 12px 0 0 10px;
  }

  .hero-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .platform-preview {
    max-width: 650px;
    margin-inline: auto;
    transform: none;
  }

  .solutions-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding: 72px 0;
  }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -1.8px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 8px;
  }

  .map-preview {
    height: 300px;
  }

  .preview-stats {
    grid-template-columns: 1fr;
  }

  .solutions-grid,
  .features-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .solution-card,
  .feature,
  .company-panel {
    padding: 25px;
  }

  .contact-box {
    padding: 34px 25px;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-floating {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 13px;
  }
}
/* Ajuste definitivo del logo y encabezado */

.header-container {
  min-height: 92px;
}

.site-header .brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header .brand img {
  display: block;
  width: auto !important;
  height: 76px !important;
  max-width: 330px !important;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
}

.main-nav > a.button-client {
  color: #ffffff !important;
  padding: 0 22px;
}

/* Tamaño para celulares */

@media (max-width: 640px) {
  .site-header .brand img {
    width: auto !important;
    height: 58px !important;
    max-width: 230px !important;
  }

  .header-container {
    min-height: 74px;
  }
}
.dropdown-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.dropdown-button span {
  display: inline-block;
  margin-left: 0;
  line-height: 1;
}
/* ===== PORTADA CON MAPA DE ARGENTINA ===== */

.hero-map-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(219, 228, 236, 0.8);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 22px;
  border-bottom: 1px solid var(--border);
}

.hero-map-header strong,
.hero-map-header span {
  display: block;
}

.hero-map-header strong {
  color: var(--primary);
  font-size: 18px;
}

.hero-map-header div > span {
  color: var(--text-soft);
  font-size: 12px;
}

.argentina-map-wrap {
  position: relative;
  height: 550px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(0, 200, 83, 0.10), transparent 28%),
    linear-gradient(135deg, #eef5f8 0%, #f8fbfd 100%);
}

.argentina-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.argentina-shape {
  fill: rgba(10, 46, 93, 0.10);
  stroke: rgba(10, 46, 93, 0.22);
  stroke-width: 3;
}

.map-line {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8 8;
  animation: dashFlow 4s linear infinite;
}

.map-point {
  fill: var(--white);
  stroke: var(--accent);
  stroke-width: 4;
}

.point-glow {
  fill: var(--accent);
  stroke: var(--white);
  stroke-width: 5;
  animation: pulsePoint 2s infinite;
}

.map-label {
  position: absolute;
  padding: 6px 10px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(6, 23, 41, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.map-label::before {
  content: "●";
  color: var(--accent);
  margin-right: 5px;
}

/* posiciones */
.concordia {
  top: 245px;
  left: 215px;
  z-index: 5;
}

.buenos-aires {
  top: 205px;
  right: 25px;
}

.rosario {
  top: 145px;
  right: 42px;
}

.cordoba {
  top: 105px;
  left: 170px;
}

.salta {
  top: 195px;
  left: 28px;
}

.mendoza {
  top: 335px;
  left: 42px;
}

.neuquen {
  top: 420px;
  left: 52px;
}

.ushuaia {
  bottom: 24px;
  right: 65px;
}

.hero-map-footer {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.hero-map-footer p {
  color: var(--text-soft);
  font-size: 15px;
}

.hero-map-footer strong {
  color: var(--primary);
}

@keyframes pulsePoint {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes dashFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -32;
  }
}

@media (max-width: 980px) {
  .argentina-map-wrap {
    height: 470px;
  }
}

@media (max-width: 640px) {
  .argentina-map-wrap {
    height: 410px;
    padding: 14px;
  }

  .map-label {
    font-size: 10px;
    padding: 5px 8px;
  }

  .concordia { top: 190px; left: 170px; }
  .buenos-aires { top: 165px; left: 205px; }
  .rosario { top: 112px; left: 195px; }
  .cordoba { top: 82px; left: 148px; }
  .mendoza { top: 242px; left: 56px; }
  .neuquen { top: 330px; left: 62px; }
  .ushuaia { bottom: 22px; left: 160px; }
  .salta { top: 182px; left: 28px; }
}
.concordia {
  color: #ffffff;
  background: var(--primary);
  box-shadow:
    0 0 0 5px rgba(0, 200, 83, 0.16),
    0 10px 28px rgba(6, 23, 41, 0.22);
}

.concordia::before {
  color: var(--accent);
}
/* Ajuste vertical de la portada */

.hero {
  padding: 48px 0 75px;
}

.hero-grid {
  align-items: start;
}

.hero-content {
  padding-top: 28px;
}

.hero-map-card {
  margin-top: 0;
}
@media (max-width: 640px) {
  .hero {
    padding: 35px 0 60px;
  }

  .hero-content {
    padding-top: 0;
  }
}
/* Mapa geográfico definitivo INFOGPS */

.argentina-map-wrap {
  height: 550px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.argentina-network-map {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 640px) {
  .argentina-map-wrap {
    height: 440px;
    padding: 6px;
  }
}
/* ===== PRESENTACIÓN DE LA PLATAFORMA ===== */

.platform-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  align-items: center;
  margin-bottom: 65px;
}

.platform-copy h3 {
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -1px;
}

.platform-copy > p {
  margin-top: 20px;
  color: #b9c9d7;
  font-size: 18px;
}

.platform-badge {
  display: inline-flex;
  padding: 8px 15px;
  color: #061729;
  background: #00c853;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.platform-list {
  margin: 27px 0 32px;
  list-style: none;
}

.platform-list li {
  position: relative;
  margin-top: 14px;
  padding-left: 28px;
  color: #d5e2ec;
}

.platform-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00c853;
  font-weight: 900;
}

.section-dark .platform-preview {
  transform: none;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.28);
}

@media (max-width: 980px) {
  .platform-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .platform-copy {
    text-align: center;
  }

  .platform-list {
    max-width: 560px;
    margin-inline: auto;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .platform-showcase {
    margin-bottom: 50px;
  }

  .platform-copy h3 {
    font-size: 32px;
  }

  .platform-copy .button {
    width: 100%;
  }
}
/* Tarjetas de soluciones completamente clickeables */

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.solution-card p {
  flex-grow: 1;
}

.solution-card > a {
  position: static;
}

.solution-card > a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.solution-card:hover {
  cursor: pointer;
}
/* ==================================================
   PÁGINA REMISERÍAS
================================================== */

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 75px 0 90px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(0, 200, 83, 0.12),
      transparent 28%
    ),
    linear-gradient(135deg, #f7fbff 0%, #edf5fa 100%);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.service-hero-content h1 {
  color: var(--primary-dark);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -2.5px;
}

.service-hero-content h1 span {
  color: var(--primary);
}

.service-hero-content > p {
  max-width: 650px;
  margin-top: 25px;
  color: var(--text-soft);
  font-size: 19px;
}

.remises-control-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 27px;
  box-shadow: var(--shadow);
}

.remises-map-demo {
  position: relative;
  height: 390px;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(10, 46, 93, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(10, 46, 93, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(135deg, #edf5f7, #f9fcfd);

  background-size:
    34px 34px,
    34px 34px,
    auto;
}

.demo-road {
  position: absolute;
  height: 6px;
  background: rgba(10, 46, 93, 0.14);
  border-radius: 10px;
}

.road-one {
  width: 370px;
  top: 130px;
  left: 55px;
  transform: rotate(-20deg);
}

.road-two {
  width: 300px;
  top: 240px;
  right: 35px;
  transform: rotate(21deg);
}

.road-three {
  width: 250px;
  bottom: 70px;
  left: 100px;
  transform: rotate(-8deg);
}

.remis-unit {
  position: absolute;
  z-index: 3;
  min-width: 112px;
  padding: 9px 12px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(6, 23, 41, 0.18);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.remis-unit span {
  color: var(--accent);
}

.remis-unit small {
  display: block;
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
}

.unit-one {
  top: 65px;
  left: 70px;
}

.unit-two {
  top: 190px;
  right: 48px;
}

.unit-three {
  bottom: 48px;
  left: 180px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  padding: 30px 26px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.22s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 200, 83, 0.4);
  box-shadow: var(--shadow);
}

.value-icon {
  display: block;
  margin-bottom: 18px;
  font-size: 35px;
}

.value-card h3 {
  color: var(--primary);
  font-size: 20px;
}

.value-card p {
  margin-top: 12px;
  color: var(--text-soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.audience-card {
  padding: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
}

.audience-icon {
  margin-bottom: 18px;
  font-size: 42px;
}

.audience-card h3 {
  color: #ffffff;
  font-size: 26px;
}

.audience-card ul {
  margin-top: 24px;
  list-style: none;
}

.audience-card li {
  position: relative;
  margin-top: 15px;
  padding-left: 27px;
  color: #d5e2ec;
}

.audience-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.remises-message-section {
  text-align: center;
  background:
    radial-gradient(
      circle at center,
      rgba(0, 200, 83, 0.10),
      transparent 35%
    ),
    var(--background);
}

.remises-message {
  max-width: 900px;
}

.remises-message h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
}

.remises-message p {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--text-soft);
  font-size: 19px;
}

@media (max-width: 980px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .remises-control-panel {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .service-hero {
    padding: 45px 0 65px;
  }

  .service-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.7px;
  }

  .service-hero-content > p {
    font-size: 17px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    padding: 28px 23px;
  }

  .remises-map-demo {
    height: 320px;
  }
}
/* ==================================================
   PÁGINA MOTOMANDADOS
================================================== */

.delivery-hero {
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(0, 200, 83, 0.14),
      transparent 28%
    ),
    linear-gradient(135deg, #f7fbff 0%, #edf5fa 100%);
}

.delivery-control-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 27px;
  box-shadow: var(--shadow);
}

.delivery-map-demo {
  position: relative;
  height: 390px;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(10, 46, 93, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(10, 46, 93, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(135deg, #edf5f7, #f9fcfd);

  background-size:
    34px 34px,
    34px 34px,
    auto;
}

.delivery-route {
  position: absolute;
  height: 5px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.45);
}

.delivery-route-one {
  width: 330px;
  top: 105px;
  left: 70px;
  transform: rotate(-18deg);
}

.delivery-route-two {
  width: 310px;
  top: 225px;
  right: 35px;
  transform: rotate(21deg);
}

.delivery-route-three {
  width: 260px;
  bottom: 72px;
  left: 105px;
  transform: rotate(-10deg);
}

.delivery-unit {
  position: absolute;
  z-index: 3;
  min-width: 132px;
  padding: 10px 13px;
  color: var(--primary);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(6, 23, 41, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.delivery-unit span {
  color: var(--accent);
}

.delivery-unit small {
  display: block;
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
}

.delivery-unit-one {
  top: 55px;
  left: 65px;
}

.delivery-unit-two {
  top: 180px;
  right: 45px;
}

.delivery-unit-three {
  bottom: 45px;
  left: 175px;
}

.delivery-point {
  position: absolute;
  z-index: 2;
  padding: 6px 10px;
  color: #ffffff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.point-business {
  top: 150px;
  left: 115px;
}

.point-client {
  right: 90px;
  bottom: 105px;
}

.delivery-process-section {
  background: var(--background);
}

.delivery-message-section {
  text-align: center;
  background:
    radial-gradient(
      circle at center,
      rgba(0, 200, 83, 0.10),
      transparent 35%
    ),
    #ffffff;
}

@media (max-width: 980px) {
  .delivery-control-panel {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .delivery-map-demo {
    height: 320px;
  }

  .delivery-unit {
    min-width: 108px;
    font-size: 11px;
  }

  .delivery-unit-one {
    left: 25px;
  }

  .delivery-unit-two {
    right: 20px;
  }

  .delivery-unit-three {
    left: 90px;
  }
}
/* ==================================================
   PÁGINA EMPRESAS Y FLOTAS
================================================== */

.fleet-hero {
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(0, 200, 83, 0.13),
      transparent 29%
    ),
    linear-gradient(135deg, #f7fbff 0%, #edf5fa 100%);
}

.fleet-control-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 27px;
  box-shadow: var(--shadow);
}

.fleet-map-demo {
  position: relative;
  height: 390px;
  overflow: hidden;

  background:
    linear-gradient(
      rgba(10, 46, 93, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(10, 46, 93, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(135deg, #edf5f7, #f9fcfd);

  background-size:
    34px 34px,
    34px 34px,
    auto;
}

.fleet-route {
  position: absolute;
  height: 6px;
  background: rgba(10, 46, 93, 0.17);
  border-radius: 999px;
}

.fleet-route-one {
  width: 360px;
  top: 100px;
  left: 65px;
  transform: rotate(-17deg);
}

.fleet-route-two {
  width: 330px;
  top: 220px;
  right: 35px;
  transform: rotate(22deg);
}

.fleet-route-three {
  width: 270px;
  bottom: 70px;
  left: 100px;
  transform: rotate(-8deg);
}

.fleet-unit {
  position: absolute;
  z-index: 3;
  min-width: 135px;
  padding: 10px 13px;
  color: var(--primary);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(6, 23, 41, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.fleet-unit span {
  color: var(--accent);
}

.fleet-unit small {
  display: block;
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
}

.fleet-unit-one {
  top: 55px;
  left: 60px;
}

.fleet-unit-two {
  top: 180px;
  right: 45px;
}

.fleet-unit-three {
  bottom: 45px;
  left: 165px;
}

.fleet-process-section {
  background: var(--background);
}

.fleet-message-section {
  text-align: center;

  background:
    radial-gradient(
      circle at center,
      rgba(0, 200, 83, 0.10),
      transparent 35%
    ),
    #ffffff;
}

@media (max-width: 980px) {
  .fleet-control-panel {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .fleet-map-demo {
    height: 320px;
  }

  .fleet-unit {
    min-width: 110px;
    font-size: 11px;
  }

  .fleet-unit-one {
    left: 24px;
  }

  .fleet-unit-two {
    right: 20px;
  }

  .fleet-unit-three {
    left: 82px;
  }
}
/* ==================================================
   PÁGINA INFOGPS GESTIÓN MUNICIPAL
================================================== */

.municipal-hero {
  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(0, 200, 83, 0.14),
      transparent 29%
    ),
    linear-gradient(135deg, #f7fbff 0%, #edf5fa 100%);
}

.municipal-control-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 27px;
  box-shadow: var(--shadow);
}

.municipal-map-demo {
  position: relative;
  height: 410px;
  overflow: hidden;

  background:
    linear-gradient(
      rgba(10, 46, 93, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(10, 46, 93, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(135deg, #edf5f7, #f9fcfd);

  background-size:
    34px 34px,
    34px 34px,
    auto;
}

.municipal-route {
  position: absolute;
  height: 5px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.42);
}

.municipal-route-one {
  width: 350px;
  top: 115px;
  left: 70px;
  transform: rotate(-18deg);
}

.municipal-route-two {
  width: 320px;
  top: 245px;
  right: 35px;
  transform: rotate(22deg);
}

.municipal-route-three {
  width: 280px;
  bottom: 75px;
  left: 95px;
  transform: rotate(-9deg);
}

.municipal-zone {
  position: absolute;
  padding: 6px 11px;
  color: #ffffff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.zone-one {
  top: 70px;
  right: 60px;
}

.zone-two {
  top: 210px;
  left: 55px;
}

.zone-three {
  right: 80px;
  bottom: 55px;
}

.municipal-unit {
  position: absolute;
  z-index: 4;
  min-width: 132px;
  padding: 10px 13px;
  color: var(--primary);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(6, 23, 41, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.municipal-unit span {
  color: var(--accent);
}

.municipal-unit small {
  display: block;
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
}

.municipal-unit-one {
  top: 45px;
  left: 55px;
}

.municipal-unit-two {
  top: 155px;
  right: 45px;
}

.municipal-unit-three {
  bottom: 95px;
  left: 145px;
}

.municipal-unit-four {
  bottom: 32px;
  right: 70px;
}

.municipal-areas-section {
  color: #ffffff;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 200, 83, 0.13),
      transparent 26%
    ),
    var(--primary-dark);
}

.municipal-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.municipal-area-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 21px;
  transition: 0.22s ease;
}

.municipal-area-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(0, 200, 83, 0.50);
}

.municipal-area-icon {
  margin-bottom: 18px;
  font-size: 37px;
}

.municipal-area-card h3 {
  color: #ffffff;
  font-size: 20px;
}

.municipal-area-card p {
  margin-top: 11px;
  color: #b9c9d7;
  font-size: 15px;
}

.municipal-benefits-grid {
  align-items: stretch;
}

.municipal-benefit-card {
  padding: 38px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.municipal-benefit-card h3 {
  color: var(--primary);
  font-size: 26px;
}

.municipal-benefit-card ul {
  margin-top: 24px;
  list-style: none;
}

.municipal-benefit-card li {
  position: relative;
  margin-top: 15px;
  padding-left: 27px;
  color: var(--text-soft);
}

.municipal-benefit-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 900;
}

.transparency-section {
  background: var(--background);
}

.transparency-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.transparency-copy h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
}

.transparency-copy > p {
  margin-top: 21px;
  color: var(--text-soft);
  font-size: 18px;
}

.transparency-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.transparency-points div {
  padding: 19px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.transparency-points strong,
.transparency-points span {
  display: block;
}

.transparency-points strong {
  color: var(--primary);
}

.transparency-points span {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 13px;
}

.transparency-panel {
  padding: 36px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 200, 83, 0.21),
      transparent 34%
    ),
    var(--primary);
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.transparency-panel-label {
  display: inline-block;
  padding: 6px 12px;
  color: var(--primary-dark);
  background: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.transparency-panel h3 {
  margin: 19px 0 23px;
  font-size: 29px;
}

.report-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.report-row span {
  color: #d5e2ec;
}

.report-row strong {
  color: var(--accent);
  text-align: right;
}

.municipal-process-section {
  background: #ffffff;
}

.municipal-message-section {
  text-align: center;

  background:
    radial-gradient(
      circle at center,
      rgba(0, 200, 83, 0.12),
      transparent 36%
    ),
    var(--background);
}

.municipal-message {
  max-width: 920px;
}

.municipal-message h2 {
  color: var(--primary-dark);
  font-size: clamp(35px, 4vw, 53px);
  line-height: 1.12;
}

.municipal-message p {
  max-width: 750px;
  margin: 22px auto 0;
  color: var(--text-soft);
  font-size: 19px;
}

@media (max-width: 1050px) {
  .municipal-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transparency-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .municipal-control-panel {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .municipal-map-demo {
    height: 345px;
  }

  .municipal-unit {
    min-width: 110px;
    font-size: 10px;
  }

  .municipal-unit-one {
    left: 20px;
  }

  .municipal-unit-two {
    right: 17px;
  }

  .municipal-unit-three {
    left: 65px;
  }

  .municipal-unit-four {
    right: 18px;
  }

  .municipal-areas-grid,
  .transparency-points {
    grid-template-columns: 1fr;
  }

  .municipal-benefit-card,
  .transparency-panel {
    padding: 28px 23px;
  }
}
/* ==================================================
   PÁGINA VEHÍCULOS PARTICULARES
================================================== */

.private-hero {
  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(0, 200, 83, 0.14),
      transparent 29%
    ),
    linear-gradient(135deg, #f7fbff 0%, #edf5fa 100%);
}

.private-control-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 27px;
  box-shadow: var(--shadow);
}

.private-map-demo {
  position: relative;
  height: 390px;
  overflow: hidden;

  background:
    linear-gradient(
      rgba(10, 46, 93, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(10, 46, 93, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(135deg, #edf5f7, #f9fcfd);

  background-size:
    34px 34px,
    34px 34px,
    auto;
}

.private-route {
  position: absolute;
  height: 5px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 13px rgba(0, 200, 83, 0.48);
}

.private-route-one {
  width: 360px;
  top: 155px;
  left: 70px;
  transform: rotate(-18deg);
}

.private-route-two {
  width: 270px;
  top: 260px;
  right: 55px;
  transform: rotate(21deg);
}

.home-point {
  position: absolute;
  top: 65px;
  left: 65px;
  z-index: 3;
  padding: 8px 12px;
  color: #ffffff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.home-point span {
  margin-right: 5px;
  color: var(--accent);
}

.private-vehicle {
  position: absolute;
  z-index: 4;
  top: 175px;
  right: 60px;
  min-width: 150px;
  padding: 11px 14px;
  color: var(--primary);
  background: #ffffff;
  border-radius: 13px;
  box-shadow: 0 12px 30px rgba(6, 23, 41, 0.20);
  font-size: 13px;
  font-weight: 900;
}

.private-vehicle span {
  color: var(--accent);
}

.private-vehicle small {
  display: block;
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
}

.security-badge {
  position: absolute;
  left: 100px;
  bottom: 48px;
  z-index: 4;
  padding: 10px 14px;
  color: var(--primary-dark);
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 200, 83, 0.28);
  font-size: 12px;
  font-weight: 900;
}

.security-badge span {
  margin-right: 5px;
}

.private-process-section {
  background: var(--background);
}

.private-message-section {
  text-align: center;

  background:
    radial-gradient(
      circle at center,
      rgba(0, 200, 83, 0.11),
      transparent 36%
    ),
    #ffffff;
}

@media (max-width: 980px) {
  .private-control-panel {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .private-map-demo {
    height: 320px;
  }

  .private-vehicle {
    top: 145px;
    right: 18px;
    min-width: 125px;
  }

  .home-point {
    top: 45px;
    left: 20px;
  }

  .security-badge {
    left: 35px;
    bottom: 34px;
  }
}
/* ==================================================
   PÁGINA MAQUINARIA Y EQUIPOS
================================================== */

.machinery-hero {
  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(0, 200, 83, 0.14),
      transparent 29%
    ),
    linear-gradient(135deg, #f7fbff 0%, #edf5fa 100%);
}

.machinery-control-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 27px;
  box-shadow: var(--shadow);
}

.machinery-map-demo {
  position: relative;
  height: 410px;
  overflow: hidden;

  background:
    linear-gradient(
      rgba(10, 46, 93, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(10, 46, 93, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(135deg, #edf5f7, #f9fcfd);

  background-size:
    34px 34px,
    34px 34px,
    auto;
}

.machinery-route {
  position: absolute;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 13px rgba(0, 200, 83, 0.45);
}

.machinery-route-one {
  width: 355px;
  top: 115px;
  left: 65px;
  transform: rotate(-17deg);
}

.machinery-route-two {
  width: 320px;
  top: 245px;
  right: 35px;
  transform: rotate(21deg);
}

.machinery-route-three {
  width: 275px;
  bottom: 75px;
  left: 100px;
  transform: rotate(-9deg);
}

.machinery-zone {
  position: absolute;
  z-index: 2;
  padding: 7px 12px;
  color: #ffffff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.machinery-zone-one {
  top: 62px;
  right: 55px;
}

.machinery-zone-two {
  left: 55px;
  bottom: 85px;
}

.machinery-unit {
  position: absolute;
  z-index: 4;
  min-width: 142px;
  padding: 10px 13px;
  color: var(--primary);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(6, 23, 41, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.machinery-unit span {
  color: var(--accent);
}

.machinery-unit small {
  display: block;
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
}

.machinery-unit-one {
  top: 42px;
  left: 50px;
}

.machinery-unit-two {
  top: 158px;
  right: 40px;
}

.machinery-unit-three {
  bottom: 92px;
  left: 160px;
}

.machinery-unit-four {
  right: 65px;
  bottom: 25px;
}

.machinery-installation-section {
  background: var(--background);
}

.machinery-installation-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 70px;
  align-items: center;
}

.machinery-installation-copy h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
}

.machinery-installation-copy > p {
  margin-top: 21px;
  color: var(--text-soft);
  font-size: 18px;
}

.machinery-check-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.machinery-check-list div {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 15px;
  font-weight: 700;
}

.machinery-check-list span {
  color: var(--accent-dark);
  font-weight: 900;
}

.machinery-installation-panel {
  padding: 36px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 200, 83, 0.22),
      transparent 34%
    ),
    var(--primary);
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.machinery-panel-label {
  display: inline-block;
  padding: 6px 12px;
  color: var(--primary-dark);
  background: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.machinery-installation-panel h3 {
  margin: 19px 0 23px;
  font-size: 29px;
}

.machinery-report-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.machinery-report-row span {
  color: #d5e2ec;
}

.machinery-report-row strong {
  color: var(--accent);
  text-align: right;
}

.machinery-process-section {
  background: #ffffff;
}

.machinery-message-section {
  text-align: center;

  background:
    radial-gradient(
      circle at center,
      rgba(0, 200, 83, 0.11),
      transparent 36%
    ),
    var(--background);
}

@media (max-width: 1050px) {
  .machinery-installation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .machinery-control-panel {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .machinery-map-demo {
    height: 345px;
  }

  .machinery-unit {
    min-width: 112px;
    font-size: 10px;
  }

  .machinery-unit-one {
    left: 18px;
  }

  .machinery-unit-two {
    right: 16px;
  }

  .machinery-unit-three {
    left: 65px;
  }

  .machinery-unit-four {
    right: 16px;
  }

  .machinery-installation-panel {
    padding: 28px 23px;
  }

  .machinery-report-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .machinery-report-row strong {
    text-align: left;
  }
}
/* ==================================================
   PÁGINA PLATAFORMA INFOGPS
================================================== */

.platform-site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-active {
  color: var(--accent) !important;
}

/* PORTADA */

.platform-hero {
  position: relative;
  min-height: calc(100vh - 86px);
  padding: 75px 0 70px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 76% 30%,
      rgba(0, 200, 83, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 20% 20%,
      rgba(20, 100, 190, 0.18),
      transparent 34%
    ),
    linear-gradient(135deg, #04111f 0%, #071d34 55%, #082441 100%);
}

.platform-grid-background {
  position: absolute;
  inset: 0;
  opacity: 0.22;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    );

  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 25%, transparent 92%);
}

.platform-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.platform-glow-one {
  top: 160px;
  right: 5%;
  width: 350px;
  height: 350px;
  background: rgba(0, 200, 83, 0.10);
}

.platform-glow-two {
  left: -120px;
  bottom: 80px;
  width: 320px;
  height: 320px;
  background: rgba(35, 105, 180, 0.12);
}

.platform-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 62px;
  align-items: center;
}

.platform-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  color: #8dffb4;
  background: rgba(0, 200, 83, 0.11);
  border: 1px solid rgba(0, 200, 83, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 13px rgba(0, 200, 83, 0.80);
}

.platform-hero-copy h1 {
  max-width: 660px;
  margin-top: 25px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.platform-hero-copy h1 span {
  display: block;
  color: var(--accent);
}

.platform-hero-copy > p {
  max-width: 610px;
  margin-top: 25px;
  color: #c4d3df;
  font-size: 19px;
  line-height: 1.75;
}

.platform-hero-actions,
.platform-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.platform-button-primary {
  color: #04111f;
  background: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: 0 12px 32px rgba(0, 200, 83, 0.24);
}

.platform-button-primary:hover {
  transform: translateY(-3px);
  background: #1de56c;
}

.platform-button-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.platform-button-outline:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.10);
}

.platform-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.platform-hero-trust div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aebfcd;
  font-size: 12px;
  font-weight: 700;
}

.platform-trust-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 9px rgba(0, 200, 83, 0.65);
}

/* TABLERO CENTRAL */

.platform-dashboard {
  overflow: hidden;
  background: rgba(8, 31, 54, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(0, 200, 83, 0.05);
  backdrop-filter: blur(14px);
  transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-brand-mark {
  color: var(--accent);
  font-size: 20px;
  text-shadow: 0 0 14px rgba(0, 200, 83, 0.65);
}

.dashboard-brand strong,
.dashboard-brand small {
  display: block;
}

.dashboard-brand strong {
  font-size: 13px;
}

.dashboard-brand small {
  margin-top: 2px;
  color: #8298aa;
  font-size: 10px;
}

.dashboard-online {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9fb2c1;
  font-size: 10px;
  font-weight: 800;
}

.dashboard-online span {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.80);
  animation: platformPulse 1.8s infinite;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 510px;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 10px;
  background: rgba(0, 0, 0, 0.13);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.sidebar-button {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 12px 5px;
  color: #7890a4;
  border-radius: 11px;
  font-size: 9px;
  font-weight: 700;
}

.sidebar-button span {
  font-size: 17px;
}

.sidebar-active {
  color: var(--accent);
  background: rgba(0, 200, 83, 0.10);
}

.dashboard-main {
  padding: 14px;
}

.dashboard-map {
  position: relative;
  height: 370px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 200, 83, 0.06),
      transparent 45%
    ),
    #0b2945;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
}

.dashboard-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    );

  background-size: 38px 38px;
}

.map-route,
.live-road {
  position: absolute;
  height: 5px;
  background: rgba(71, 133, 180, 0.34);
  border-radius: 999px;
}

.map-route-one {
  top: 90px;
  left: 55px;
  width: 390px;
  transform: rotate(-15deg);
}

.map-route-two {
  top: 205px;
  right: 20px;
  width: 360px;
  transform: rotate(20deg);
}

.map-route-three {
  left: 130px;
  bottom: 64px;
  width: 330px;
  transform: rotate(-7deg);
}

.map-zone {
  position: absolute;
  z-index: 2;
  padding: 5px 9px;
  color: #7fa4bf;
  background: rgba(5, 20, 35, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}

.map-zone-one {
  top: 54px;
  right: 45px;
}

.map-zone-two {
  left: 45px;
  bottom: 48px;
}

.map-vehicle {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 145px;
  padding: 9px 11px;
  color: #ffffff;
  background: rgba(4, 18, 32, 0.92);
  border: 1px solid rgba(0, 200, 83, 0.25);
  border-radius: 11px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.30);
}

.map-vehicle strong,
.map-vehicle small {
  display: block;
}

.map-vehicle strong {
  font-size: 10px;
}

.map-vehicle small {
  margin-top: 2px;
  color: #8298aa;
  font-size: 8px;
}

.vehicle-pulse {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(0, 200, 83, 0.80);
}

.vehicle-pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(0, 200, 83, 0.45);
  border-radius: 50%;
  animation: mapPulse 2s infinite;
}

.map-vehicle-one {
  top: 60px;
  left: 75px;
}

.map-vehicle-two {
  top: 185px;
  right: 38px;
}

.map-vehicle-three {
  left: 190px;
  bottom: 48px;
}

.map-control {
  position: absolute;
  right: 13px;
  bottom: 13px;
  z-index: 4;
  display: grid;
  overflow: hidden;
  border-radius: 8px;
}

.map-control button {
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: rgba(3, 16, 28, 0.88);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 11px;
}

.dashboard-metrics article {
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
}

.dashboard-metrics span,
.dashboard-metrics strong,
.dashboard-metrics small {
  display: block;
}

.dashboard-metrics span {
  color: #8399ab;
  font-size: 8px;
}

.dashboard-metrics strong {
  margin-top: 5px;
  color: var(--accent);
  font-size: 11px;
}

.dashboard-metrics small {
  margin-top: 3px;
  color: #607a8d;
  font-size: 7px;
}

.platform-scroll-indicator {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7e95a7;
  font-size: 10px;
  transform: translateX(-50%);
}

.platform-scroll-indicator span {
  width: 21px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.platform-scroll-indicator span::after {
  content: "";
  display: block;
  width: 3px;
  height: 7px;
  margin: 6px auto;
  background: var(--accent);
  border-radius: 999px;
  animation: scrollDot 1.8s infinite;
}

/* FLUJO */

.platform-flow-section {
  background: #ffffff;
}

.platform-flow {
  display: grid;
  grid-template-columns: 1fr 55px 1fr 55px 1fr 55px 1fr;
  align-items: center;
  margin-top: 60px;
}

.flow-card {
  position: relative;
  min-height: 260px;
  padding: 31px 25px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 21px;
  transition: 0.22s ease;
}

.flow-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.flow-number {
  position: absolute;
  top: 18px;
  right: 19px;
  color: rgba(10, 46, 93, 0.12);
  font-size: 31px;
  font-weight: 900;
}

.flow-icon {
  margin-bottom: 20px;
  font-size: 41px;
}

.flow-card h3 {
  color: var(--primary);
  font-size: 20px;
}

.flow-card p {
  margin-top: 11px;
  color: var(--text-soft);
  font-size: 14px;
}

.flow-connector {
  position: relative;
  height: 2px;
  background: rgba(10, 46, 93, 0.14);
}

.flow-connector span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.65);
  transform: translateY(-50%);
  animation: flowMove 2.2s linear infinite;
}

.platform-flow-note {
  max-width: 820px;
  margin: 28px auto 0;
  color: var(--text-soft);
  font-size: 13px;
  text-align: center;
}

/* SECCIONES GENERALES */

.platform-feature-section {
  overflow: hidden;
}

.platform-feature-dark {
  color: #ffffff;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 200, 83, 0.12),
      transparent 28%
    ),
    var(--primary-dark);
}

.platform-feature-grid,
.platform-reports-grid,
.platform-devices-grid,
.platform-security-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: center;
}

.platform-feature-reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.platform-section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.platform-feature-dark .platform-section-label {
  color: var(--accent);
}

.platform-feature-copy h2,
.platform-security-grid h2 {
  color: var(--primary-dark);
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.1;
}

.platform-feature-dark .platform-feature-copy h2,
.platform-security-grid h2 {
  color: #ffffff;
}

.platform-feature-copy > p,
.platform-security-grid > div > p {
  margin-top: 21px;
  color: var(--text-soft);
  font-size: 18px;
}

.platform-feature-dark .platform-feature-copy > p,
.platform-security-grid > div > p {
  color: #b8c9d6;
}

.platform-feature-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  list-style: none;
}

.platform-feature-list li {
  position: relative;
  padding-left: 27px;
  color: #d5e1e9;
}

.platform-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.platform-list-light li {
  color: var(--text-soft);
}

.platform-list-light li::before {
  color: var(--accent-dark);
}

/* MAPA EN VIVO */

.live-map-card {
  overflow: hidden;
  background: #071a2c;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 25px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.30);
}

.live-map-header {
  display: flex;
  justify-content: space-between;
  padding: 17px 20px;
  color: #8da3b4;
  background: rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.live-map-header div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 800;
}

.live-indicator {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.80);
  animation: platformPulse 1.8s infinite;
}

.live-map-visual {
  position: relative;
  height: 470px;
  overflow: hidden;

  background:
    linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    #0b2944;

  background-size: 42px 42px;
}

.live-road-one {
  top: 90px;
  left: 55px;
  width: 450px;
  transform: rotate(-15deg);
}

.live-road-two {
  top: 215px;
  right: 10px;
  width: 420px;
  transform: rotate(20deg);
}

.live-road-three {
  left: 95px;
  bottom: 100px;
  width: 390px;
  transform: rotate(-7deg);
}

.live-road-four {
  top: 40px;
  left: 280px;
  width: 340px;
  transform: rotate(78deg);
}

.live-location {
  position: absolute;
  z-index: 3;
  padding: 8px 11px;
  color: #ffffff;
  background: rgba(4, 17, 30, 0.92);
  border: 1px solid rgba(0, 200, 83, 0.25);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
}

.live-location span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.75);
}

.live-location-one {
  top: 65px;
  left: 85px;
}

.live-location-two {
  top: 190px;
  right: 65px;
}

.live-location-three {
  left: 190px;
  bottom: 95px;
}

.live-location-four {
  right: 110px;
  bottom: 35px;
}

.live-map-tooltip {
  position: absolute;
  z-index: 4;
  top: 145px;
  left: 195px;
  width: 190px;
  padding: 17px;
  color: #ffffff;
  background: rgba(4, 17, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.live-map-tooltip strong,
.live-map-tooltip span,
.live-map-tooltip small {
  display: block;
}

.live-map-tooltip span {
  margin-top: 7px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.live-map-tooltip small {
  margin-top: 4px;
  color: #7790a3;
}

/* HISTORIAL */

.history-panel {
  padding: 29px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.history-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.history-panel-header > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.history-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--primary);
  background: rgba(0, 200, 83, 0.13);
  border-radius: 12px;
  font-size: 21px;
}

.history-panel-header strong,
.history-panel-header small {
  display: block;
}

.history-panel-header strong {
  color: var(--primary);
}

.history-panel-header small {
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 11px;
}

.history-date {
  padding: 7px 11px;
  color: var(--primary);
  background: var(--background);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.history-timeline {
  position: relative;
  display: grid;
  gap: 2px;
  margin-top: 28px;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 7px;
  width: 2px;
  background: var(--border);
}

.history-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 15px 0;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 4px solid #9db1c0;
  border-radius: 50%;
}

.timeline-dot-active {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.45);
}

.history-timeline strong,
.history-timeline small {
  display: block;
}

.history-timeline strong {
  color: var(--primary);
  font-size: 13px;
}

.history-timeline small {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 10px;
}

.history-timeline b {
  color: var(--primary);
  font-size: 11px;
}

.history-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 21px;
}

.history-summary div {
  padding: 13px;
  text-align: center;
  background: var(--background);
  border-radius: 11px;
}

.history-summary span,
.history-summary strong {
  display: block;
}

.history-summary span {
  color: var(--text-soft);
  font-size: 9px;
}

.history-summary strong {
  margin-top: 4px;
  color: var(--primary);
  font-size: 13px;
}

/* ALERTAS */

.platform-alerts-section {
  color: #ffffff;
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(0, 200, 83, 0.13),
      transparent 27%
    ),
    var(--primary-dark);
}

.platform-alerts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
  margin-top: 52px;
}

.platform-alert-card {
  padding: 27px 23px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  transition: 0.22s ease;
}

.platform-alert-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 200, 83, 0.36);
}

.alert-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alert-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--primary-dark);
  background: var(--accent);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
}

.alert-status {
  padding: 5px 8px;
  color: #9db1c0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.platform-alert-card h3 {
  margin-top: 22px;
  font-size: 21px;
}

.platform-alert-card > p {
  min-height: 74px;
  margin-top: 10px;
  color: #adbfcd;
  font-size: 14px;
}

.alert-demo-zone,
.alert-connection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 19px;
  padding: 12px;
  color: #c9d7e1;
  background: rgba(0, 0, 0, 0.16);
  border-radius: 11px;
  font-size: 10px;
}

.alert-demo-zone strong {
  color: var(--accent);
}

.alert-speed-meter {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 19px;
  padding: 13px;
  background: rgba(0, 0, 0, 0.16);
  border-radius: 11px;
}

.alert-speed-meter span {
  color: #7d94a6;
  font-size: 9px;
}

.alert-speed-meter strong {
  color: var(--accent);
  font-size: 25px;
}

.alert-event {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.16);
  border-radius: 11px;
}

.alert-event-dot,
.alert-connection span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.70);
}

.alert-event strong,
.alert-event small {
  display: block;
}

.alert-event strong {
  font-size: 10px;
}

.alert-event small {
  margin-top: 2px;
  color: #7890a2;
  font-size: 8px;
}

/* REPORTES */

.platform-reports-section {
  background: var(--background);
}

.report-feature-points {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.report-feature-points > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 13px;
}

.report-feature-points > div > span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  color: var(--primary);
  background: rgba(0, 200, 83, 0.13);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 900;
}

.report-feature-points strong,
.report-feature-points small {
  display: block;
}

.report-feature-points strong {
  color: var(--primary);
  font-size: 13px;
}

.report-feature-points small {
  margin-top: 2px;
  color: var(--text-soft);
}

.analytics-card {
  padding: 29px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.analytics-header strong,
.analytics-header small {
  display: block;
}

.analytics-header strong {
  color: var(--primary);
}

.analytics-header small {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 10px;
}

.analytics-header > span {
  padding: 7px 10px;
  color: var(--primary);
  background: var(--background);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.analytics-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 13px;
  align-items: end;
  height: 260px;
  margin-top: 28px;
  padding: 20px 15px 0;
  border-bottom: 1px solid var(--border);
}

.analytics-bars div {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  height: 100%;
}

.analytics-bars span {
  width: 100%;
  min-height: 20px;
  background:
    linear-gradient(
      to top,
      var(--primary),
      var(--accent)
    );
  border-radius: 8px 8px 2px 2px;
}

.analytics-bars small {
  padding: 9px 0;
  color: var(--text-soft);
  font-size: 9px;
  text-align: center;
}

.analytics-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 21px;
}

.analytics-footer div {
  padding: 13px;
  background: var(--background);
  border-radius: 11px;
}

.analytics-footer span,
.analytics-footer strong {
  display: block;
}

.analytics-footer span {
  color: var(--text-soft);
  font-size: 9px;
}

.analytics-footer strong {
  margin-top: 4px;
  color: var(--primary);
  font-size: 12px;
}

/* USUARIOS */

.platform-users-section {
  background: #ffffff;
}

.platform-users-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.user-role-card {
  padding: 32px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 21px;
  transition: 0.22s ease;
}

.user-role-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.user-role-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(6, 23, 41, 0.08);
  font-size: 29px;
}

.user-role-card h3 {
  margin-top: 20px;
  color: var(--primary);
}

.user-role-card p {
  margin-top: 10px;
  color: var(--text-soft);
}

.role-permissions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 21px;
}

.role-permissions span {
  padding: 6px 9px;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

/* DISPOSITIVOS */

.platform-devices-section {
  overflow: hidden;
  background: var(--background);
}

.platform-devices-visual {
  position: relative;
  min-height: 470px;
}

.device-desktop {
  position: absolute;
  top: 20px;
  left: 0;
  width: 85%;
}

.device-screen {
  padding: 13px;
  background: #102f4a;
  border: 4px solid #0a1f32;
  border-radius: 17px;
  box-shadow: 0 30px 65px rgba(6, 23, 41, 0.26);
}

.device-screen-top {
  height: 20px;
  margin-bottom: 9px;
  background: #071b2d;
  border-radius: 7px;
}

.device-map,
.device-mini-map {
  position: relative;
  height: 255px;
  overflow: hidden;

  background:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    #123b5d;

  background-size: 31px 31px;
  border-radius: 9px;
}

.device-route {
  position: absolute;
  top: 112px;
  left: 55px;
  width: 275px;
  height: 5px;
  background: var(--accent);
  border-radius: 999px;
  transform: rotate(-15deg);
}

.device-marker {
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--accent);
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.60);
}

.device-marker-one {
  top: 75px;
  left: 110px;
}

.device-marker-two {
  right: 90px;
  bottom: 68px;
}

.device-base {
  width: 34%;
  height: 18px;
  margin: auto;
  background: #0b253b;
  border-radius: 0 0 10px 10px;
}

.device-tablet {
  position: absolute;
  right: 0;
  bottom: 25px;
  width: 43%;
  padding: 9px;
  background: #0b253b;
  border-radius: 17px;
  box-shadow: 0 25px 50px rgba(6, 23, 41, 0.28);
}

.device-tablet-screen,
.device-phone-screen {
  padding: 8px;
  background: #f2f7fa;
  border-radius: 11px;
}

.device-mini-header {
  height: 14px;
  margin-bottom: 7px;
  background: #0d3555;
  border-radius: 5px;
}

.device-tablet .device-mini-map {
  height: 180px;
}

.device-phone {
  position: absolute;
  left: 25px;
  bottom: 0;
  width: 26%;
  padding: 8px;
  background: #071b2d;
  border-radius: 23px;
  box-shadow: 0 25px 50px rgba(6, 23, 41, 0.32);
}

.device-phone-speaker {
  width: 27%;
  height: 4px;
  margin: 2px auto 7px;
  background: #36546b;
  border-radius: 999px;
}

.device-phone .device-mini-map {
  height: 125px;
}

.device-phone-info {
  height: 42px;
  margin-top: 7px;
  background: #ffffff;
  border-radius: 7px;
}

/* SEGURIDAD */

.platform-security-section {
  color: #ffffff;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 200, 83, 0.13),
      transparent 28%
    ),
    var(--primary-dark);
}

.security-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.security-features article {
  display: flex;
  gap: 13px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
}

.security-features article > span {
  font-size: 27px;
}

.security-features strong,
.security-features small {
  display: block;
}

.security-features small {
  margin-top: 4px;
  color: #9fb3c2;
}

/* CTA FINAL */

.platform-final-cta {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      #04111f 0%,
      #092845 100%
    );
}

.platform-final-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 650px;
  height: 650px;
  background: rgba(0, 200, 83, 0.12);
  border-radius: 50%;
  filter: blur(45px);
  transform: translateX(-50%);
}

.platform-final-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.platform-final-content h2 {
  margin-top: 24px;
  font-size: clamp(40px, 5vw, 65px);
  line-height: 1.08;
}

.platform-final-content h2 span {
  display: block;
  color: var(--accent);
}

.platform-final-content > p {
  max-width: 730px;
  margin: 24px auto 0;
  color: #b8cad7;
  font-size: 18px;
}

.platform-final-actions {
  justify-content: center;
}

/* ANIMACIONES */

@keyframes platformPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}

@keyframes mapPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.55);
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes flowMove {
  from {
    left: 0;
  }

  to {
    left: calc(100% - 9px);
  }
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .platform-hero-grid {
    grid-template-columns: 1fr;
  }

  .platform-hero-copy {
    max-width: 820px;
    text-align: center;
    margin-inline: auto;
  }

  .platform-hero-copy h1,
  .platform-hero-copy > p {
    margin-inline: auto;
  }

  .platform-hero-actions,
  .platform-hero-trust {
    justify-content: center;
  }

  .platform-dashboard {
    max-width: 920px;
    margin-inline: auto;
    transform: none;
  }

  .platform-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .flow-connector {
    display: none;
  }

  .platform-alerts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .platform-feature-grid,
  .platform-feature-reverse,
  .platform-reports-grid,
  .platform-devices-grid,
  .platform-security-grid {
    grid-template-columns: 1fr;
  }

  .platform-feature-copy {
    order: 1;
  }

  .live-map-card,
  .history-panel,
  .analytics-card,
  .platform-devices-visual {
    order: 2;
  }

  .platform-devices-visual {
    min-height: 520px;
  }

  .platform-users-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .platform-hero {
    min-height: auto;
    padding: 70px 0 65px;
  }

  .platform-hero-copy h1 {
    font-size: 45px;
  }

  .platform-dashboard {
    border-radius: 18px;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .sidebar-button {
    padding: 8px 3px;
  }

  .dashboard-map {
    height: 330px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .map-vehicle {
    min-width: 118px;
  }

  .map-vehicle-one {
    left: 18px;
  }

  .map-vehicle-two {
    right: 15px;
  }

  .map-vehicle-three {
    left: 75px;
  }

  .platform-flow {
    grid-template-columns: 1fr;
  }

  .platform-alerts-grid {
    grid-template-columns: 1fr;
  }

  .live-map-visual {
    height: 390px;
  }

  .live-map-tooltip {
    top: 130px;
    left: 55px;
  }

  .history-summary,
  .analytics-footer,
  .security-features {
    grid-template-columns: 1fr;
  }

  .platform-devices-visual {
    min-height: 410px;
  }

  .device-desktop {
    width: 95%;
  }

  .device-map {
    height: 200px;
  }

  .device-tablet {
    width: 46%;
  }

  .device-tablet .device-mini-map {
    height: 135px;
  }

  .device-phone {
    width: 29%;
  }

  .platform-final-cta {
    padding: 95px 0;
  }
}

@media (max-width: 480px) {
  .platform-hero-copy h1 {
    font-size: 38px;
  }

  .dashboard-topbar,
  .live-map-header,
  .analytics-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-map {
    height: 300px;
  }

  .sidebar-button {
    font-size: 7px;
  }

  .sidebar-button span {
    font-size: 14px;
  }

  .map-vehicle {
    min-width: 103px;
    padding: 7px 8px;
  }

  .map-vehicle strong {
    font-size: 8px;
  }

  .map-vehicle small {
    font-size: 6px;
  }

  .live-map-tooltip {
    width: 170px;
  }

  .analytics-bars {
    gap: 7px;
    height: 220px;
  }

  .platform-hero-actions,
  .platform-final-actions {
    flex-direction: column;
  }

  .platform-hero-actions .button,
  .platform-final-actions .button {
    width: 100%;
    text-align: center;
  }
}
/* Ajuste para notebooks y pantallas de poca altura */
@media (min-width: 1181px) and (max-height: 760px) {

  .platform-hero {
    min-height: calc(100vh - 86px);
    padding: 45px 0 55px;
  }

  .platform-hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
  }

  .platform-hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(44px, 4.8vw, 62px);
    line-height: 1;
  }

  .platform-hero-copy > p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .platform-hero-actions {
    margin-top: 22px;
  }

  .platform-hero-trust {
    gap: 12px;
    margin-top: 18px;
  }

  .dashboard-topbar {
    padding: 13px 17px;
  }

  .dashboard-layout {
    min-height: 430px;
  }

  .dashboard-sidebar {
    padding: 12px 8px;
  }

  .sidebar-button {
    padding: 9px 4px;
  }

  .dashboard-main {
    padding: 11px;
  }

  .dashboard-map {
    height: 300px;
  }

  .platform-scroll-indicator {
    display: none;
  }
}