/* =========================================================
   BASE / VARIABLES
   ========================================================= */

:root {
  --navy: #020817;
  --navy2: #06162d;
  --blue: #1e90ff;
  --blue2: #006dff;
  --cyan: #56c7ff;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --text: #f5f8ff;
  --muted: #b8c7dc;
  --glass: rgba(8, 24, 52, .58);
  --border: rgba(100, 190, 255, .28);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

*:focus:not(:focus-visible) {
  outline: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: 'Montserrat', Segoe UI, Arial, sans-serif;
  color: var(--text);
  background: #020817;
}

/* Normalización general de textos:
   Todo texto que no sea H1, H2, H3 o H4 queda en 17.5px / 400.
   Importante: no afecta spans dentro de títulos. */
body :where(p, a, button, small, li, ul, ol, label, input, textarea, select) {
  font-size: 17.5px;
  font-weight: 400;
}

body :where(span):not(h1 span):not(h2 span):not(h3 span):not(h4 span) {
  font-size: 17.5px;
  font-weight: 400;
}

p,
ul,
ol {
  font-size: 17.5px;
  font-weight: 400;
}

ul,
ol {
  color: #d6e5f7;
  line-height: 1.8;
}

.site-bg {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74vw 250px, rgba(0, 120, 255, .35), transparent 450px),
    radial-gradient(circle at 14vw 450px, rgba(0, 180, 255, .15), transparent 400px),
    linear-gradient(180deg, #020817 0%, #06142a 1200px, #020817 100%);
}

.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01));
  background-color: rgba(6, 20, 40, 0.65);
  border: 1px solid var(--border);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .4),
    inset 0 1px 0 rgba(255, 255, 255, .05);
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(5, 18, 42, .85), rgba(7, 26, 58, .65)),
    rgba(255, 255, 255, .05);
  border: 1px solid rgba(120, 200, 255, .24);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .5),
    inset 0 1px 0 rgba(255, 255, 255, .10);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  flex-shrink: 0;
}

.logo-img {
  width: 168px;
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 16px rgba(0, 140, 255, .28)) drop-shadow(0 6px 18px rgba(0, 0, 0, .28));
}

.footer-logo img {
  width: 180px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 140, 255, .22));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(120, 200, 255, .10);
}

.nav a {
  position: relative;
  color: rgba(245, 248, 255, .95);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .15px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: .25s ease;
}

.nav a:hover {
  color: white;
  background: rgba(86, 199, 255, .10);
  box-shadow: inset 0 0 0 1px rgba(120, 200, 255, .16), 0 0 18px rgba(0, 132, 255, .16);
}

.top-whatsapp {
  white-space: nowrap;
}

.whatsapp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  border: 1px solid rgba(210, 255, 225, .50);
  box-shadow:
    0 0 22px rgba(37, 211, 102, .34),
    0 10px 24px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .20);
  overflow: hidden;
}

.whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .30), transparent 65%);
  transform: translateX(-75%);
  transition: .55s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 32px rgba(37, 211, 102, .48),
    0 14px 30px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .24);
}

.whatsapp-btn:hover::before {
  transform: translateX(75%);
}

.whatsapp-icon {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: white;
  flex-shrink: 0;
}

.whatsapp-btn>* {
  position: relative;
  z-index: 2;
}

.top-whatsapp.whatsapp-btn {
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 17.5px;
}

.menu-btn {
  display: none;
  color: white;
  font-size: 28px;
  background: none;
  border: 0;
}

/* =========================================================
   SECTION: HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 650px;
  padding: 55px 0 36px max(24px, calc((100vw - 1180px)/2));
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 0;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -180px -180px -120px -180px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 28%, rgba(0, 132, 255, .34), transparent 24%),
    radial-gradient(circle at 86% 52%, rgba(75, 190, 255, .18), transparent 22%),
    radial-gradient(circle at 48% 40%, rgba(0, 120, 255, .13), transparent 24%),
    radial-gradient(circle at 62% 76%, rgba(0, 60, 180, .20), transparent 26%);
  transform: translate3d(0, 0, 0) scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 34%, rgba(130, 220, 255, .22), transparent 7%),
    radial-gradient(circle at 64% 60%, rgba(0, 132, 255, .16), transparent 10%),
    radial-gradient(circle at 88% 70%, rgba(90, 190, 255, .12), transparent 9%);
  opacity: .78;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding-top: 0;
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -1.2px;
  font-weight: 600;
}

.hero h1 span,
h2 span {
  color: var(--blue);
  text-shadow: 0 0 28px rgba(30, 144, 255, .65);
}

.hero h1 span,
h1 span,
h2 span,
h3 span,
h4 span {
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}


.hero p {
  max-width: 650px;
  margin: 22px 0;
  color: #e9f2ff;
  font-size: 17.5px;
  line-height: 1.55;
  font-weight: 400;
}

.badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  margin: 28px 0;
  white-space: nowrap;
}

.badges span {
  font-weight: 400;
  font-size: 17.5px;
  color: white;
}

.badges span:before {
  content: "\2726";
  color: #8bd8ff;
  margin-right: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  padding: 10px 22px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 17.5px;
  line-height: 1.2;
  border: 1px solid rgba(120, 200, 255, .38);
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.primary {
  background: linear-gradient(135deg, #0078ff, #0051c8);
  box-shadow:
    0 0 28px rgba(0, 132, 255, .38),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.primary.whatsapp-btn {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  border-color: rgba(210, 255, 225, .50);
  box-shadow:
    0 0 28px rgba(37, 211, 102, .38),
    0 12px 28px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .20);
}

.secondary {
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-car {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  min-height: 520px;
  margin: 0;
  align-self: center;
  justify-self: end;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-car img {
  width: calc(min(66vw, 860px) - 30px);
  max-width: none;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .5));
  transform: translateX(calc(7vw - 60px)) translateY(-14px);
}

.hero-car::before {
  content: "";
  position: absolute;
  right: -8vw;
  top: 16%;
  width: 70vw;
  height: 70%;
  background: radial-gradient(circle at 58% 50%, rgba(0, 132, 255, .32), transparent 58%);
  z-index: -1;
}

.hero-glow {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7bd8ff;
  box-shadow: 0 0 22px 8px rgba(0, 170, 255, .75);
  animation: floatGlow 5s infinite alternate ease-in-out;
  z-index: 2;
}

.hero-glow.one {
  top: 150px;
  left: 55%
}

.hero-glow.two {
  top: 280px;
  left: 74%;
  animation-delay: 1.2s
}

.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.line {
  position: absolute;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(120, 220, 255, .9), rgba(0, 140, 255, .6), transparent);
  opacity: 0;
  animation: shootLine linear infinite;
  box-shadow: 0 0 12px rgba(0, 180, 255, .6);
  border-radius: 50%;
}

.line1 {
  top: 25%;
  left: -300px;
  animation-duration: 7s;
  animation-delay: 1s;
}

.line2 {
  top: 65%;
  left: -300px;
  animation-duration: 9s;
  animation-delay: 4s;
}

.line3 {
  top: 45%;
  left: -300px;
  animation-duration: 6s;
  animation-delay: 0s;
}

@keyframes shootLine {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(150vw);
    opacity: 0;
  }
}

/* =========================================================
   SECTIONS GLOBAL BASE
   ========================================================= */

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
  padding: 46px;
  border-radius: 28px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  align-items: center;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 600;
}

.section p {
  color: #d6e5f7;
  line-height: 1.9;
  font-size: 17.5px;
  font-weight: 400;
}

.center {
  text-align: center
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 20px;
}

.mini-card {
  min-height: 170px;
  display: grid;
  place-items: end center;
  text-align: center;
  padding: 24px;
  border-radius: 18px;
  font-weight: 400;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  border: 1px solid rgba(120, 200, 255, .25);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 0 26px rgba(0, 132, 255, .12);
  transition: .3s ease;
}



/* =========================================================
   SECTION: SERVICIOS
   Clean rebuild final. Bento premium proporcional.
   ========================================================= */

#servicios.section {
  padding: 0;
}

#servicios h2 {
  margin: 0 0 48px;
  color: #f4f8ff;
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.8px;
  text-align: center;
}

#servicios h2 span {
  color: #1e90ff;
  font-size: inherit;
  font-weight: inherit;
  text-shadow: 0 0 28px rgba(30, 144, 255, .65);
}

#servicios .center {
  text-align: center;
}

#servicios .services-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 290px 40px 290px;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-areas:
    "card1 card2"
    "card3 card2"
    "card3 card4";
}

#servicios .service-card-1 {
  grid-area: card1;
}

#servicios .service-card-2 {
  grid-area: card2;
}

#servicios .service-card-3 {
  grid-area: card3;
}

#servicios .service-card-4 {
  grid-area: card4;
}

#servicios .service-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(12, 35, 62, .72), rgba(5, 18, 34, .94));
  border: 1px solid rgba(143, 216, 255, .24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 24px 68px rgba(0, 0, 0, .30);
  isolation: isolate;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

#servicios .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(2, 8, 23, 0.95) 0%, rgba(2, 8, 23, 0.4) 50%, transparent 100%);
}

#servicios .service-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), transparent 30%);
}

#servicios .service-card img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: saturate(.98) contrast(1.05) brightness(.88);
  transition: transform .42s ease, filter .42s ease;
}

#servicios .service-card div {
  position: relative;
  z-index: 4;
  height: 100%;
  max-width: 380px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#servicios .service-card-2 div,
#servicios .service-card-3 div {
  max-width: 410px;
  padding: 32px;
}

#servicios .service-number {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 11px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #8fd8ff;
  font-size: 17.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.6px;
  background: rgba(143, 216, 255, .10);
  border: 1px solid rgba(143, 216, 255, .22);
  box-shadow: 0 0 18px rgba(143, 216, 255, .18);
}

#servicios .service-card h3 {
  margin: 0 0 10px;
  color: #f4f8ff;
  font-size: 25px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.3px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .45);
}

#servicios .service-card-2 h3,
#servicios .service-card-3 h3 {
  font-size: 29px;
}

#servicios .service-card p {
  margin: 0;
  color: rgba(244, 248, 255, .84);
  font-size: 17.5px;
  line-height: 1.55;
  font-weight: 400;
  text-shadow: 0 10px 26px rgba(0, 0, 0, .42);
}

#servicios .service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(143, 216, 255, .44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .10),
    0 30px 82px rgba(0, 0, 0, .36),
    0 0 38px rgba(30, 144, 255, .15);
}

#servicios .service-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.08) brightness(.96);
}

/* TABLET */
@media(max-width:1100px) {
  #servicios.section {
    padding: 0;
  }

  #servicios h2 {
    font-size: 42px;
    margin-bottom: 40px;
  }

  #servicios .services-bento {
    max-width: 820px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 260px 260px;
    grid-template-areas:
      "card1 card2"
      "card3 card4";
  }

  #servicios .service-card div,
  #servicios .service-card-2 div,
  #servicios .service-card-3 div {
    max-width: 360px;
    padding: 28px 26px 30px;
  }

  #servicios .service-card h3,
  #servicios .service-card-2 h3,
  #servicios .service-card-3 h3 {
    font-size: 25px;
  }

  #servicios .service-card p {
    font-size: 18px;
  }
}

/* MOBILE */
@media(max-width:700px) {
  #servicios.section {
    padding: 0;
  }

  #servicios h2 {
    font-size: 34px;
    margin-bottom: 32px;
  }

  #servicios .services-bento {
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas:
      "card1"
      "card2"
      "card3"
      "card4";
    gap: 18px;
  }

  #servicios .service-card {
    min-height: 360px;
    border-radius: 24px;
  }

  #servicios .service-card::before {
    background:
      linear-gradient(180deg, rgba(2, 8, 23, .12) 0%, rgba(2, 8, 23, .48) 46%, rgba(2, 8, 23, .94) 100%),
      radial-gradient(circle at 20% 20%, rgba(143, 216, 255, .14), transparent 38%);
  }

  #servicios .service-card div,
  #servicios .service-card-2 div,
  #servicios .service-card-3 div {
    max-width: 100%;
    padding: 26px 22px 28px;
  }

  #servicios .service-card h3,
  #servicios .service-card-2 h3,
  #servicios .service-card-3 h3 {
    font-size: 24px;
  }

  #servicios .service-card p {
    font-size: 18px;
    line-height: 1.58;
  }
}

/* =========================================================
   SECTION: VENTAJAS
   Carrusel infinito premium. Sin iconos, sin blur, sin JS.
   ========================================================= */

#ventajas.section {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 100px 0;
  overflow: hidden;
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(30, 144, 255, .14), transparent 42%),
    radial-gradient(circle at 12% 72%, rgba(86, 199, 255, .08), transparent 34%),
    linear-gradient(180deg, rgba(4, 17, 32, .98), rgba(3, 12, 24, .99));
  border-top: 1px solid rgba(143, 216, 255, .18);
  border-bottom: 1px solid rgba(143, 216, 255, .18);
}

#ventajas .ventajas-inner {
  width: 100%;
  margin: 0 auto;
}

#ventajas h2 {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 74px;
  color: #f4f8ff;
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.8px;
  text-align: center;
}

#ventajas h2 span {
  color: #1e90ff;
  font-size: inherit;
  font-weight: inherit;
  text-shadow: 0 0 28px rgba(30, 144, 255, .65);
}

#ventajas .ventajas-wrapper {
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 0;
}

#ventajas .ventajas-grid {
  display: flex;
  gap: 24px;
  width: max-content;
}

#ventajas .ventaja-item {
  position: relative;
  flex: 0 0 330px;
  min-height: 200px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025)),
    rgba(8, 24, 52, .58);
  border: 1px solid rgba(143, 216, 255, .24);
  box-shadow: none;
  opacity: 1;
  filter: none;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

#ventajas .ventaja-item::before {
  display: none;
}

#ventajas .ventaja-item::after {
  display: none !important;
}

#ventajas .ventaja-icon {
  margin-bottom: 20px;
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #8fd8ff;
  filter: drop-shadow(0 0 14px rgba(143, 216, 255, .55));
  transition: transform .25s ease, filter .25s ease, color .25s ease;
}

#ventajas .ventaja-icon img {
  width: 82px;
  height: 82px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(86%) sepia(19%) saturate(1427%) hue-rotate(170deg) brightness(105%) contrast(101%);
}

#ventajas .ventaja-item h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: #f4f8ff;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.3px;
  text-shadow: none;
}

#ventajas .ventaja-item p {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: none;
  color: rgba(244, 248, 255, .84);
  font-size: 17.5px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: none;
}


#ventajas .carousel-dots,
#ventajas .ventajas-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  min-height: 18px;
}

#ventajas .carousel-dot {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  max-width: 12px;
  max-height: 12px;
  padding: 0 !important;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .32);
  cursor: pointer;
  font-size: 0 !important;
  line-height: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  transform: none;
  transition:
    width .28s ease,
    flex-basis .28s ease,
    background .28s ease,
    box-shadow .28s ease,
    opacity .28s ease;
}

#ventajas .carousel-dot:hover {
  background: rgba(143, 216, 255, .72);
  box-shadow: 0 0 14px rgba(143, 216, 255, .32);
}

#ventajas .carousel-dot.active {
  flex-basis: 36px;
  width: 36px;
  min-width: 36px;
  max-width: 36px;
  background: linear-gradient(90deg, #56c7ff, #1e90ff);
  box-shadow:
    0 0 18px rgba(30, 144, 255, .55),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}

#ventajas .carousel-dot.active:hover {
  background: linear-gradient(90deg, #56c7ff, #1e90ff);
}

@media(max-width:1100px) {
  #ventajas.section {
    padding: 70px 0;
  }

  #ventajas h2 {
    width: min(860px, calc(100% - 40px));
    font-size: 42px;
    margin-bottom: 60px;
  }

  #ventajas .ventajas-grid {
    gap: 20px;
  }

  #ventajas .ventaja-item {
    flex: 0 0 310px;
    min-height: 245px;
    padding: 32px 28px;
  }

  #ventajas .ventaja-item p {
    font-size: 18px;
  }
}

@media(max-width:700px) {
  #ventajas.section {
    padding: 70px 0;
  }

  #ventajas h2 {
    width: calc(100% - 36px);
    font-size: 34px;
    margin-bottom: 48px;
  }

  #ventajas .ventajas-grid {
    gap: 18px;
  }

  #ventajas .ventaja-item {
    flex: 0 0 285px;
    min-height: 245px;
    padding: 30px 24px;
    border-radius: 24px;
  }

  #ventajas .ventaja-item h3 {
    font-size: 22px;
  }

  #ventajas .ventaja-item p {
    font-size: 18px;
    line-height: 1.58;
  }
}

/* =========================================================
   SECTION: COBERTURA
   ========================================================= */

.coverage {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: var(--card-bg);
  border: 1px solid rgba(143, 216, 255, .24);
  box-shadow: 0 0 15px rgba(143, 216, 255, .1);
}

.coverage-text {
  flex: 0 0 55%;
  padding: 64px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.coverage-icon {
  flex: 0 0 48px;
  color: #1e90ff;
  filter: drop-shadow(0 0 8px rgba(30, 144, 255, 0.6));
}

.coverage-info h2 {
  font-size: 32px;
  margin-bottom: 8px;
  text-align: left;
}

.coverage-info p {
  color: var(--text-muted);
  text-align: left;
}

.coverage-image-wrapper {
  flex: 1;
  position: relative;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -5%;
}

.coverage-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

/* =========================================================
   SECTION: CTA / CONTACTO
   ========================================================= */

.cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 70px;
  padding: 56px 40px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: var(--card-bg);
  border: 1px solid rgba(143, 216, 255, .24);
  box-shadow: 0 0 15px rgba(143, 216, 255, .1);
}

.cta h2 {
  text-align: left;
}

.cta p {
  text-align: left;
}

.cta h2 {
  margin: 0 0 8px
}

.cta p {
  margin: 0;
  color: #d6e5f7;
  font-size: 17.5px;
  font-weight: 400;
}

.cta a {
  color: white;
  text-decoration: none;
  padding: 9px 28px;
  border-radius: 12px;
  font-size: 17.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.cta a.whatsapp-btn {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow:
    0 0 30px rgba(37, 211, 102, .40),
    0 14px 32px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

.cta .whatsapp-icon {
  width: 24px;
  height: 24px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer-premium {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #020817 0%, #051024 100%);
  border-top: 1px solid rgba(143, 216, 255, 0.1);
  padding-top: 60px;
  position: relative;
  z-index: 10;
}

.footer-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-left {
  flex: 1;
  max-width: 350px;
}

.footer-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.footer-middle {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  /* Center the block horizontally */
}

.footer-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  /* Keep icons and text left-aligned within the centered block */
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e2e8f0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.footer-info-item svg {
  width: 22px;
  height: 22px;
  color: #1e90ff;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(30, 144, 255, 0.4));
}

.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.follow-text {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

.socials-premium {
  display: flex;
  gap: 16px;
}

.social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e90ff 0%, #0a66ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  box-shadow:
    0 4px 15px rgba(10, 102, 255, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.social-circle:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 8px 25px rgba(10, 102, 255, 0.6),
    0 0 20px rgba(143, 216, 255, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-circle svg {
  width: 22px;
  height: 22px;
}

.copy-premium {
  text-align: center;
  color: #8fa4bd;
  padding: 24px;
  border-top: 1px solid rgba(143, 216, 255, 0.08);
  font-size: 14px;
  background: transparent;
  /* Changed from very dark #01040a to integrate better */
}

.copy-premium a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.copy-premium a:hover {
  color: #8fd8ff;
  text-decoration: none;
}



@keyframes heroEntranceAnim {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-entrance {
  animation: heroEntranceAnim 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.car-entrance {
  opacity: 0;
  animation: heroEntranceAnim 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

@keyframes floatGlow {
  from {
    transform: translate(0, 0) scale(1)
  }

  to {
    transform: translate(45px, -35px) scale(1.6)
  }
}

@keyframes heroAura {
  0% {
    transform: translate3d(-18px, -8px, 0) scale(1.03);
    opacity: .72;
  }

  100% {
    transform: translate3d(24px, 14px, 0) scale(1.08);
    opacity: .95;
  }
}

@keyframes heroSparkAura {
  0% {
    transform: translate3d(-12px, 8px, 0) scale(1);
    opacity: .45;
  }

  100% {
    transform: translate3d(18px, -10px, 0) scale(1.04);
    opacity: .82;
  }
}

@media(max-width:900px) {
  .header {
    top: 12px;
    width: calc(100% - 24px);
    padding: 10px 14px;
  }

  .logo-img {
    width: 140px;
  }

  .menu-btn {
    display: block;
    position: relative;
    z-index: 3;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: rgba(3, 13, 30, .94);
    border: 1px solid var(--border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .nav a {
    text-align: center;
    padding: 13px 16px;
    font-size: 17.5px;
  }

  .nav.open {
    display: flex
  }

  .top-whatsapp {
    display: none
  }

  .hero {
    min-height: auto;
    padding: 130px 18px 55px;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-content {
    position: relative;
    z-index: 4;
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(38px, 5vw, 64px);
  }

  .hero p {
    font-size: 17.5px;
  }

  .hero-car {
    min-height: auto;
    margin: 22px -18px 0 -16px;
    justify-content: flex-end;
  }

  .hero-car img {
    width: calc(138vw - 30px);
    transform: translateX(calc(10vw - 60px)) translateY(-18px);
  }

  .section,
  .coverage,
  .cta {
    width: calc(100% - 24px);
  }

  .section {
    padding: 28px 20px;
    margin-bottom: 50px;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .coverage {
    flex-direction: column;
  }

  .coverage-text {
    padding: 30px 24px;
  }

  .coverage-image-wrapper {
    clip-path: none;
    margin-left: 0;
  }

  .coverage-info h2 {
    font-size: 28px;
  }

  .feature-grid,
  .services {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card img {
    height: 260px;
  }

  .advantages {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 28px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta a {
    width: 100%;
    text-align: center;
    font-size: 17.5px;
    padding: 10px 18px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding-bottom: 30px;
    text-align: center;
  }

  .footer-left {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-logo {
    max-width: 240px;
  }

  .footer-middle {
    align-items: center;
  }

  .footer-info-wrapper {
    align-items: center;
    /* Center text and icons on mobile */
  }

  .footer-right {
    align-items: center;
  }

  .copy-premium {
    padding-bottom: 90px;
  }
}

@media(min-width:901px) and (max-width:1100px) {

  .feature-grid,
  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav a {
    font-size: 17.5px;
    padding: 8px 8px;
  }

  .top-whatsapp.whatsapp-btn {
    font-size: 17.5px;
    padding: 8px 12px;
  }

  .hero-car img {
    width: calc(min(82vw, 980px) - 30px);
    transform: translateX(calc(14vw - 60px)) translateY(-32px);
  }

  .footer-logo {
    max-width: 310px;
  }
}

/* =========================================================
   HERO RESPONSIVE LIMPIO
   Tablet y móvil únicamente. No toca desktop.
   ========================================================= */

@media(max-width:1100px) {
  body :where(p, a, button, small, li, ul, ol, label, input, textarea, select) {
    font-size: 18px;
    font-weight: 400;
  }

  body :where(span):not(h1 span):not(h2 span):not(h3 span):not(h4 span) {
    font-size: 18px;
    font-weight: 400;
  }

  .header {
    top: 12px;
  }

  .logo-img {
    width: 150px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 155px 18px 0;
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 5;
    max-width: 720px;
    transform: none;
    padding-top: 0;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -0.8px;
    font-weight: 600;
  }

  .hero h1 span,
  h1 span,
  h2 span,
  h3 span,
  h4 span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
  }

  .hero p {
    max-width: 680px;
    margin: 22px 0 24px;
    font-size: 18px;
    line-height: 1.6;
  }

  .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 24px 0;
  }

  .badges span {
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-actions .btn {
    min-width: 180px;
    padding: 10px 18px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 12px;
  }

  .hero-car {
    display: flex !important;
    position: relative;
    z-index: 3;
    width: 100%;
    justify-content: flex-end;
    margin-top: 20px;
  }

  .hero-car img {
    width: min(112vw, 980px);
    max-width: none;
    object-position: right center;
    transform: translateX(20vw) translateY(-90px);
  }

  .hero-car::before {
    right: -12vw;
    top: 4%;
    width: 90vw;
    height: 90%;
  }
}

@media(max-width:900px) {
  .header {
    width: calc(100% - 16px);
    min-height: 54px;
  }

  .logo-img {
    width: 132px;
  }

  .hero {
    padding: 145px 18px 0;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -0.7px;
  }

  .hero p {
    margin: 20px 0 22px;
  }

  .badges {
    gap: 10px 14px;
    margin: 22px 0;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    min-width: auto;
    padding: 10px 16px;
  }

  .hero-car {
    margin-top: 24px;
  }

  .hero-car img {
    width: calc(128vw - 30px);
    transform: translateX(calc(20vw - 60px)) translateY(-40px);
  }
}

/* =========================================================
   SECTION: PDR
   Full width real. Estilos aislados por #pdr.
   ========================================================= */

#pdr.section.glass.section-grid {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 80px;
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 78px;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(30, 144, 255, .16), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(143, 216, 255, .08), transparent 38%),
    linear-gradient(180deg, rgba(12, 35, 62, .78), rgba(7, 23, 42, .94));
}

#pdr>div:first-child {
  max-width: 560px;
}

#pdr h2 {
  margin: 0 0 28px;
  color: #f4f8ff;
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.8px;
}

#pdr h2 span {
  color: #1e90ff;
  font-size: inherit;
  font-weight: inherit;
}

#pdr p {
  margin: 0;
  color: rgba(244, 248, 255, .82);
  font-size: 17.5px;
  font-weight: 400;
  line-height: 1.75;
}

#pdr .feature-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 24px;
}

#pdr .mini-card {
  width: 100%;
  min-width: 0;
  min-height: 220px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(143, 216, 255, .08), transparent 42%),
    rgba(12, 35, 62, .58);
  border: 1px solid rgba(143, 216, 255, .22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 18px 40px rgba(0, 0, 0, .18);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, filter .25s ease;
}

#pdr .feature-icon {
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #8fd8ff;
  filter: drop-shadow(0 0 14px rgba(143, 216, 255, .55));
  transition: transform .25s ease, filter .25s ease, color .25s ease;
}

#pdr .feature-icon img {
  width: 82px;
  height: 82px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(86%) sepia(19%) saturate(1427%) hue-rotate(170deg) brightness(105%) contrast(101%);
}

#pdr .mini-card-title {
  display: block;
  max-width: 190px;
  color: #f4f8ff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

#pdr .mini-card:hover {
  border-color: rgba(143, 216, 255, .38);
  background:
    radial-gradient(circle at 50% 18%, rgba(143, 216, 255, .13), transparent 44%),
    rgba(13, 41, 72, .68);
  transform: translateY(-3px);
}

#pdr .mini-card:hover .feature-icon {
  color: #a9ecff;
  filter:
    drop-shadow(0 0 12px rgba(169, 236, 255, .55)) drop-shadow(0 0 24px rgba(30, 144, 255, .22));
}

/* SECTION: PDR RESPONSIVE TABLET */
@media(max-width:1100px) {
  #pdr.section.glass.section-grid {
    padding: 90px 24px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  #pdr>div:first-child {
    max-width: 780px;
  }

  #pdr h2 {
    font-size: 42px;
    margin-bottom: 24px;
  }

  #pdr p {
    font-size: 18px;
    max-width: 760px;
  }

  #pdr .feature-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 22px;
  }

  #pdr .mini-card {
    min-height: 210px;
    padding: 26px 22px;
  }

  #pdr .feature-icon {
    width: 92px;
    height: 92px;
  }

  #pdr .feature-icon img {
    width: 78px;
    height: 78px;
  }
}

/* SECTION: PDR RESPONSIVE MOBILE */
@media(max-width:700px) {
  #pdr.section.glass.section-grid {
    padding: 78px 18px;
    gap: 42px;
  }

  #pdr h2 {
    font-size: 34px;
    margin-bottom: 22px;
  }

  #pdr p {
    font-size: 18px;
    line-height: 1.68;
  }

  #pdr .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #pdr .mini-card {
    min-height: 190px;
    padding: 24px 18px;
    gap: 12px;
  }

  #pdr .feature-icon {
    width: 88px;
    height: 88px;
  }

  #pdr .feature-icon img {
    width: 74px;
    height: 74px;
  }
}

#servicios h2 span {
  color: #1e90ff;
  font-size: inherit;
  font-weight: inherit;
}

/* =========================================================
   BACK TO TOP BUTTON
   ========================================================= */

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(30, 144, 255, .15);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(30, 144, 255, .25);
  border-color: rgba(143, 216, 255, .6);
  box-shadow: 0 0 24px rgba(143, 216, 255, .4);
  transform: translateY(-3px);
  color: #fff;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media(max-width: 700px) {
  .back-to-top {
    bottom: 90px;
    right: 20px;
  }
}

/* =========================================================
   STICKY MOBILE BUTTONS
   ========================================================= */

.mobile-sticky-buttons {
  display: none;
}

@media(max-width: 700px) {
  .mobile-sticky-buttons {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(3, 13, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(143, 216, 255, 0.15);
    padding: 8px 12px;
    gap: 10px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
  }

  .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, filter 0.2s ease;
  }

  .sticky-btn:active {
    transform: scale(0.96);
  }

  .call-btn {
    background: linear-gradient(135deg, #1e90ff, #0a66ff);
    box-shadow: 0 8px 24px rgba(30, 144, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .wa-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .copy {
    padding-bottom: 90px;
  }
}