/* ============================================
   GoObra Design Tokens
   ============================================ */
:root {
  --go-primary: #0C447C;
  --go-primary-light: #EFF6FF;
  --go-primary-dark: #2563EB;
  --go-green: #16A34A;
  --go-red: #C00706;
  --go-amber: #F59E0B;
  --go-purple: #7C3AED;
  --go-gray: #374151;
  --go-gray-muted: #9CA3AF;
  --go-bg: #F1F5F9;
  --go-card: #FFFFFF;
  --go-border: #E5E7EB;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-pill: 99px;
  --container: 1100px;
  --container-narrow: 760px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--go-gray);
  background: var(--go-card);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

.eyebrow {
  font-size: 12px; font-weight: 700;
  color: var(--go-primary-dark);
  text-transform: uppercase; letter-spacing: 2px;
}

section { padding: 80px 24px; }
.container { max-width: var(--container); margin: 0 auto; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px; letter-spacing: -0.1px;
  font-family: inherit;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--go-primary); color: #fff;
  box-shadow: 0 4px 16px rgba(12,68,124,0.22);
}
.btn-primary:hover {
  background: var(--go-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(12,68,124,0.32);
}
.btn-secondary {
  background: var(--go-card); color: var(--go-primary);
  border: 1.5px solid var(--go-border);
}
.btn-secondary:hover {
  background: var(--go-primary-light);
  border-color: var(--go-primary);
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 38px; font-size: 16px; }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--go-border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.header-inner {
  height: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo {
  font-size: 24px; font-weight: 800;
  letter-spacing: -0.8px; color: var(--go-primary); line-height: 1;
}
.logo .accent { color: var(--go-primary-dark); }
.nav-desktop { display: none; align-items: center; gap: 32px; }
.nav-desktop a {
  font-size: 15px; font-weight: 500; color: var(--go-gray);
  position: relative; padding: 6px 0; transition: color 0.18s;
}
.nav-desktop a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--go-primary-dark);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.22s;
}
.nav-desktop a:hover { color: var(--go-primary); }
.nav-desktop a:hover::after { transform: scaleX(1); }
.header-cta-desktop { display: none; }
.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius);
  color: var(--go-primary); background: var(--go-primary-light);
  transition: background 0.18s;
}
.menu-toggle:hover { background: #DCE9F8; }
.menu-toggle svg { width: 22px; height: 22px; stroke: currentColor; }

.drawer {
  position: fixed; top: 0; right: -100%;
  width: min(360px, 100vw); height: 100vh;
  background: var(--go-card); z-index: 200;
  padding: 80px 24px 28px;
  box-shadow: -8px 0 32px rgba(12,68,124,0.18);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.drawer.open { right: 0; }
.drawer-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--go-primary); background: var(--go-primary-light);
}
.drawer-close:hover { background: #DCE9F8; }
.drawer-close svg { width: 20px; height: 20px; stroke: currentColor; }
.drawer a.nav-link {
  font-size: 17px; font-weight: 600;
  color: var(--go-primary); padding: 14px 16px;
  border-radius: var(--radius); transition: background 0.18s;
  display: flex; align-items: center; justify-content: space-between;
  letter-spacing: -0.2px;
}
.drawer a.nav-link:hover { background: var(--go-primary-light); }
.drawer a.nav-link svg { width: 18px; height: 18px; stroke: var(--go-primary-dark); opacity: 0.5; }
.drawer .drawer-cta { margin-top: 24px; justify-content: center; }

.overlay {
  position: fixed; inset: 0;
  background: rgba(12, 68, 124, 0.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 150; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.show { opacity: 1; pointer-events: auto; }
.header-spacer { height: var(--header-h); }

@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .nav-desktop { display: flex; }
  .header-cta-desktop { display: inline-flex; }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 24px 40px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37,99,235,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(124,58,237,0.04) 0%, transparent 70%),
    linear-gradient(180deg, var(--go-primary-light) 0%, var(--go-card) 60%, var(--go-card) 100%);
  text-align: center;
}
.hero::before {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  background: var(--go-primary-dark);
  border-radius: 50%;
  top: -280px; left: 50%; transform: translateX(-50%);
  opacity: 0.05; filter: blur(80px); z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}

.hero-eyebrow { margin-bottom: 28px; display: inline-block; }

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.hero-slide {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.6s;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
  pointer-events: auto;
}

.slide-text { position: relative; z-index: 10; max-width: 720px; padding: 0 16px; }
.slide-text h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 4.6vw, 46px);
  font-weight: 800;
  letter-spacing: -1.3px;
  line-height: 1.08;
  color: var(--go-primary);
  margin-bottom: 18px;
  text-wrap: balance;
}
.slide-text p {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--go-gray);
  line-height: 1.55;
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto;
  text-wrap: balance;
}

.hero-dots {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 42px;
}
.hero-dot {
  width: 32px; height: 4px; border-radius: 2px;
  background: var(--go-border);
  transition: background 0.3s, width 0.3s;
  cursor: pointer; padding: 0;
}
.hero-dot.active { background: var(--go-primary-dark); width: 48px; }
.hero-dot:hover:not(.active) { background: var(--go-primary); opacity: 0.5; }

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--go-primary);
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: background 0.18s, color 0.18s;
}
.hero-link:hover {
  background: var(--go-primary-light);
  color: var(--go-primary-dark);
}
.hero-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.hero-link:hover svg { transform: translateY(2px); }

.founding-block { max-width: 600px; margin: 0 auto; text-align: center; }
.founding-divider { width: 60px; height: 1px; background: var(--go-border); margin: 0 auto 24px; }
.founding-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--go-primary);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.founding-title .pulse-dot {
  width: 8px; height: 8px;
  background: var(--go-green);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.founding-title .pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--go-green);
  border-radius: 50%;
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.8); opacity: 0; }
}

.founding-stats {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 26px;
  font-family: "Inter", sans-serif;
}
.founding-counter {
  font-size: clamp(36px, 5.5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1;
  color: var(--go-primary);
}
.founding-counter .total { color: var(--go-gray-muted); font-weight: 600; }
.founding-counter .slash { color: var(--go-border); font-weight: 400; margin: 0 4px; }
.founding-separator { width: 1px; height: 28px; background: var(--go-border); }
.founding-countdown {
  font-size: 14px;
  font-weight: 600;
  color: var(--go-gray);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}
.founding-countdown .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--go-gray-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.founding-countdown .value {
  color: var(--go-primary);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.2px;
}

.progress-slots {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-bottom: 16px;
  padding: 0 8px;
}
.slot {
  flex: 1;
  height: 24px;
  background: var(--go-bg);
  border: 1px solid var(--go-border);
  border-radius: 3px;
  position: relative;
  transition: background 0.5s ease, border-color 0.5s ease, transform 0.3s;
  max-width: 14px;
}
.slot.filled {
  background: linear-gradient(180deg, var(--go-primary) 0%, var(--go-primary-dark) 100%);
  border-color: var(--go-primary-dark);
}
.slot.next {
  background: var(--go-card);
  border: 2px solid var(--go-primary-dark);
  height: 32px;
  transform: translateY(-4px);
  animation: next-pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  max-width: 16px;
}
@keyframes next-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
    transform: translateY(-4px) scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
    transform: translateY(-4px) scale(1.08);
  }
}
.slot.filled::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  opacity: 0;
  animation: slot-shine 4s ease-in-out infinite;
  animation-delay: var(--shine-delay, 0s);
}
@keyframes slot-shine {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.founding-cta-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--go-primary);
  letter-spacing: -0.3px;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
}
.founding-cta-text .next-number {
  font-family: "Inter", sans-serif;
  color: var(--go-primary-dark);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -1.5px;
  display: inline-block;
  animation: number-beat 1.6s ease-in-out infinite;
  line-height: 1;
}
@keyframes number-beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

.founding-cta-btn {
  width: 100%;
  max-width: 360px;
  justify-content: center;
  padding: 16px 28px;
  font-size: 16px;
  margin: 0 auto;
}

.founding-micro {
  font-size: 12px;
  color: var(--go-gray-muted);
  font-weight: 500;
  margin-top: 12px;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .progress-slots { gap: 2px; padding: 0 4px; }
  .slot { height: 22px; }
  .slot.next { height: 28px; }
  .founding-stats { gap: 10px; }
  .founding-separator { height: 24px; }
  .founding-countdown { font-size: 13px; }
}
@media (min-width: 768px) { section { padding: 96px 32px; } .hero { padding: 28px 32px 48px; } }
@media (min-width: 1024px) { section { padding: 112px 32px; } .hero { padding: 32px 32px 56px; } }

/* Íconos Lucide en items del drawer */
.drawer a.nav-link {
  justify-content: flex-start;
  gap: 14px;
}
.drawer a.nav-link .nav-icon {
  width: 20px;
  height: 20px;
  stroke: var(--go-primary-dark);
  flex-shrink: 0;
}
.drawer a.nav-link .nav-label {
  flex: 1;
}
.drawer a.nav-link .nav-arrow {
  margin-left: auto;
  width: 16px;
  height: 16px;
  stroke: var(--go-gray-muted);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ============================================
   DRAWER REDISEÑADO
   ============================================ */
.drawer {
  padding: 28px 24px 24px;
}

.drawer-header {
  margin-top: 32px;
  margin-bottom: 22px;
}
.drawer-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--go-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.drawer-logo .accent { color: var(--go-primary-dark); }
.drawer-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--go-gray-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.drawer-divider {
  height: 1px;
  background: var(--go-border);
  margin-bottom: 16px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}

.drawer .drawer-cta {
  margin-top: 0;
  width: 100%;
  justify-content: center;
}

.drawer-founding {
  margin-top: 28px;
  padding: 18px;
  background: linear-gradient(180deg, var(--go-primary-light) 0%, rgba(239, 246, 255, 0.4) 100%);
  border: 1px solid var(--go-border);
  border-radius: var(--radius-lg);
}
.drawer-founding-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--go-primary);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}
.pulse-dot-mini {
  width: 7px;
  height: 7px;
  background: var(--go-green);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--go-green);
  border-radius: 50%;
  animation: pulse-ring 1.8s ease-out infinite;
}
.drawer-founding-stats {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.drawer-counter {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--go-primary);
  line-height: 1;
}
.drawer-counter-total {
  color: var(--go-gray-muted);
  font-weight: 600;
}
.drawer-disponibles {
  font-size: 12px;
  font-weight: 600;
  color: var(--go-gray-muted);
}
.drawer-progress {
  display: flex;
  gap: 2px;
}
.drawer-progress .slot {
  height: 10px;
  max-width: none;
  border-radius: 2px;
}
.drawer-progress .slot.next {
  height: 14px;
  transform: translateY(-2px);
  max-width: none;
}
.drawer-progress .slot.next {
  animation: next-pulse-mini 1.6s ease-in-out infinite;
}
@keyframes next-pulse-mini {
  0%, 100% { transform: translateY(-2px) scale(1); }
  50% { transform: translateY(-2px) scale(1.1); }
}

/* ============================================
   HERO PICTOGRAMS — 3 fases del producto
   ============================================ */
.hero-pictograms {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-pict {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--go-primary);
  min-width: 60px;
}
.hero-pict svg {
  width: 28px;
  height: 28px;
  stroke: var(--go-primary-dark);
  opacity: 0.85;
}
.hero-pict span {
  font-size: 12px;
  font-weight: 600;
  color: var(--go-gray);
  letter-spacing: -0.1px;
}

@media (max-width: 480px) {
  .hero-pictograms { gap: 28px; margin-bottom: 32px; }
  .hero-pict svg { width: 24px; height: 24px; }
  .hero-pict span { font-size: 11px; }
}

/* ============================================
   ICONOS EN FOUNDING STATS
   ============================================ */
.founding-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.counter-icon {
  width: 24px;
  height: 24px;
  stroke: var(--go-primary);
  opacity: 0.85;
  flex-shrink: 0;
}

.value-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.countdown-icon {
  width: 14px;
  height: 14px;
  stroke: var(--go-primary);
  opacity: 0.7;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .counter-icon { width: 20px; height: 20px; }
  .countdown-icon { width: 12px; height: 12px; }
}

/* ============================================
   DESKTOP — mismo layout que mobile, con más aire
   ============================================ */
@media (min-width: 1024px) {
  .hero {
    padding: 56px 32px 88px;
  }
  .hero-inner {
    max-width: 1100px;
  }
  .hero-eyebrow {
    margin-bottom: 20px;
    font-size: 13px;
  }
  .slide-text h1 {
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 22px;
  }
  .slide-text p {
    font-size: 18px;
  }
  .hero-link {
    font-size: 15px;
    margin-top: 22px;
  }
  .hero-dots {
    margin-top: 44px;
    margin-bottom: 64px;
  }
  .founding-block {
    max-width: 720px;
  }
  .founding-divider {
    width: 80px;
    margin-bottom: 30px;
  }
  .founding-title {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .founding-stats {
    gap: 22px;
    margin-bottom: 24px;
  }
  .founding-counter {
    font-size: 56px;
    gap: 14px;
  }
  .counter-icon {
    width: 28px;
    height: 28px;
  }
  .founding-countdown .label {
    font-size: 12px;
  }
  .founding-countdown .value {
    font-size: 17px;
  }
  .countdown-icon {
    width: 16px;
    height: 16px;
  }
  .progress-slots {
    margin-top: 12px;
    margin-bottom: 32px;
    gap: 4px;
  }
  .slot { height: 28px; max-width: 16px; }
  .slot.next { height: 36px; max-width: 18px; }
  .founding-cta-text {
    font-size: 19px;
    margin-bottom: 22px;
  }
  .founding-cta-text .next-number {
    font-size: 32px;
  }
  .founding-cta-btn {
    max-width: 400px;
    padding: 18px 32px;
    font-size: 17px;
  }
  .founding-micro {
    font-size: 13px;
    margin-top: 14px;
  }
}

/* ============================================
   EXTRA SMALL — pantallas menores a 350px
   ============================================ */
@media (max-width: 350px) {
  .hero { padding: 16px 12px 32px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 1.2px; margin-bottom: 10px; }
  .slide-text { padding: 0 4px; }
  .slide-text h1 { font-size: 22px; letter-spacing: -1px; margin-bottom: 14px; }
  .slide-text p { font-size: 13px; }
  .hero-link { font-size: 12px; padding: 4px 10px; }
  .hero-dots { gap: 8px; margin-top: 24px; margin-bottom: 36px; }
  .hero-dot { width: 24px; }
  .hero-dot.active { width: 36px; }

  .founding-block { max-width: 100%; }
  .founding-divider { width: 48px; margin-bottom: 18px; }
  .founding-title { font-size: 11px; letter-spacing: 1.3px; margin-bottom: 14px; }

  .founding-stats { gap: 8px; flex-wrap: wrap; }
  .founding-counter { font-size: 32px; gap: 6px; }
  .counter-icon { width: 16px; height: 16px; }
  .founding-countdown .label { font-size: 10px; }
  .founding-countdown .value { font-size: 12px; }
  .countdown-icon { width: 10px; height: 10px; }

  .progress-slots { gap: 1px; padding: 0 2px; }
  .slot { height: 18px; }
  .slot.next { height: 24px; }

  .founding-cta-text { font-size: 14px; margin-bottom: 14px; }
  .founding-cta-text .next-number { font-size: 22px; }
  .founding-cta-btn { padding: 14px 20px; font-size: 14px; }
  .founding-micro { font-size: 11px; margin-top: 10px; }
}

/* ============================================
   T05 — CÓMO FUNCIONA · fondo azul oscuro
   ============================================ */
.como-funciona {
  background: var(--go-primary);
  padding: 64px 24px 72px;
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.como-funciona::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  background: var(--go-primary-dark);
  border-radius: 50%;
  top: -350px; left: 50%; transform: translateX(-50%);
  opacity: 0.18;
  filter: blur(80px);
  pointer-events: none;
}

.cf-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cf-header { margin-bottom: 48px; }
.cf-eyebrow {
  color: #85B7EB;
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 2px;
}
.cf-h2 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -1.3px;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.cf-h2 .highlight {
  color: #fff;
  position: relative;
  white-space: nowrap;
  font-weight: 900;
}
.cf-h2 .highlight::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -2px;
  height: 12px;
  background: rgba(133, 183, 235, 0.32);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-6deg);
}
.cf-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto;
  text-wrap: balance;
  line-height: 1.55;
}

.cf-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 0px;
}

.cf-card {
  position: relative;
  background: var(--go-card);
  border-radius: var(--radius-lg);
  padding: 26px 22px 24px;
  text-align: left;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s;
  overflow: hidden;
  box-shadow: 0 14px 36px -10px rgba(0, 0, 0, 0.28);
}
.cf-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--go-primary-dark) 0%, #85B7EB 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -12px rgba(0, 0, 0, 0.38);
}
.cf-card:hover::before { transform: scaleX(1); }

.cf-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cf-card-numero {
  font-family: "Inter", sans-serif;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1;
  background: linear-gradient(135deg, var(--go-primary) 0%, var(--go-primary-dark) 50%, #85B7EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cf-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--go-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cf-card-icon {
  width: 22px;
  height: 22px;
  stroke: var(--go-primary-dark);
  stroke-width: 2;
}

.cf-card-titulo {
  font-size: 18px;
  font-weight: 800;
  color: var(--go-primary);
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cf-card-desc {
  font-size: 14px;
  color: var(--go-gray);
  line-height: 1.55;
  font-weight: 400;
}

/* Conector entre cards 01-03 y card paso 04 */
.cf-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 14px;
}
.cf-connector-line {
  width: 1px;
  height: 90px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.45) 100%);
}
.cf-connector-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  margin-top: -1px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

/* CARD PASO 04 — fondo celeste claro */
.cf-paso4 {
  background: linear-gradient(160deg, #EFF6FF 0%, #DCE9F8 100%);
  border-radius: 22px;
  padding: 32px 26px 30px;
  text-align: left;
  position: relative;
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.45);
  color: var(--go-primary);
  max-width: 880px;
  margin: 0 auto;
}

.cf-paso4-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cf-paso4-numero {
  font-family: "Inter", sans-serif;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1;
  background: linear-gradient(135deg, var(--go-primary) 0%, var(--go-primary-dark) 50%, #85B7EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cf-paso4-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(12, 68, 124, 0.08);
}
.cf-paso4-icon {
  width: 22px;
  height: 22px;
  stroke: var(--go-primary-dark);
  stroke-width: 2;
}

.cf-paso4-frase {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--go-primary);
  letter-spacing: -0.7px;
  line-height: 1.22;
  margin-bottom: 28px;
  text-wrap: balance;
}

.cf-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.cf-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 2px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(12, 68, 124, 0.08);
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.cf-feature:hover {
  background: #fff;
  border-color: rgba(12, 68, 124, 0.22);
  transform: translateX(3px);
}
.cf-feature-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: #ffffff00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0px solid rgba(12, 68, 124, 0.08);
}
.cf-feature-icon svg {
  width: 18px; height: 18px;
  stroke: var(--go-primary-dark);
  stroke-width: 2;
}
.cf-feature-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--go-primary);
  letter-spacing: -0.2px;
  flex: 1;
}
.cf-feature-arrow {
  width: 14px; height: 14px;
  stroke: var(--go-gray-muted);
  stroke-width: 2;
  flex-shrink: 0;
  transition: stroke 0.2s, transform 0.2s;
}
.cf-feature:hover .cf-feature-arrow {
  stroke: var(--go-primary-dark);
  transform: translateX(2px);
}

/* CTA dos líneas */
.cf-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--go-primary);
  color: #fff;
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 12px 32px -10px rgba(12, 68, 124, 0.5);
}
.cf-cta:hover {
  background: var(--go-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(12, 68, 124, 0.6);
}
.cf-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.cf-cta-small {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.cf-cta-big {
  font-size: clamp(15px, 1.9vw, 19px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.2;
  text-wrap: balance;
}
.cf-cta-arrow {
  width: 22px; height: 22px;
  stroke: #fff;
  stroke-width: 2.4;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.cf-cta:hover .cf-cta-arrow { transform: translateX(4px); }

@media (min-width: 768px) {
  .cf-paso4 { padding: 40px 36px 36px; }
  .cf-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cf-feature { padding: 6px 18px; }
}

@media (min-width: 1024px) {
  .cf-paso4 { padding: 48px 44px 42px; max-width: 940px; }
  .cf-paso4-frase { margin-bottom: 36px; }
  .cf-features {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 36px;
  }
  .cf-cta { padding: 22px 28px; }
}

@media (min-width: 768px) {
  .como-funciona { padding: 88px 32px 96px; }
  .cf-cards { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .cf-card { padding: 28px 24px; }
  .cf-divider { margin-bottom: 36px; }
}

@media (min-width: 1024px) {
  .como-funciona { padding: 104px 32px 112px; }
  .cf-header { margin-bottom: 64px; }
  .cf-cards { gap: 28px; margin-bottom: 0px; }
  .cf-card { padding: 32px 28px; }
  .cf-card-numero { font-size: 60px; }
  .cf-card-icon-wrap { width: 48px; height: 48px; }
  .cf-card-icon { width: 24px; height: 24px; }
  .cf-card-titulo { font-size: 20px; }
  .cf-card-desc { font-size: 15px; }
}

@media (max-width: 350px) {
  .como-funciona { padding: 48px 16px 56px; }
  .cf-header { margin-bottom: 32px; }
  .cf-card { padding: 20px 16px 18px; }
  .cf-card-numero { font-size: 42px; }
  .cf-card-icon-wrap { width: 38px; height: 38px; }
  .cf-card-icon { width: 19px; height: 19px; }
  .cf-card-titulo { font-size: 16px; }
  .cf-card-desc { font-size: 13px; }
  .cf-chip { padding: 8px 12px; font-size: 12px; }
}

/* Responsive header card 04 — paridad con cards 01/02/03 */
@media (min-width: 1024px) {
  .cf-paso4-numero { font-size: 60px; }
  .cf-paso4-icon-wrap { width: 48px; height: 48px; }
  .cf-paso4-icon { width: 24px; height: 24px; }
}
@media (max-width: 350px) {
  .cf-paso4-numero { font-size: 42px; }
  .cf-paso4-icon-wrap { width: 38px; height: 38px; }
  .cf-paso4-icon { width: 19px; height: 19px; }
}

/* ============================================
   T06 — SIMULADOR DE CAPACIDAD
   ============================================ */
.simulador {
  background: linear-gradient(180deg, #E6F1FB 0%, #DCE9F8 100%);
  padding: 64px 18px 80px;
  position: relative;
}
.sim-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Header */
.sim-header { text-align: center; margin-bottom: 28px; }
.sim-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--go-primary-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sim-h2 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--go-primary);
  line-height: 1.18;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.sim-sub {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--go-gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
  text-wrap: balance;
}

/* Stats panel */
.sim-stats {
  background: #ffffff75;
  border-radius: 18px;
  padding: 22px 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(12, 68, 124, 0.1);
}
.sim-stat { margin-bottom: 22px; }
.sim-stat:last-child { margin-bottom: 0; }
.sim-stat-divider {
  height: 1px;
  background: var(--go-border);
  margin: 0 -18px 22px;
}

.sim-stat-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.sim-stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.sim-stat-label-hoy { color: #C00706; }
.sim-stat-label-proy { color: var(--go-gray); }

.sim-num-hoy {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -0.8px;
  color: #C00706;
}
.sim-nums-proy {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 800;
}
.sim-num-cons { color: var(--go-primary-dark); }
.sim-num-max { color: #77a2ff; }
.sim-num-sep { color: #9CA3AF; margin: 0 5px; font-weight: 400; }
.sim-num-badge {
  font-size: 9px;
  padding: 3px 7px;
  background: rgba(22, 163, 74, 0.14);
  color: var(--go-green);
  border-radius: 99px;
  margin-left: 6px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Bar simple (carga hoy) */
.sim-bar {
  height: 12px;
  background: #F1F5F9;
  border-radius: 99px;
  overflow: hidden;
}
.sim-bar-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s;
}
.sim-bar-fill-rojo { background: #C00706; }
.sim-msg { font-size: 12px; font-weight: 600; margin-top: 7px; }
.sim-msg-rojo { color: #C00706; }

/* Doble fill (carga proyectada + obras) */
.sim-bar-double {
  position: relative;
  height: 14px;
  background: #dde1e5;
  border-radius: 99px;
  overflow: hidden;
}
.sim-bar-cons {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: var(--go-primary-dark);
  border-radius: 99px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.sim-bar-max {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: #5f8ff8;
  border-radius: 99px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.sim-stats .sim-stat-carga .sim-bar-cons { z-index: 1; }
.sim-stats .sim-stat-carga .sim-bar-max { z-index: 2; }
.sim-stats .sim-stat-obras .sim-bar-max { z-index: 1; }
.sim-stats .sim-stat-obras .sim-bar-cons { z-index: 2; }

.sim-legend {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
}
.sim-legend-item { display: inline-flex; align-items: center; gap: 5px; }
.sim-legend-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.sim-legend-cons { color: var(--go-primary-dark); }
.sim-legend-cons .sim-legend-dot { background: var(--go-primary-dark); }
.sim-legend-max { color: #77a2ff; }
.sim-legend-max .sim-legend-dot { background: #77a2ff; }

/* Hint */
.sim-hint {
  text-align: center;
  font-size: 12px;
  color: var(--go-gray);
  margin-bottom: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sim-hint svg {
  width: 14px; height: 14px;
  stroke: var(--go-primary-dark);
  stroke-width: 2.5;
}

/* Pains list (B1: lista editorial con check) */
.sim-pains {
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 0 4px;
}
.sim-pain {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(12, 68, 124, 0.14);
  cursor: pointer;
  user-select: none;
}
.sim-pain:last-child { border-bottom: none; }

.sim-pain-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--go-card);
  border: 2px solid var(--go-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.sim-pain-check svg {
  width: 14px; height: 14px;
  stroke: #fff;
  stroke-width: 3;
  opacity: 0;
  transition: opacity 0.2s;
}
.sim-pain.is-active .sim-pain-check {
  background: var(--go-primary-dark);
  border-color: var(--go-primary-dark);
}
.sim-pain.is-active .sim-pain-check svg { opacity: 1; }

.sim-pain-content { flex: 1; min-width: 0; }
.sim-pain-title {
  font-size: clamp(18px, 1.8vw, 18px);
  font-weight: 800;
  color: var(--go-primary);
  letter-spacing: -0.3px;
  line-height: 1.32;
  transition: opacity 0.2s, text-decoration 0.2s;
}
.sim-pain.is-active .sim-pain-title {
  text-decoration: line-through;
  opacity: 0.55;
}
.sim-pain-solution {
  display: none;
  font-size: 14px;
  color: var(--go-primary);
  font-weight: 600;
  margin-top: 5px;
  line-height: 1.5;
}
.sim-pain.is-active .sim-pain-solution { display: block; }
.sim-pain-solution strong {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 12px;
}

@media (min-width: 768px) {
  .simulador { padding: 88px 32px 104px; }
  .sim-stats { padding: 28px 24px; }
  .sim-pains { padding: 0 8px; }
}
@media (min-width: 1024px) {
  .simulador { padding: 104px 32px 120px; }
  .sim-header { margin-bottom: 36px; }
}
@media (max-width: 350px) {
  .simulador { padding: 48px 14px 64px; }
  .sim-stats { padding: 18px 14px; }
  .sim-pains { padding: 0; }
}

/* ============================================
   T07 — FOUNDING MEMBERS
   ============================================ */
.founding-section {
  background: linear-gradient(180deg, var(--go-primary) 0%, #0A3A6B 100%);
  padding: 64px 18px 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.founding-section::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  background: var(--go-primary-dark);
  border-radius: 50%;
  top: -350px; left: 50%; transform: translateX(-50%);
  opacity: 0.15;
  filter: blur(80px);
  pointer-events: none;
}
.fs-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fs-header { text-align: center; margin-bottom: 28px; }
.fs-h2 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 1.18;
  margin-bottom: 12px;
}
.fs-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  text-wrap: balance;
}

/* Checklist beneficios */
.fs-beneficios { margin-bottom: 28px; }
.fs-beneficio {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.fs-beneficio:last-child { border-bottom: none; }
.fs-beneficio-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.fs-beneficio-check svg {
  width: 14px; height: 14px;
  stroke: var(--go-primary);
  stroke-width: 3;
}
.fs-beneficio-titulo {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.fs-beneficio-bajada {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
  line-height: 1.45;
}

/* Cupos */
.fs-cupos {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

/* CTA postularme */
.fs-cta-postular {
  display: block;
  width: 100%;
  background: var(--go-primary-light);
  color: var(--go-primary);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.3px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.fs-cta-postular:hover {
  background: #DCE9F8;
  transform: translateY(-2px);
}
.fs-cta-postular.is-open {
  border-radius: 14px 14px 0 0;
  margin-bottom: 0;
}

/* Form wizard */
.fs-form {
  display: none;
  background: var(--go-primary-light);
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  margin-bottom: 20px;
}
.fs-form.is-open { display: block; }

/* Stepper 3 barras */
.fs-stepper {
  padding: 18px 18px 10px;
}
.fs-stepper-bars {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}
.fs-stepper-bar {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: #DCE9F8;
  transition: background 0.3s;
}
.fs-stepper-bar.is-done { background: var(--go-green); }
.fs-stepper-bar.is-active { background: var(--go-primary-dark); }
.fs-stepper-step-label {
  font-size: 11px;
  color: var(--go-gray);
  font-weight: 600;
  text-align: right;
}

/* Steps content */
.fs-step {
  display: none;
  padding: 0 18px 24px;
}
.fs-step.is-active { display: block; }

.fs-form-hint {
  font-size: 10px;
  color: #9CA3AF;
  font-weight: 600;
  text-align: center;
  font-style: italic;
  margin-bottom: 20px;
}

.fs-field-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--go-primary);
  margin-bottom: 10px;
  display: block;
}

/* Tiles (cant obras) */
.fs-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.fs-tile {
  padding: 13px 0;
  text-align: center;
  border-radius: 12px;
  border: 2px solid #DCE9F8;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  color: var(--go-primary);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
}
.fs-tile.is-selected {
  border-color: var(--go-primary-dark);
  background: rgba(37, 99, 235, 0.08);
  color: var(--go-primary-dark);
}

/* Pills (tipo obras) */
.fs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.fs-pill {
  padding: 10px 16px;
  border-radius: 99px;
  border: 2px solid #DCE9F8;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--go-primary);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
}
.fs-pill.is-selected {
  border-color: var(--go-primary-dark);
  background: rgba(37, 99, 235, 0.08);
  color: var(--go-primary-dark);
}

/* Textarea */
.fs-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #DCE9F8;
  border-radius: 12px;
  font-size: 14px;
  height: 72px;
  resize: none;
  box-sizing: border-box;
  background: #fff;
  color: var(--go-primary);
  font-family: inherit;
  margin-bottom: 4px;
}
.fs-textarea:focus { border-color: var(--go-primary-dark); outline: none; }

/* Inputs step 2 */
.fs-input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #DCE9F8;
  border-radius: 12px;
  font-size: 14px;
  box-sizing: border-box;
  background: #fff;
  color: var(--go-primary);
  font-family: inherit;
  margin-bottom: 16px;
}
.fs-input:focus { border-color: var(--go-primary-dark); outline: none; }

/* Step 3 options */
.fs-opcion {
  border: 2px solid #DCE9F8;
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  background: linear-gradient(160deg, #EFF6FF 0%, #b6d8ff 100%);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px -6px rgba(12, 68, 124, 0.18);
}
.fs-opcion:hover {
  border-color: var(--go-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -8px rgba(12, 68, 124, 0.3);
}
.fs-opcion-titulo {
  font-size: 16px;
  font-weight: 800;
  color: var(--go-primary);
  margin-bottom: 6px;
}
.fs-opcion-bajada {
  font-size: 12px;
  color: var(--go-gray);
  line-height: 1.45;
}
.fs-opcion-sep {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
}
.fs-opcion-sep-line { flex: 1; height: 1px; background: #DCE9F8; }
.fs-opcion-sep-o { font-size: 11px; color: #9CA3AF; font-weight: 600; }

/* Nav buttons */
.fs-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.fs-nav-atras {
  font-size: 14px;
  color: var(--go-gray);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px 16px;
  font-family: inherit;
}
.fs-nav-sig {
  background: var(--go-primary-dark);
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.fs-nav-sig:hover { background: var(--go-primary); }

/* Gracias */
.fs-gracias {
  display: none;
  text-align: center;
  padding: 40px 24px;
  background: var(--go-primary-light);
  border-radius: 0 0 18px 18px;
}
.fs-gracias.is-visible { display: block; }
.fs-gracias-msg {
  font-size: 18px;
  font-weight: 800;
  color: var(--go-primary);
  line-height: 1.35;
}

@media (min-width: 768px) {
  .founding-section { padding: 88px 32px 104px; }
}
@media (min-width: 1024px) {
  .founding-section { padding: 104px 32px 120px; }
  .fs-h2 { font-size: 42px; }
}
@media (max-width: 350px) {
  .founding-section { padding: 48px 14px 64px; }
  .fs-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   T08 — PLANES Y PRICING
   ============================================ */
.planes-section {
  background: var(--go-card);
  padding: 64px 18px 80px;
}
.pl-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pl-header { text-align: center; margin-bottom: 36px; }
.pl-h2 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--go-primary);
  letter-spacing: -1.2px;
  line-height: 1.18;
  margin-bottom: 12px;
}
.pl-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--go-gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
  text-wrap: balance;
}

.pl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

/* Card base */
.pl-card {
  background: var(--go-card);
  border: 1px solid var(--go-border);
  border-radius: 20px;
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pl-card.is-destacado {
  border: 2px solid var(--go-primary-dark);
  box-shadow: 0 16px 44px -12px rgba(37, 99, 235, 0.25);
}

.pl-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--go-primary-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 99px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pl-nombre {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.pl-card.is-destacado .pl-nombre { color: var(--go-primary-dark); }
.pl-card:not(.is-destacado) .pl-nombre { color: var(--go-gray); }

.pl-precio {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.pl-precio-num {
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 900;
  color: var(--go-primary);
  letter-spacing: -1.5px;
}
.pl-precio-mes {
  font-size: 14px;
  color: var(--go-gray);
  font-weight: 600;
}

.pl-precio-old {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pl-precio-tachado {
  font-size: clamp(18px, 2vw, 22px);
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.pl-off-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--go-green);
  background: rgba(22, 163, 74, 0.1);
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.3px;
}

/* Features list */
.pl-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pl-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pl-feature-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pl-feature-icon-blue { stroke: var(--go-primary-dark); }
.pl-feature-icon-green { stroke: var(--go-green); }
.pl-feature-text {
  font-size: 13px;
  color: var(--go-primary);
  font-weight: 600;
  line-height: 1.4;
}
.pl-feature-text.is-diff { font-weight: 700; }

/* CTA */
.pl-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: inherit;
  letter-spacing: -0.2px;
}
.pl-cta-destacado {
  background: var(--go-primary-dark);
  color: #fff;
}
.pl-cta-destacado:hover {
  background: var(--go-primary);
  transform: translateY(-2px);
}
.pl-cta-normal {
  background: var(--go-primary-light);
  color: var(--go-primary);
}
.pl-cta-normal:hover {
  background: #DCE9F8;
  transform: translateY(-2px);
}

.pl-pie {
  text-align: center;
  font-size: 12px;
  color: #9CA3AF;
}

@media (min-width: 768px) {
  .planes-section { padding: 88px 32px 104px; }
  .pl-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }
}
@media (min-width: 1024px) {
  .planes-section { padding: 104px 32px 120px; }
  .pl-grid { gap: 24px; }
  .pl-card { padding: 34px 28px; }
}
@media (max-width: 350px) {
  .planes-section { padding: 48px 14px 64px; }
  .pl-card { padding: 24px 18px; }
}

/* ============================================
   T09 — FAQ
   ============================================ */
.faq-section {
  background: linear-gradient(180deg, #E6F1FB 0%, #DCE9F8 100%);
  padding: 64px 18px 80px;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-header { text-align: center; margin-bottom: 32px; }
.faq-h2 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--go-primary);
  letter-spacing: -1.2px;
  line-height: 1.18;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--go-card);
  border-radius: 14px;
  border: 1px solid rgba(12, 68, 124, 0.1);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.is-open {
  border: 2px solid var(--go-primary-dark);
  box-shadow: 0 4px 16px -6px rgba(12, 68, 124, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
}
.faq-question-text {
  flex: 1;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  color: var(--go-primary);
  line-height: 1.35;
}
.faq-question-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item:not(.is-open) .faq-question-icon { stroke: #9CA3AF; }
.faq-item.is-open .faq-question-icon {
  stroke: var(--go-primary-dark);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}
.faq-item.is-open .faq-answer { display: block; }
.faq-answer-inner {
  border-top: 1px solid rgba(12, 68, 124, 0.08);
  padding-top: 14px;
}
.faq-answer-text {
  font-size: 14px;
  color: var(--go-gray);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-section { padding: 88px 32px 104px; }
}
@media (min-width: 1024px) {
  .faq-section { padding: 104px 32px 120px; }
}
@media (max-width: 350px) {
  .faq-section { padding: 48px 14px 64px; }
  .faq-question { padding: 16px 16px; }
  .faq-answer { padding: 0 16px 16px; }
}

/* ============================================
   T11 — FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, #0A3A6B 0%, #072C52 100%);
  padding: 56px 18px 32px;
  color: #fff;
}
.ft-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ft-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

/* Brand column */
.ft-brand {}
.ft-logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 6px;
}
.ft-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 16px;
}
.ft-email {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.ft-email:hover { color: #fff; }

.ft-redes {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.ft-red {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.ft-red:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
}
.ft-red svg {
  width: 18px; height: 18px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

/* Nav + Legal columns */
.ft-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.ft-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.ft-link:hover { color: #fff; }

/* Bottom */
.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}
.ft-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

@media (min-width: 768px) {
  .site-footer { padding: 72px 32px 36px; }
  .ft-top {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .site-footer { padding: 80px 32px 40px; }
}
@media (max-width: 350px) {
  .site-footer { padding: 48px 14px 28px; }
}

/* ============================================
   WHATSAPP STICKY
   ============================================ */
.wa-sticky {
  position: fixed;
  bottom: 24px;
  right: 20px;
  left: auto;
  z-index: 900;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.wa-tooltip {
  background: var(--go-card);
  color: var(--go-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  white-space: nowrap;
}
.wa-sticky:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}
.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px -4px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  pointer-events: auto;
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px -6px rgba(37, 211, 102, 0.6);
}
.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Footer WhatsApp link */
.ft-wa-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-wa-link:hover { color: #fff; }
.ft-wa-link svg {
  width: 16px; height: 16px;
  fill: rgba(255, 255, 255, 0.7);
  transition: fill 0.2s;
}
.ft-wa-link:hover svg { fill: #fff; }

@media (max-width: 350px) {
  .wa-sticky { bottom: 16px; right: 14px; }
  .wa-btn { width: 50px; height: 50px; }
  .wa-btn svg { width: 24px; height: 24px; }
}

/* Step 3 título (sacado de inline) */
.fs-step3-titulo {
  font-size: 14px;
  font-weight: 700;
  color: var(--go-primary);
  text-align: center;
  margin-bottom: 20px;
}

/* ============================================
   T05.5 — PRODUCTO CAROUSEL EN CELULAR
   ============================================ */
.producto-section {
  background: var(--go-card);
  padding: 64px 18px 80px;
  text-align: center;
  overflow: hidden;
}
.prod-inner {
  max-width: 720px;
  margin: 0 auto;
}
.prod-header { margin-bottom: 32px; }
.prod-h2 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--go-primary);
  letter-spacing: -1.2px;
  line-height: 1.18;
  margin-bottom: 10px;
}
.prod-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--go-gray);
  line-height: 1.5;
}

/* Phone frame */
.prod-phone-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.prod-phone {
  position: relative;
  width: 280px;
  height: 540px;
  background: #111;
  border-radius: 38px;
  padding: 12px;
  box-shadow:
    0 28px 60px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.prod-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.prod-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--go-card);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.prod-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.prod-slide.is-active { opacity: 1; }
.prod-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  background: #fff;
}

/* Dots */
.prod-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.prod-dot {
  width: 8px;
  height: 4px;
  border-radius: 99px;
  background: var(--go-border);
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
  border: none;
  padding: 0;
}
.prod-dot.is-active {
  width: 24px;
  background: var(--go-primary-dark);
}

/* Labels */
.prod-labels {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.prod-label {
  font-size: 12px;
  font-weight: 700;
  color: #9CA3AF;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px 0;
  border: none;
  background: none;
  font-family: inherit;
}
.prod-label.is-active { color: var(--go-primary-dark); }
.prod-label:hover { color: var(--go-primary); }

@media (min-width: 768px) {
  .producto-section { padding: 88px 32px 104px; }
  .prod-phone { width: 300px; height: 580px; }
}
@media (min-width: 1024px) {
  .producto-section { padding: 104px 32px 120px; }
  .prod-phone { width: 320px; height: 620px; border-radius: 42px; }
  .prod-phone-screen { border-radius: 32px; }
}
@media (max-width: 350px) {
  .producto-section { padding: 48px 14px 64px; }
  .prod-phone { width: 240px; height: 460px; border-radius: 32px; padding: 10px; }
  .prod-phone-screen { border-radius: 24px; }
  .prod-phone-notch { width: 100px; height: 20px; }
  .prod-labels { gap: 10px; }
  .prod-label { font-size: 11px; }
}

/* Fix: plan CTA como link */
a.pl-cta { text-decoration: none; display: block; }

/* Plan selector en wizard step 3 */
.fs-step3-sub {
  font-size: 12px;
  color: var(--go-gray);
  text-align: center;
  margin-bottom: 16px;
}
.fs-plan-tiles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.fs-plan-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 2px solid #DCE9F8;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.fs-plan-tile.is-selected {
  border-color: var(--go-primary-dark);
  background: rgba(37, 99, 235, 0.06);
}
.fs-plan-tile-radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid #DCE9F8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.fs-plan-tile.is-selected .fs-plan-tile-radio {
  border-color: var(--go-primary-dark);
}
.fs-plan-tile-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
}
.fs-plan-tile.is-selected .fs-plan-tile-dot {
  background: var(--go-primary-dark);
}
.fs-plan-tile-info { flex: 1; }
.fs-plan-tile-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--go-primary);
}
.fs-plan-tile-detail {
  font-size: 11px;
  color: var(--go-gray);
  margin-top: 2px;
}
.fs-plan-tile-price {
  text-align: right;
  flex-shrink: 0;
}
.fs-plan-tile-amount {
  font-size: 18px;
  font-weight: 900;
  color: var(--go-primary);
}
.fs-plan-tile-old {
  font-size: 10px;
  color: #9CA3AF;
  text-decoration: line-through;
}
.fs-plan-tile-badge {
  position: absolute;
  top: -9px;
  right: 14px;
  background: var(--go-primary-dark);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.fs-plan-tile.is-destacado {
  position: relative;
}

/* ============================================
   ACORDEÓN DE PAGO (planes + wizard)
   ============================================ */
.pay-panel {
  display: none;
  padding: 18px 20px 22px;
  background: #F8FBFF;
  border-top: 1px solid rgba(12, 68, 124, 0.08);
}
.pay-panel.is-open { display: block; }
.pay-label { font-size: 12px; font-weight: 700; color: var(--go-gray); text-align: center; margin-bottom: 12px; }
.pay-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pay-btn { padding: 16px 12px; border-radius: 12px; text-align: center; cursor: pointer; text-decoration: none; display: block; transition: transform 0.2s, box-shadow 0.2s; }
.pay-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px -6px rgba(0,0,0,0.2); }
.pay-btn-usd { background: var(--go-primary); color: #fff; }
.pay-btn-ars { background: #fff; border: 1px solid #DCE9F8; color: var(--go-primary); }
.pay-btn-moneda { font-size: 18px; font-weight: 900; margin-bottom: 3px; }
.pay-btn-detalle { font-size: 10px; opacity: 0.7; }
.pay-btn-precio { font-size: 9px; opacity: 0.5; margin-top: 4px; }
.pay-seguro { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; font-size: 10px; color: #9CA3AF; }
.pay-seguro svg { width: 12px; height: 12px; stroke: #9CA3AF; stroke-width: 2.5; }

.pl-card .pay-panel { border-radius: 0 0 18px 18px; }
.pl-card.is-pay-open { overflow: hidden; }
.pl-card.is-pay-open .pl-cta { border-radius: 12px 12px 0 0; }

.fs-opcion-wrap { border-radius: 14px; overflow: hidden; margin-bottom: 14px; border: 2px solid #DCE9F8; background: linear-gradient(160deg, #EFF6FF 0%, #DCE9F8 100%); transition: border-color 0.2s, box-shadow 0.2s; }
.fs-opcion-wrap.is-open { border-color: var(--go-primary-dark); box-shadow: 0 4px 16px -6px rgba(12,68,124,0.2); }
.fs-opcion-wrap .fs-opcion { border: none; border-radius: 0; background: transparent; box-shadow: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fs-opcion-wrap .fs-opcion:hover { transform: none; box-shadow: none; }
.fs-opcion-chevron { width: 20px; height: 20px; stroke: #9CA3AF; stroke-width: 2.5; flex-shrink: 0; transition: transform 0.3s, stroke 0.3s; }
.fs-opcion-wrap.is-open .fs-opcion-chevron { transform: rotate(180deg); stroke: var(--go-primary-dark); }
.fs-opcion-inner { display: none; padding: 0 18px 20px; border-top: 1px solid rgba(12,68,124,0.08); }
.fs-opcion-wrap.is-open .fs-opcion-inner { display: block; }

.fs-comprar-plan-label { font-size: 12px; font-weight: 700; color: var(--go-primary); margin: 14px 0 10px; }
.fs-comprar-tiles { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fs-comprar-tile { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: #fff; border: 1px solid #DCE9F8; border-radius: 10px; cursor: pointer; transition: border-color 0.2s; user-select: none; position: relative; }
.fs-comprar-tile.is-selected { border: 2px solid var(--go-primary-dark); }
.fs-comprar-tile-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #DCE9F8; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fs-comprar-tile.is-selected .fs-comprar-tile-radio { border-color: var(--go-primary-dark); }
.fs-comprar-tile-dot { width: 9px; height: 9px; border-radius: 50%; background: transparent; }
.fs-comprar-tile.is-selected .fs-comprar-tile-dot { background: var(--go-primary-dark); }
.fs-comprar-tile-name { font-size: 13px; font-weight: 700; color: var(--go-primary); }
.fs-comprar-tile-detail { font-size: 10px; color: var(--go-gray); margin-top: 2px; }
.fs-comprar-tile-badge { position: absolute; top: -8px; right: 12px; background: var(--go-primary-dark); color: #fff; font-size: 8px; font-weight: 700; padding: 2px 8px; border-radius: 99px; letter-spacing: 0.5px; text-transform: uppercase; }

/* Toggle periodo mensual / largo plazo */
.pay-periodo {
  display: flex;
  background: #EFF6FF;
  border-radius: 10px;
  padding: 3px;
  margin-bottom: 14px;
}
.pay-periodo-btn {
  flex: 1;
  padding: 9px 8px;
  text-align: center;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--go-gray);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
  background: transparent;
  font-family: inherit;
}
.pay-periodo-btn.is-active {
  background: white;
  color: var(--go-primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.pay-periodo-ahorro {
  font-size: 10px;
  color: var(--go-green);
  font-weight: 700;
  display: block;
  margin-top: 2px;
}

/* Pay panel v3: USD y ARS mismo nivel */
.pay-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pay-box {
  padding: 18px 14px;
  border-radius: 12px;
  text-align: center;
}
.pay-box-usd {
  background: var(--go-primary);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}
.pay-box-usd:hover { transform: translateY(-2px); box-shadow: 0 6px 18px -6px rgba(0,0,0,0.25); }
.pay-box-ars {
  background: #fff;
  border: 2px solid var(--go-primary-dark);
  color: var(--go-primary);
}
.pay-box-moneda { font-size: 20px; font-weight: 900; margin-bottom: 6px; }
.pay-box-sub { font-size: 10px; opacity: 0.7; margin-bottom: 6px; }
.pay-box-nota { font-size: 9px; opacity: 0.5; line-height: 1.4; }
.pay-ars-options {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.pay-ars-opt {
  flex: 1;
  background: var(--go-primary-light);
  border: 1px solid #DCE9F8;
  border-radius: 8px;
  padding: 10px 6px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.pay-ars-opt:hover { border-color: var(--go-primary-dark); transform: translateY(-1px); }
.pay-ars-opt-titulo { font-size: 11px; font-weight: 800; color: var(--go-primary); }
.pay-ars-opt-ahorro { font-size: 9px; color: var(--go-green); font-weight: 700; }
.pay-ars-opt-precio { font-size: 11px; font-weight: 700; color: var(--go-primary); margin-top: 4px; }
.pay-ars-opt-per { font-size: 8px; color: #9CA3AF; }

/* ============================================
   BENEFICIOS LABEL + REQUISITOS + POR QUÉ
   ============================================ */
.fs-block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  margin-top: 8px;
}

/* Requisitos (acordeón) */
.fs-requisitos {
  margin-top: 12px;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.fs-req-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.fs-req-toggle:hover { background: rgba(255, 255, 255, 0.1); }
.fs-req-toggle-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.fs-req-chevron {
  width: 18px; height: 18px;
  stroke: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s;
}
.fs-requisitos.is-open .fs-req-chevron { transform: rotate(180deg); }
.fs-req-body {
  display: none;
  padding-top: 12px;
}
.fs-requisitos.is-open .fs-req-body { display: block; }
.fs-requisito {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fs-requisito:last-child { border-bottom: none; }
.fs-requisito-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.fs-requisito-icon svg {
  width: 12px; height: 12px;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 2.5;
}
.fs-requisito-texto {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* Bloques ¿Por qué? */
.fs-porque-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.fs-porque-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 20px;
}
.fs-porque-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #85B7EB;
  margin-bottom: 10px;
}
.fs-porque-titulo {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.fs-porque-texto {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .fs-porque-grid { grid-template-columns: 1fr 1fr; }
}

/* Garantía al pie de planes (acordeón) */
.pl-garantia {
  max-width: 640px;
  margin: 24px auto 0;
  background: #EFF6FF;
  border: 1px solid #DCE9F8;
  border-radius: 14px;
  overflow: hidden;
}
.pl-garantia-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.pl-garantia-toggle:hover { background: rgba(37, 99, 235, 0.06); }
.pl-garantia-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pl-garantia-icon {
  width: 20px; height: 20px;
  stroke: var(--go-green);
  flex-shrink: 0;
}
.pl-garantia-titulo {
  font-size: 14px;
  font-weight: 700;
  color: var(--go-primary);
}
.pl-garantia-chevron {
  width: 18px; height: 18px;
  stroke: var(--go-primary);
  opacity: 0.4;
  transition: transform 0.3s;
}
.pl-garantia.is-open .pl-garantia-chevron { transform: rotate(180deg); opacity: 0.7; }
.pl-garantia-body {
  display: none;
  padding: 0 20px 18px;
}
.pl-garantia.is-open .pl-garantia-body { display: block; }
.pl-garantia-texto {
  font-size: 13px;
  color: var(--go-primary);
  line-height: 1.55;
  font-weight: 500;
  opacity: 0.8;
}

/* ============================================
   STEP 1 COMPACT — pills, tiles, grid
   ============================================ */
.fs-field-hint {
  font-size: 10px;
  color: #9CA3AF;
  margin-bottom: 8px;
  margin-top: -2px;
}
.fs-divider {
  height: 1px;
  background: #DCE9F8;
  margin: 14px 0;
}
.fs-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fs-pills-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.fs-pill-c {
  padding: 5px 11px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  background: #fff;
  border: 1px solid #DCE9F8;
  color: #5F5E5A;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  user-select: none;
}
.fs-pill-c.is-selected {
  background: var(--go-primary);
  color: #fff;
  border-color: var(--go-primary);
}
.fs-tiles-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.fs-tile-c {
  padding: 7px 4px;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  background: #fff;
  border: 1px solid #DCE9F8;
  color: var(--go-primary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  user-select: none;
}
.fs-tile-c.is-selected {
  background: var(--go-primary);
  color: #fff;
  border-color: var(--go-primary);
}
.fs-textarea-compact {
  width: 100%;
  min-height: 60px;
  padding: 10px 12px;
  border: 1px solid #DCE9F8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 12px;
  color: var(--go-primary);
  background: #fff;
  resize: vertical;
  margin-bottom: 14px;
}
.fs-textarea-compact::placeholder { color: #9CA3AF; }

/* Step 2: prefijo WhatsApp + select provincia */
.fs-input-prefijo {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}
.fs-prefijo {
  padding: 10px 12px;
  background: #EFF6FF;
  border: 1px solid #DCE9F8;
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--go-primary);
  flex-shrink: 0;
}
.fs-input-con-prefijo {
  border-radius: 0 10px 10px 0 !important;
  margin-bottom: 0 !important;
}
.fs-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #DCE9F8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  color: var(--go-primary);
  background: #fff;
  margin-bottom: 12px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.fs-select:invalid, .fs-select option[value=""] { color: #9CA3AF; }

/* Divider vertical en grid-2 */
.fs-grid-divider {
  width: 1px;
  background: #DCE9F8;
  margin: 0 -6px;
  align-self: stretch;
}
.fs-grid-2 { grid-template-columns: 1fr auto 1fr; }

/* ============================================
   STEP 3: Check requisitos + Modal
   ============================================ */
.fs-req-check {
  margin-top: 18px;
  margin-bottom: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #DCE9F8;
  border-radius: 12px;
}
.fs-req-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--go-primary);
  line-height: 1.4;
}
.fs-req-checkbox { display: none; }
.fs-req-check-box {
  width: 20px; height: 20px;
  border: 2px solid #DCE9F8;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.fs-req-checkbox:checked + .fs-req-check-box {
  background: var(--go-primary-dark);
  border-color: var(--go-primary-dark);
}
.fs-req-checkbox:checked + .fs-req-check-box::after {
  content: '';
  width: 6px; height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.fs-req-check-link {
  color: var(--go-primary-dark);
  text-decoration: underline;
  font-weight: 600;
}
.fs-req-check.is-error {
  border-color: #EF4444;
  animation: shake 0.3s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* Disabled overlay for step 3 options */
.fs-step3-disabled {
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.3s;
}
.fs-step3-disabled.is-enabled {
  opacity: 1;
  pointer-events: auto;
}

/* Modal requisitos */
.fs-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.fs-modal-overlay.is-open { display: flex; }
.fs-modal {
  background: white;
  border-radius: 18px;
  max-width: 480px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.3);
}
.fs-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #E5E7EB;
}
.fs-modal-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--go-primary);
}
.fs-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #9CA3AF;
}
.fs-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.fs-modal-body .fs-requisito {
  border-bottom: 1px solid #E5E7EB;
}
.fs-modal-body .fs-requisito-icon { background: rgba(12, 68, 124, 0.08); }
.fs-modal-body .fs-requisito-icon svg { stroke: var(--go-primary); }
.fs-modal-body .fs-requisito-texto { color: #444441; }
.fs-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid #E5E7EB;
}
.fs-modal-btn {
  width: 100%;
  padding: 12px;
  background: var(--go-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.fs-modal-btn:hover { background: var(--go-primary-dark); }

/* Step 3: opciones con degradé azul oscuro */
.fs-opcion-wrap-dark {
  background: linear-gradient(160deg, #0C447C 0%, #0A3562 100%);
  border-color: rgba(255, 255, 255, 0.15);
}
.fs-opcion-wrap-dark .fs-opcion-titulo { color: #fff; }
.fs-opcion-wrap-dark .fs-opcion-bajada { color: rgba(255, 255, 255, 0.6); }
.fs-opcion-wrap-dark .fs-opcion-chevron { stroke: rgba(255, 255, 255, 0.5); }
.fs-opcion-wrap-dark.is-open { border-color: rgba(255, 255, 255, 0.3); box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.3); }
.fs-opcion-wrap-dark.is-open .fs-opcion-chevron { stroke: #fff; }
.fs-opcion-wrap-dark .fs-opcion-inner { border-top-color: rgba(255, 255, 255, 0.1); }
.fs-opcion-wrap-dark .fs-comprar-plan-label { color: rgba(255, 255, 255, 0.7); }
.fs-opcion-wrap-dark .pay-label { color: rgba(255, 255, 255, 0.6); }

/* Logo imagen Bildmor */
.header-logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 24px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
@media (min-width: 768px) {
  .header-logo-img { height: 32px; }
  .footer-logo-img { height: 28px; }
}
