@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  /* New Colors from Logo */
  --c-primary: #2DD4FF;
  /* Cyan brillante */
  --c-primary-dark: #00B1E6;
  /* Cyan oscuro para hover */
  --c-primary-glow: rgba(45, 212, 255, 0.3);

  --c-secondary: #0A192F;
  /* Azul Marino muy oscuro */
  --c-secondary-l: #112A4F;
  /* Azul Marino algo más claro */

  --c-bg: #FFFFFF;
  --c-bg-off: #F4F8FB;
  /* Gris azulado muy claro para secciones alternas */

  --c-text: #1E293B;
  /* Slate oscuro para texto general */
  --c-text-light: #475569;
  /* Slate medio para subtítulos y descripciones */

  --c-white: #FFFFFF;
  --c-border: #E2E8F0;

  --font-h: 'Outfit', sans-serif;
  --font-b: 'Inter', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 16px;
  /* Bordes más redondeados y amigables */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-b);
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── INTRO OVERLAY (Celeste / Blanco) ──────────── */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  overflow: hidden;
}

.intro-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.intro-word {
  position: absolute;
  top: 15%;
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  width: max-content;
  max-width: 25vw;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 10;
}

.intro-word.offset-word {
  top: 25%;
}

/* Intro logo finale panel ─ shown at end by GSAP */
.intro-logo-finale {
  position: absolute;
  inset: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #FFFFFF 0%, #F0FAFF 100%);
  opacity: 0;
  pointer-events: none;
  gap: 1.2rem;
}

.intro-logo-img {
  width: clamp(160px, 28vw, 300px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(45, 212, 255, 0.5));
}

.intro-logo-brand {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--c-secondary);
  letter-spacing: 0.08em;
}

.intro-logo-sub {
  font-family: var(--font-h);
  font-size: clamp(0.75rem, 1.4vw, 1rem);
  font-weight: 600;
  color: var(--c-text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-skip {

  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  color: var(--c-text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-h);
  cursor: pointer;
  z-index: 20;
  animation: blink-soft 2s ease infinite;
}

@keyframes blink-soft {

  0%,
  100% {
    opacity: 0.5
  }

  50% {
    opacity: 1
  }
}

/* ── NAVBAR ────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s, border-bottom 0.35s;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 70px;
}

.nav-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-secondary);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--c-primary-dark);
}

.nav-cta {
  background: var(--c-primary) !important;
  color: var(--c-secondary) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 100px;
  font-weight: 800 !important;
  transition: all 0.2s !important;
  border: 2px solid transparent;
}

.nav-cta:hover {
  background: var(--c-primary-dark) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--c-primary-glow);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-secondary);
  transition: 0.3s;
}

/* Mobile menu */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 998;
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

#mobile-menu.open {
  display: flex;
}

#mobile-menu .nav-links {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

#mobile-menu .nav-links a {
  font-size: 1.5rem;
  color: var(--c-secondary);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--c-secondary);
  font-size: 2rem;
  cursor: pointer;
}

/* ── HERO (Clean Side-by-Side) ─────────────────── */
#hero {
  min-height: 100vh;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% -20%, rgba(45, 212, 255, 0.1) 0%, transparent 60%),
    radial-gradient(circle at -20% 50%, rgba(10, 25, 47, 0.03) 0%, transparent 50%);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  min-height: 85vh;
}

.hero-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 212, 255, 0.15);
  border: 1px solid rgba(45, 212, 255, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--c-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  width: fit-content;
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary-dark);
  animation: blink-soft 1.5s ease infinite;
}

h1.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-secondary);
  margin-bottom: 1.5rem;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}

h1.hero-title .accent {
  color: var(--c-primary-dark);
  display: block;
}

h1.hero-title .sub-accent {
  color: var(--c-primary);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--c-text-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-border);
  opacity: 0;
}

.hero-stat-number {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--c-primary-dark);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--c-text-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

/* Hero Logo Panel (right side) */
.hero-logo-panel {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(135deg, #0A192F 0%, #112A4F 100%);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(10, 25, 47, 0.18),
    0 0 0 1px rgba(45, 212, 255, 0.15);
  padding: 3rem 2.5rem 2.5rem;
}

.hero-logo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%, rgba(45, 212, 255, 0.18) 0%, transparent 68%);
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero-logo-big {
  width: 280px;
  max-width: 80%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 30px rgba(45, 212, 255, 0.35));
  animation: float-y 4s ease-in-out infinite;
}

.hero-logo-tagline {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(45, 212, 255, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1.8rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Floating elements over right hero illustration */
.hero-scene-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-scene-wrap svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(10, 25, 47, 0.08));
}

.float-card {
  position: absolute;
  background: #FFF;
  border: 1px solid var(--c-border);
  box-shadow: 0 6px 14px rgba(10, 25, 47, 0.06);
  border-radius: 8px;
  padding: 0.25rem 0.55rem;
  font-family: var(--font-h);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--c-secondary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  animation: float-y 3s ease-in-out infinite;
  z-index: 5;
}

.float-card .fi {
  font-size: 0.85rem;
}

.float-card .fi-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

/* ── BUTTONS ───────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-primary);
  color: var(--c-secondary);
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--c-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--c-primary-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--c-secondary);
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  border: 2px solid var(--c-secondary);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.btn-outline:hover {
  background: var(--c-secondary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-wa {
  background: #22C55E !important;
  border-color: #22C55E !important;
  color: #fff !important;
}

.btn-wa:hover {
  background: #16a34a !important;
  border-color: #16a34a !important;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}


/* ── SECTION SHARED ────────────────────────────── */
.eyebrow {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--c-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--c-primary-dark);
  border-radius: 2px;
}

h2.sec-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--c-secondary);
}

.sec-body {
  font-size: 1.05rem;
  color: var(--c-text-light);
  line-height: 1.8;
  max-width: 500px;
}

/* ── COBERTURA ─────────────────────────────────── */
#cobertura {
  padding: 8rem 0;
  background: var(--c-bg-off);
  position: relative;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.cobertura-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cobertura-info {
  flex: 1.1;
}

.cobertura-map-wrap {
  flex: 0.9;
  position: relative;
  max-width: 480px;
}

.cobertura-info .sec-body {
  margin: 1.25rem 0 2.5rem;
}

.districts-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.dtag {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: #FFF;
  border: 1px solid var(--c-border);
  color: var(--c-text-light);
  transition: all 0.35s;
  cursor: default;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.dtag.lit {
  background: var(--c-primary);
  color: var(--c-secondary);
  border-color: var(--c-primary-dark);
  box-shadow: 0 4px 12px var(--c-primary-glow);
}

/* SVG map styling */
.lima-map .d {
  fill: #E2E8F0;
  /* Soft gray-blue base */
  stroke: #FFFFFF;
  stroke-width: 1.5;
  transition: fill 0.5s, stroke 0.5s;
  cursor: pointer;
}

.lima-map .d:hover,
.lima-map .d.hl {
  fill: rgba(45, 212, 255, 0.6);
  stroke: var(--c-secondary);
  stroke-width: 1.5;
}

.lima-map .d.hl-bright {
  fill: var(--c-primary);
  stroke: var(--c-secondary);
}

/* ── PROCESO ───────────────────────────────────── */
#proceso {
  padding: 8rem 0;
  background: var(--c-bg);
  overflow: hidden;
}

.proceso-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.proceso-header {
  margin-bottom: 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proceso-header .eyebrow {
  justify-content: center;
}

.proceso-header .eyebrow::before {
  display: none;
}

.timeline-wrap {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  position: relative;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--c-border);
  z-index: 0;
}

.timeline-progress {
  position: absolute;
  top: 40px;
  left: 40px;
  height: 3px;
  background: var(--c-primary);
  width: 0;
  z-index: 0;
  transition: width 1s ease;
}

.t-step {
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.t-marker {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FFF;
  border: 3px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.t-step.active .t-marker {
  background: var(--c-primary);
  border-color: var(--c-primary-dark);
  transform: scale(1.1);
  box-shadow: 0 8px 20px var(--c-primary-glow);
}

h3.t-title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-secondary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.t-desc {
  font-size: 0.95rem;
  color: var(--c-text-light);
  line-height: 1.6;
}

/* ── DIFERENCIAL STATEMENT (Grid Cards) ────────── */
#diferencial {
  background: var(--c-secondary);
  padding: 8rem 0;
  overflow: hidden;
  position: relative;
}

#diferencial::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(45, 212, 255, 0.06) 0%, transparent 60%);
}

.diferencial-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.diferencial-header {
  margin-bottom: 4rem;
  text-align: center;
}

.diferencial-header h2 {
  color: #FFF;
}

.diferencial-header .eyebrow {
  color: var(--c-primary);
  justify-content: center;
}

.diferencial-header .eyebrow::before {
  display: none;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.s-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s;
}

.s-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 212, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.s-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.s-word {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFF;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.s-word.accent {
  color: var(--c-primary);
}

/* ── QUÉ ES ────────────────────────────────────── */
#que-es {
  padding: 8rem 0;
  background: var(--c-bg-off);
  position: relative;
}

.quees-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.quees-left p {
  margin-bottom: 1.2rem;
}

.facts {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.fact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: #FFF;
  border-radius: 12px;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  opacity: 0;
  transform: translateX(-20px);
}

.fact-ic {
  font-size: 1.8rem;
  flex-shrink: 0;
  background: var(--c-bg-off);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.fact-txt {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1rem;
  color: var(--c-secondary);
  line-height: 1.4;
}

.fact-txt span {
  display: block;
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--c-text-light);
  margin-top: 0.2rem;
}

/* ── SERVICIOS ─────────────────────────────────── */
#servicios {
  padding: 8rem 0;
  background: var(--c-bg);
  overflow: hidden;
}

.servicios-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.servicios-inner .eyebrow {
  justify-content: center;
}

.servicios-inner .eyebrow::before {
  display: none;
}

.servicios-inner .sec-body {
  margin: 1rem auto 4rem;
  text-align: center;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: left;
}

.srv-card {
  background: var(--c-bg-off);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(24px);
  position: relative;
  overflow: hidden;
}

.srv-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-primary);
  background: #FFF;
  box-shadow: 0 16px 40px rgba(10, 25, 47, 0.06);
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c-primary);
  transition: height 0.3s;
  opacity: 0;
}

.srv-card:hover::before {
  opacity: 1;
}

.srv-ic {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3.srv-title {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-secondary);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.srv-desc {
  font-size: 0.95rem;
  color: var(--c-text-light);
  line-height: 1.6;
}

/* ── FAQ ───────────────────────────────────────── */
#faq {
  padding: 8rem 0;
  background: var(--c-bg-off);
  border-top: 1px solid var(--c-border);
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header .eyebrow {
  justify-content: center;
}

.faq-header .eyebrow::before {
  display: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFF;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--c-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.8rem;
  cursor: pointer;
  gap: 1rem;
}

h3.faq-qt {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-secondary);
  line-height: 1.4;
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-bg-off);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-secondary);
  font-size: 1.4rem;
  font-family: var(--font-h);
  line-height: 1;
  transition: all 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--c-primary);
  color: #FFF;
  border-color: var(--c-primary);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-ai {
  padding: 0 1.8rem 1.5rem;
  font-size: 1rem;
  color: var(--c-text-light);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 500px;
}

/* ── CTA FINAL ─────────────────────────────────── */
#cta-final {
  background: var(--c-primary);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 68%);
  pointer-events: none;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--c-secondary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 600px;
}

.cta-text p {
  font-size: 1.15rem;
  color: var(--c-secondary-l);
  margin-top: 1.2rem;
  max-width: 500px;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  background: var(--c-secondary);
  color: #FFF;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(10, 25, 47, 0.3);
}

.btn-wa-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--c-secondary);
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: 2px solid var(--c-secondary);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-wa-dark:hover {
  background: var(--c-secondary);
  color: #FFF;
  transform: translateY(-2px);
}

/* ── FOOTER ────────────────────────────────────── */
footer {
  background: var(--c-secondary);
  padding: 5rem 0 2rem;
  color: #FFF;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.foot-logo-wrap {
  margin-bottom: 1.2rem;
}

.foot-logo-wrap img {
  height: auto;
  width: 120px;
  background: white;
  padding: 6px;
  border-radius: 8px;
}

.foot-brand p {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.fc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #CBD5E1;
  transition: color 0.2s;
}

.fc-item:hover {
  color: var(--c-primary);
}

.footer-col h4 {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFF;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.95rem;
  color: #94A3B8;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--c-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: #64748B;
}

.footer-legal {
  font-size: 0.85rem;
  color: #64748B;
}

/* ── SCROLL TOP ────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--c-secondary);
  color: #FFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.2);
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#scroll-top:hover {
  background: var(--c-primary-dark);
  transform: translateY(-3px);
}

/* ── WALKING ANIMATION ─────────────────────────── */
@keyframes walk-legs {
  0% {
    transform: rotate(0deg) translateY(0);
  }

  25% {
    transform: rotate(-20deg) translateY(-4px);
  }

  50% {
    transform: rotate(0deg) translateY(0);
  }

  75% {
    transform: rotate(20deg) translateY(-4px);
  }

  100% {
    transform: rotate(0deg) translateY(0);
  }
}

@keyframes walk-arms {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(20deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-20deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

#char-leg-l {
  transform-origin: 20px 0;
  animation: walk-legs 0.5s linear infinite;
}

#char-leg-r {
  transform-origin: 30px 0;
  animation: walk-legs 0.5s linear infinite reverse;
}

#char-arm-l {
  transform-origin: 18px 0;
  animation: walk-arms 0.5s linear infinite reverse;
}

#char-arm-r {
  transform-origin: 32px 0;
  animation: walk-arms 0.5s linear infinite;
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    align-items: center;
    order: 1;
  }

  .hero-right {
    order: 2;
    margin-top: 2rem;
  }

  .hero-subtitle {
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .cobertura-inner {
    flex-direction: column;
  }

  .cobertura-info {
    text-align: center;
  }

  .cobertura-info .eyebrow {
    justify-content: center;
  }

  .cobertura-info .eyebrow::before {
    display: none;
  }

  .districts-tags {
    justify-content: center;
  }

  .cobertura-map-wrap {
    flex: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    order: 2;
  }

  .quees-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .statement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .float-card {
    transform: scale(0.85);
  }

  .float-card:nth-child(2) {
    right: 5% !important;
  }

  .float-card:nth-child(4) {
    right: 0 !important;
  }
}

@media (max-width: 768px) {
  #hero {
    padding-top: 100px;
  }

  h1.hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .timeline-wrap {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline-wrap::before {
    display: none;
  }

  .t-step {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .t-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .statement-grid {
    grid-template-columns: 1fr;
  }

  .srv-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .cta-text h2 {
    font-size: 2.2rem;
  }

  .cta-actions {
    width: 100%;
  }

  .btn-dark,
  .btn-wa-dark {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .intro-word {
    font-size: clamp(0.55rem, 2vw, 0.8rem);
    max-width: 25vw;
  }

  .intro-word:nth-of-type(1) {
    left: 18% !important;
  }

  .intro-word:nth-of-type(2) {
    left: 42% !important;
  }

  .intro-word:nth-of-type(3) {
    left: 68% !important;
  }

  .intro-word:nth-of-type(4) {
    display: none !important;
  }

  /* Hide the last one if it overlaps too much */

  .float-card {
    transform: scale(0.7);
  }
}

.footer-powered {
  font-family: var(--font-b);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.03em;
}

.footer-powered a {
  color: rgba(45, 212, 255, 0.7);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-powered a:hover {
  color: var(--c-primary);
}


/* ── HERO SLIDESHOW ────────────────────────────── */
.hero-slideshow {
  display: grid;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 25, 47, 0.18);
}

.hero-slide {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: block;
}

.hero-slide.active {
  opacity: 1;
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  display: inline-block;
}

.sdot.active {
  background: var(--c-primary-dark);
  transform: scale(1.4);
}

/* ── WHATSAPP FLOATING BOT ─────────────────────── */
#wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: 0.75rem 1.2rem 0.75rem 0.9rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  animation: wa-entrance 0.6s 1.5s var(--ease) both;
}

#wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

#wa-float:hover {
  transform: translateY(-4px) scale(1.04);
  background: #1ebe5d;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

#wa-float svg {
  flex-shrink: 0;
}

.wa-float-label {
  white-space: nowrap;
}

@keyframes wa-entrance {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wa-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 0; transform: scale(1.18); }
}

@media (max-width: 480px) {
  #wa-float {
    bottom: 1.2rem;
    right: 1.2rem;
    padding: 0.7rem 1rem 0.7rem 0.8rem;
    font-size: 0.8rem;
  }
}