/* ═══════════════════════════════════════════════════════════════
   PRESTO Landing — Paleta oficial
   Emerald #60D171 | Celadon #8FD8A5 | Carbon Black #1E1E1E
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Paleta principal */
  --primary: #60D171;
  --primary-dark: #2FAE53;
  --primary-deep: #1E1E1E;
  --accent: #8FD8A5;
  --accent-dark: #60D171;
  --bg-dark: #1E1E1E;
  --bg-dark-2: #2F2F2F;
  /* Acentos de apoyo */
  --salsa-pop: #60D171;
  --salsa-sun: #8FD8A5;
  --salsa-mint: #B8E8C6;
  --salsa-violet: #4B5563;
  /* Secundarios */
  --surface: #FFFFFF;
  --bg: #F6FAF7;
  --text: #1E1E1E;
  --text-muted: #4B5563;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --border-hover: #D1D5DB;
  --success: #22C55E;
  --error: #EF4444;
  /* Layout */
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(30, 30, 30, 0.08);
  --shadow-lg: 0 20px 50px rgba(30, 30, 30, 0.12);
  --shadow-salsa: 0 8px 32px rgba(96, 209, 113, 0.2);
  /* Tipografía orientada a lectura en español (VE / LATAM) */
  --font: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Montserrat', 'Source Sans 3', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

@keyframes salsa-gradient {
  0% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.85; transform: scale(1.05) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes salsa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Teclado: foco visible claro */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  font-feature-settings: 'kern' 1;
  -webkit-font-smoothing: antialiased;
}

body.presto-landing {
  background:
    radial-gradient(ellipse 80% 50% at 100% -20%, rgba(96, 209, 113, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(255, 51, 102, 0.06), transparent),
    var(--bg);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 4px 24px rgba(30, 30, 30, 0.07);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--salsa-mint), var(--accent), var(--salsa-pop));
  pointer-events: none;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.9;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
}

.logo-text {
  color: #fff;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-icon-img {
  height: 52px;
  width: 52px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-text-img {
    height: 54px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  transition: color 0.2s var(--ease-out);
}

.nav a:hover {
  color: var(--primary-deep);
  text-decoration: none;
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 1px;
  transition: width 0.22s var(--ease-out);
}

.nav a:not(.btn):hover::after {
  width: 100%;
}

.nav .btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) !important;
  box-shadow: 0 4px 16px rgba(96, 209, 113, 0.35);
  border: none;
}

.nav .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
  box-shadow: 0 6px 22px rgba(96, 209, 113, 0.42);
  color: #fff !important;
  transform: translateY(-1px);
}

.nav .nav-salsa {
  color: var(--salsa-pop);
  font-weight: 700;
}

.nav .nav-salsa:hover {
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary-deep);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--radius);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(96, 209, 113, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(96, 209, 113, 0.5);
  transform: translateY(-1px);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--salsa-sun);
  background: rgba(251, 191, 36, 0.12);
  color: #fff;
  text-decoration: none;
}

.btn-salsa {
  background: linear-gradient(135deg, var(--salsa-pop), #FF6B6B) !important;
  color: #fff !important;
  border: none;
  box-shadow: var(--shadow-salsa);
}

.btn-salsa:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #111111 0%, var(--bg-dark) 35%, var(--primary-dark) 70%, #1E1E1E 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(96, 209, 113, 0.28) 0%, rgba(255, 51, 102, 0.08) 45%, transparent 70%);
  pointer-events: none;
  animation: salsa-gradient 18s ease-in-out infinite;
}

.hero-bg::before {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -15%;
  width: 55%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(96, 209, 113, 0.12) 0%, rgba(96, 209, 113, 0.08) 40%, transparent 65%);
  pointer-events: none;
  animation: salsa-gradient 22s ease-in-out infinite reverse;
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 56px;
    align-items: center;
  }

  .hero-copy {
    margin: 0;
    max-width: none;
  }
}

/* ─── Hero carrusel ─── */
.hero-carousel-aside {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-carousel-aside {
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero-carousel {
  position: relative;
  width: 100%;
}

.hero-carousel-viewport {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(30, 30, 30, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-carousel-track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-track {
    transition: none;
  }
}

.hero-slide {
  flex: 0 0 100%;
  min-height: 300px;
  padding: 36px 28px 44px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-slide {
    min-height: 340px;
  }
}

.hero-slide-inner {
  text-align: center;
  max-width: 280px;
}

.hero-slide-mark {
  display: block;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.hero-slide-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
}

.hero-slide-kicker {
  margin: 0 0 8px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(143, 216, 165, 0.95);
}

.hero-slide-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-slide-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.hero-slide--1 {
  background: linear-gradient(160deg, rgba(96, 209, 113, 0.35) 0%, rgba(30, 30, 30, 0.6) 100%);
}

.hero-slide--2 {
  background: linear-gradient(160deg, rgba(96, 209, 113, 0.22) 0%, rgba(30, 30, 30, 0.65) 100%);
}

.hero-slide--3 {
  background: linear-gradient(160deg, rgba(96, 209, 113, 0.18) 0%, rgba(30, 30, 30, 0.65) 100%);
}

.hero-slide--4 {
  background: linear-gradient(160deg, rgba(251, 191, 36, 0.2) 0%, rgba(30, 30, 30, 0.65) 100%);
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(30, 30, 30, 0.78);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.hero-carousel-btn:hover {
  background: rgba(96, 209, 113, 0.4);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-carousel-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero-carousel-btn--prev {
  left: 8px;
}

.hero-carousel-btn--next {
  right: 8px;
}

.hero-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0 48px;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

.hero-carousel-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.hero-kicker-banner {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--primary);
  text-transform: none;
  display: inline-block;
  position: relative;
}

.hero-kicker-banner .hero-kicker-bang {
  color: var(--accent, var(--primary));
  font-weight: 800;
  margin: 0 1px;
}

.hero-kicker-banner::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), rgba(96, 209, 113, 0.2));
}

.hero-kicker-sub {
  margin: 14px 0 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 540px;
}

.hero-eyebrow {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(143, 216, 165, 0.9);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: rgba(96, 209, 113, 0.12);
  border: 1px solid rgba(96, 209, 113, 0.32);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.hero-pill-icon {
  flex-shrink: 0;
  color: var(--primary);
}

.hero-pill-text {
  white-space: nowrap;
}

.hero-pill-text--muted {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.hero-pill-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hero-pill {
    font-size: 0.72rem;
    padding: 5px 10px 5px 9px;
    gap: 6px;
  }
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #fff;
  font-family: var(--font-display);
}

/* Wordmark «PRESTO» en Futura PT Bold (asset raster) */
.hero-brand-wordmark {
  display: block;
  max-width: min(300px, 88vw);
  width: 100%;
  height: auto;
  margin: 0 0 6px;
  object-fit: contain;
}

.hero-title-accent {
  background: linear-gradient(135deg, #d9f5e1 0%, var(--accent) 45%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  margin: 0 0 26px;
  font-size: clamp(1.0625rem, 2.2vw, 1.1875rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38rem;
  line-height: 1.7;
}

.hero-lead strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 28px;
  padding: 4px 0;
  border-radius: 16px;
  background: rgba(30, 30, 30, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-highlight:last-child {
  border-bottom: none;
}

.hero-highlight-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(96, 209, 113, 0.15);
  color: #5eead4;
}

.hero-highlight-icon svg {
  display: block;
}

.hero-highlight-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-top: 2px;
}

.hero-highlight-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero-highlight-desc {
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-disclaimer {
  margin: 0 0 18px;
  max-width: 38rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.hero-footnote {
  margin: 0;
  font-size: 0.875rem;
}

.hero-footnote-link {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-footnote-link:hover {
  color: #fff;
  border-bottom-color: var(--salsa-sun);
  text-decoration: none;
}

@media (min-width: 768px) {
  .hero-highlights {
    flex-direction: row;
    align-items: stretch;
    padding: 0;
  }

  .hero-highlight {
    flex: 1;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 16px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-highlight:last-child {
    border-right: none;
  }

  .hero-highlight-body {
    align-items: center;
    padding-top: 0;
  }

  .hero-highlight-desc {
    max-width: 220px;
    margin: 0 auto;
  }
}

/* ─── Simulador de cuotas (landing, cifras de muestra) ─── */
.simulator {
  padding: 96px 0 100px;
  background: linear-gradient(180deg, #E8F4FC 0%, var(--bg) 45%, var(--bg) 100%);
  position: relative;
}

.simulator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 200px;
  background: radial-gradient(ellipse, rgba(96, 209, 113, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.simulator .container {
  position: relative;
  z-index: 1;
}

.simulator .section-title {
  font-family: var(--font-display);
}

.simulator-card {
  margin-top: 8px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(30, 30, 30, 0.06);
  overflow: hidden;
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  align-items: stretch;
}

.simulator-controls {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--border);
}

.sim-step {
  margin-bottom: 36px;
}

.sim-step:last-child {
  margin-bottom: 0;
}

.sim-step-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.sim-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(96, 209, 113, 0.35);
}

.sim-step-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.sim-step-desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.sim-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.sim-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, var(--border) 0%, rgba(96, 209, 113, 0.25) 100%);
  outline: none;
}

.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(96, 209, 113, 0.45);
  border: 2px solid #fff;
}

.sim-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(96, 209, 113, 0.45);
}

.sim-range-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.sim-range-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-deep);
  letter-spacing: -0.02em;
}

.sim-range-cap {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sim-cuotas-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sim-cuota-btn {
  min-width: 52px;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}

.sim-cuota-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.sim-cuota-btn.is-selected {
  background: linear-gradient(135deg, rgba(96, 209, 113, 0.12), rgba(96, 209, 113, 0.08));
  border-color: var(--primary);
  color: var(--primary-deep);
  box-shadow: 0 2px 8px rgba(96, 209, 113, 0.2);
}

.sim-cuota-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.simulator-result {
  background: linear-gradient(165deg, var(--bg-dark) 0%, var(--primary-deep) 100%);
  color: #fff;
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-result-inner {
  width: 100%;
  max-width: 320px;
}

.sim-result-eyebrow {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.sim-result-plazo {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.sim-result-highlight {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.sim-result-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.sim-result-cuota {
  display: block;
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sim-result-rango {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.sim-result-dl {
  margin: 0 0 20px;
}

.sim-result-dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sim-result-dl dt {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.sim-result-dl dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
}

.sim-result-total {
  font-size: 1.1rem !important;
  color: #8FD8A5;
}

.sim-result-cuotas-title {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.sim-breakdown {
  margin-bottom: 20px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.85rem;
}

.sim-breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.sim-breakdown-foot {
  margin-top: 8px;
  padding-top: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.sim-breakdown-foot strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.sim-result-cta {
  width: 100%;
  margin-top: 8px;
  padding: 14px 20px;
  text-align: center;
  background: #fff !important;
  color: var(--primary-deep) !important;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.sim-result-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: var(--primary-deep) !important;
}

.sim-disclaimer {
  margin: 32px auto 0;
  max-width: 720px;
  padding: 18px 22px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.sim-disclaimer strong {
  color: var(--text);
}

/* ─── Features ─── */
.features {
  padding: 100px 0;
  background: var(--bg);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-eyebrow {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-head .section-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
}

.section-head .section-subtitle {
  margin: 0;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0 0 48px;
  font-size: 1.0625rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--surface);
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(30, 30, 30, 0.1), 0 8px 24px rgba(96, 209, 113, 0.08);
  border-color: rgba(96, 209, 113, 0.22);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(96, 209, 113, 0.12), rgba(96, 209, 113, 0.06));
  color: var(--primary-deep);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── How it works ─── */
.how {
  padding: 100px 0;
  background: var(--surface);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s var(--ease-out);
}

.step:hover {
  border-color: rgba(96, 209, 113, 0.2);
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(96, 209, 113, 0.35);
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── CTA ─── */
.cta {
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #111111 0%, var(--primary-deep) 45%, #2FAE53 100%);
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 20%, rgba(255, 51, 102, 0.15), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(96, 209, 113, 0.12), transparent);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.cta-eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(143, 216, 165, 0.95);
}

.cta-title {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.cta-subtitle {
  margin: 0 0 40px;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.store-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  transition: background 0.22s var(--ease-out), border-color 0.22s, transform 0.2s var(--ease-out);
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
}

.store-btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
}

.store-btn[aria-disabled="true"]:hover {
  background: rgba(255, 255, 255, 0.12);
}

.store-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.store-name {
  font-size: 1.2rem;
}

/* ─── Footer ─── */
.footer {
  background: linear-gradient(180deg, var(--surface) 0%, #f8fafc 100%);
  padding: 48px 24px 32px;
  border-top: 1px solid var(--border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--salsa-mint), var(--primary), var(--salsa-pop));
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer .logo {
  margin-bottom: 8px;
}

.footer-tagline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-deep);
  text-decoration: none;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ─── Legal (Privacidad / Términos) ─── */
.legal-page {
  padding: 100px 24px 60px;
  min-height: 100vh;
  background: var(--bg);
  position: relative;
}

.legal-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--salsa-mint), var(--accent), var(--salsa-pop), var(--salsa-sun));
}

.legal-inner {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.legal-title {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -0.02em;
}

.legal-date {
  margin: 0 0 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-h2 {
  margin: 32px 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.legal-p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: left;
}

.legal-p a {
  color: var(--primary);
  font-weight: 500;
}

.legal-p a:hover {
  text-decoration: underline;
}

/* ─── Borrado de datos ─── */
.borrado-page {
  min-height: 100vh;
  background: var(--bg);
}

.borrado-hero {
  position: relative;
  padding: 100px 24px 48px;
  overflow: hidden;
}

.borrado-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-dark-2) 60%, #1A2744 100%);
}

.borrado-hero-bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(96, 209, 113, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.borrado-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.borrado-hero-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.borrado-hero-icon svg {
  width: 48px;
  height: 48px;
}

.borrado-hero-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.borrado-hero-subtitle {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.borrado-content {
  padding: 0 24px 80px;
}

.borrado-inner {
  max-width: 520px;
  margin: -24px auto 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 32px;
}

.borrado-info-card {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(96, 209, 113, 0.06) 0%, rgba(96, 209, 113, 0.04) 100%);
  border: 1px solid rgba(96, 209, 113, 0.15);
  border-radius: var(--radius);
}

.borrado-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.borrado-info-icon svg {
  width: 100%;
  height: 100%;
}

.borrado-info-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.borrado-info-text strong {
  color: var(--text);
}

/* Form borrado */
.form-borrado {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.form-group .required {
  color: var(--error);
}

.form-group .optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-borrado input,
.form-borrado textarea {
  font-family: var(--font);
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-borrado input::placeholder,
.form-borrado textarea::placeholder {
  color: var(--text-light);
}

.form-borrado input:hover,
.form-borrado textarea:hover {
  border-color: var(--border-hover);
}

.form-borrado input:focus,
.form-borrado textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(96, 209, 113, 0.15);
}

.form-borrado input.is-invalid {
  border-color: var(--error);
}

.form-borrado textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field-error {
  font-size: 0.875rem;
  color: var(--error);
}

.form-field-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.form-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-message[hidden] {
  display: none !important;
}

.form-message-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--success);
}

.form-message-success .form-message-icon {
  color: var(--success);
  font-weight: 800;
  font-size: 1.25rem;
}

.form-message-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: var(--error);
}

.form-message-error .form-message-icon {
  color: var(--error);
  font-weight: 800;
  font-size: 1.25rem;
}

.btn-submit {
  margin-top: 8px;
  width: 100%;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ─── Lead / contacto interesados ─── */
.lead {
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

.lead::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(96, 209, 113, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.lead-copy .section-title {
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
}

.lead-copy .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-bottom: 22px;
  max-width: 36rem;
}

.lead-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 14px;
}

.lead-perks {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.lead-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.lead-perks li::before {
  content: '✦';
  color: var(--salsa-mint);
  font-size: 1rem;
}

.lead-form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(30, 30, 30, 0.07);
}

.lead-form-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.lead-form-intro {
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-contacto {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-contacto-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-contacto-row {
    grid-template-columns: 1fr;
  }
}

.form-contacto input,
.form-contacto select,
.form-contacto textarea {
  font-family: var(--font);
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-contacto input:focus,
.form-contacto select:focus,
.form-contacto textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(96, 209, 113, 0.15);
}

.form-contacto input:focus-visible,
.form-contacto select:focus-visible,
.form-contacto textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-contacto input.is-invalid,
.form-contacto select.is-invalid,
.form-contacto textarea.is-invalid {
  border-color: var(--error);
}

.form-contacto textarea {
  resize: vertical;
  min-height: 88px;
}

.form-contacto .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.form-contacto .form-check input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.form-contacto .form-check a {
  font-weight: 600;
}

/* Google reCAPTCHA v2 */
.recaptcha-wrap {
  margin: 16px 0 8px;
  min-height: 0;
}

.recaptcha-wrap:empty {
  margin: 0;
}

.form-borrado .recaptcha-wrap {
  margin: 12px 0 4px;
}

.btn-contacto-submit {
  width: 100%;
  margin-top: 6px;
  padding: 16px !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  border-radius: var(--radius) !important;
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
  }

  .nav a:hover {
    color: #fff;
  }

  .nav a:not(.btn)::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .features,
  .how {
    padding: 60px 0;
  }

  .simulator {
    padding: 56px 0 64px;
  }

  .simulator-grid {
    grid-template-columns: 1fr;
  }

  .simulator-controls {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 20px 32px;
  }

  .simulator-result {
    padding: 32px 20px;
  }

  .cta {
    padding: 60px 24px;
  }

  .borrado-hero {
    padding: 80px 24px 40px;
  }

  .borrado-content {
    padding: 0 16px 60px;
  }

  .borrado-inner {
    margin-top: -16px;
    padding: 24px 20px;
  }

  .borrado-info-card {
    flex-direction: column;
    gap: 12px;
    padding: 14px 16px;
  }

  .lead-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lead-copy .section-title,
  .lead-copy .section-subtitle {
    text-align: center;
  }

  .lead-copy .lead-kicker {
    display: block;
    text-align: center;
  }

  .lead-perks {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .lead-form-card {
    padding: 24px 20px;
  }

  .legal-inner {
    padding: 24px 20px;
  }
}

/* ─────────────────────────────────────────────────────────
   Trust strip (debajo del hero)
   ───────────────────────────────────────────────────────── */
.trust-strip {
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #232323 100%);
  border-top: 1px solid rgba(96, 209, 113, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
  margin-top: -1px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 4px;
  align-items: center;
  padding: 4px 0;
}

.trust-chip-icon {
  grid-column: 1;
  grid-row: 1;
  width: 20px;
  height: 20px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  flex: 0 0 auto;
}

.trust-chip strong {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.trust-chip-desc {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────
   Proof / stats
   ───────────────────────────────────────────────────────── */
.proof {
  padding: 64px 0 28px;
  background: var(--bg);
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.proof-stat {
  padding: 24px 12px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04));
}

.proof-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.proof-label {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.proof-label sup {
  color: var(--primary);
  font-weight: 700;
}

.proof-foot {
  text-align: center;
  margin: 16px auto 0;
  max-width: 720px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .proof-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .proof-inner {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────
   Requisitos
   ───────────────────────────────────────────────────────── */
.requisitos {
  padding: 80px 0;
  background: var(--surface);
}

.requisitos-grid {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: req;
}

.requisito-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.requisito-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.requisito-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.requisito-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.requisito-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .requisitos-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ─────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────── */
.faq {
  padding: 80px 0;
  background: var(--bg);
}

.faq-list {
  margin: 32px auto 0;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(96, 209, 113, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-item a {
  color: var(--primary);
  font-weight: 600;
}

.faq-foot {
  text-align: center;
  margin: 24px auto 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.faq-foot a {
  color: var(--primary);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   AFFIRM-STYLE DARK THEME OVERRIDE
   Convierte toda la landing a dark mode tipo Affirm,
   manteniendo el verde PRESTO como único acento.
   ═══════════════════════════════════════════════════════════════ */

body.presto-landing {
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(96, 209, 113, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(96, 209, 113, 0.06), transparent 60%),
    #06070d;
  color: rgba(255, 255, 255, 0.78);
}

body.presto-landing main {
  position: relative;
  z-index: 1;
}

/* ─── Header ─── */
body.presto-landing .header {
  background: rgba(6, 7, 13, 0.55);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

body.presto-landing .header::after {
  background: linear-gradient(90deg, transparent, rgba(96, 209, 113, 0.4), transparent);
  height: 1px;
  opacity: 0.6;
}

body.presto-landing .nav a {
  color: rgba(255, 255, 255, 0.78);
}

body.presto-landing .nav a:hover {
  color: #fff;
}

body.presto-landing .nav a:not(.btn)::after {
  background: var(--primary);
}

body.presto-landing .menu-toggle span {
  background: #fff;
}

/* ─── Hero centrado estilo Affirm ─── */
body.presto-landing .hero {
  min-height: auto;
  padding: 140px 24px 80px;
  text-align: center;
}

body.presto-landing .hero-bg {
  background: transparent;
}

body.presto-landing .hero-bg::after,
body.presto-landing .hero-bg::before {
  display: none;
}

body.presto-landing .hero-layout {
  grid-template-columns: 1fr;
  max-width: 980px;
  gap: 64px;
  align-items: center;
}

body.presto-landing .hero-copy {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

@media (min-width: 1024px) {
  body.presto-landing .hero-layout {
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    max-width: 980px;
  }
  body.presto-landing .hero-copy {
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
  }
}

body.presto-landing .hero-pill {
  background: rgba(96, 209, 113, 0.10);
  border: 1px solid rgba(96, 209, 113, 0.28);
  color: rgba(255, 255, 255, 0.85);
}

body.presto-landing .hero-pill-icon {
  color: var(--primary);
}

body.presto-landing .hero-pill-text--muted {
  color: rgba(255, 255, 255, 0.55);
}

body.presto-landing .hero-pill-sep {
  background: rgba(255, 255, 255, 0.20);
}

body.presto-landing .hero-kicker-banner {
  color: var(--primary);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  background: none;
  -webkit-text-fill-color: var(--primary);
}

body.presto-landing .hero-kicker-banner::after {
  display: none;
}

body.presto-landing .hero-kicker-banner .hero-kicker-bang {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

body.presto-landing .hero-title {
  color: #fff;
  font-weight: 300;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 18px auto 22px;
  max-width: 18ch;
  text-align: center;
}

body.presto-landing .hero-title-accent {
  color: var(--primary);
  font-weight: 500;
  background: none;
  -webkit-text-fill-color: var(--primary);
}

body.presto-landing .hero-lead {
  color: rgba(255, 255, 255, 0.70);
  font-size: 1.15rem;
  max-width: 56ch;
  margin: 0 auto;
}

body.presto-landing .hero-lead strong {
  color: #fff;
  font-weight: 600;
  background: none;
  -webkit-text-fill-color: #fff;
}

body.presto-landing .hero-highlights {
  margin: 36px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 768px) {
  body.presto-landing .hero-highlights {
    grid-template-columns: 1fr;
  }
}

body.presto-landing .hero-highlight {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: left;
}

body.presto-landing .hero-highlight-icon {
  background: rgba(96, 209, 113, 0.16);
  border: 1px solid rgba(96, 209, 113, 0.28);
  color: var(--primary);
}

body.presto-landing .hero-highlight-title {
  color: #fff;
}

body.presto-landing .hero-highlight-desc {
  color: rgba(255, 255, 255, 0.55);
}

body.presto-landing .hero-cta-row {
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

body.presto-landing .hero-disclaimer,
body.presto-landing .hero-footnote {
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

body.presto-landing .hero-footnote-link {
  color: var(--primary);
}

/* Carrusel del hero — debajo, ancho amplio */
body.presto-landing .hero-carousel-aside {
  max-width: 940px;
  margin: 60px auto 0;
}

@media (min-width: 1024px) {
  body.presto-landing .hero-carousel-aside {
    max-width: 940px;
    margin: 60px auto 0;
    display: block;
  }
}

body.presto-landing .hero-carousel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

body.presto-landing .hero-slide {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.78);
}

body.presto-landing .hero-slide-title {
  color: #fff;
}

body.presto-landing .hero-slide-text,
body.presto-landing .hero-slide-kicker {
  color: rgba(255, 255, 255, 0.65);
}

body.presto-landing .hero-slide-icon {
  background: rgba(96, 209, 113, 0.14);
  border: 1px solid rgba(96, 209, 113, 0.28);
  color: var(--primary);
}

body.presto-landing .hero-carousel-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

body.presto-landing .hero-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

body.presto-landing .hero-carousel-dot {
  background: rgba(255, 255, 255, 0.20);
}

body.presto-landing .hero-carousel-dot.is-active {
  background: var(--primary);
}

/* ─── Botones primarios = blanco píldora estilo Affirm ─── */
body.presto-landing .btn {
  border-radius: 999px;
}

body.presto-landing .btn-primary {
  background: #fff !important;
  color: #06070d !important;
  border: 1px solid #fff;
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.10);
  font-weight: 600;
}

body.presto-landing .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #06070d !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.16);
}

body.presto-landing .nav .btn-primary {
  background: #fff !important;
  color: #06070d !important;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.12);
}

body.presto-landing .nav .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #06070d !important;
}

body.presto-landing .btn-hero-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

body.presto-landing .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

/* ─── Trust strip continuo, sin fondo propio ─── */
body.presto-landing .trust-strip {
  background: transparent;
  border: none;
  padding: 24px 0 64px;
  margin-top: 0;
}

body.presto-landing .trust-chip-icon {
  color: var(--primary);
}

body.presto-landing .trust-chip strong {
  color: #fff;
}

body.presto-landing .trust-chip-desc {
  color: rgba(255, 255, 255, 0.55);
}

/* ─── Sections: todas con fondo transparente sobre body dark ─── */
body.presto-landing .simulator,
body.presto-landing .features,
body.presto-landing .how,
body.presto-landing .proof,
body.presto-landing .requisitos,
body.presto-landing .lead,
body.presto-landing .faq,
body.presto-landing .cta {
  background: transparent;
}

body.presto-landing .simulator::before {
  display: none;
}

body.presto-landing .section-eyebrow {
  color: var(--primary);
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
}

body.presto-landing .section-title {
  color: #fff;
  font-weight: 300;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  background: none;
  -webkit-text-fill-color: #fff;
}

body.presto-landing .section-title strong {
  color: var(--primary);
  font-weight: 500;
  -webkit-text-fill-color: var(--primary);
}

body.presto-landing .section-subtitle {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
}

/* ─── Cards estilo Affirm (feature, step, requisito, proof) ─── */
body.presto-landing .feature-card,
body.presto-landing .step,
body.presto-landing .requisito-card,
body.presto-landing .proof-stat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px 28px;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

body.presto-landing .feature-card::before,
body.presto-landing .step::before,
body.presto-landing .requisito-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(96, 209, 113, 0.10), transparent 70%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

body.presto-landing .feature-card:hover::before,
body.presto-landing .step:hover::before,
body.presto-landing .requisito-card:hover::before {
  opacity: 1;
}

body.presto-landing .feature-card:hover,
body.presto-landing .step:hover,
body.presto-landing .requisito-card:hover {
  border-color: rgba(96, 209, 113, 0.30);
  transform: translateY(-3px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

body.presto-landing .feature-card h3,
body.presto-landing .step h3,
body.presto-landing .requisito-card h3 {
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

body.presto-landing .feature-card p,
body.presto-landing .step p,
body.presto-landing .requisito-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.55;
}

body.presto-landing .feature-icon,
body.presto-landing .step-num,
body.presto-landing .requisito-num {
  background: rgba(96, 209, 113, 0.14);
  border: 1px solid rgba(96, 209, 113, 0.30);
  color: var(--primary);
  position: relative;
  z-index: 1;
}

/* ─── Proof / stats ─── */
body.presto-landing .proof-stat {
  text-align: center;
  padding: 32px 20px;
}

body.presto-landing .proof-num {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

body.presto-landing .proof-label {
  color: rgba(255, 255, 255, 0.6);
}

body.presto-landing .proof-foot {
  color: rgba(255, 255, 255, 0.45);
}

/* ─── Simulator ─── */
body.presto-landing .simulator-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

body.presto-landing .sim-step-title {
  color: #fff;
  font-weight: 500;
}

body.presto-landing .sim-step-desc,
body.presto-landing .sim-label {
  color: rgba(255, 255, 255, 0.65);
}

body.presto-landing .sim-step-num {
  background: rgba(96, 209, 113, 0.16);
  border: 1px solid rgba(96, 209, 113, 0.28);
  color: var(--primary);
}

body.presto-landing .sim-range {
  background: rgba(255, 255, 255, 0.08);
}

body.presto-landing .sim-range-value {
  color: #fff;
}

body.presto-landing .sim-range-cap {
  color: rgba(255, 255, 255, 0.5);
}

body.presto-landing .sim-cuota-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

body.presto-landing .sim-cuota-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

body.presto-landing .sim-cuota-btn.is-selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #06070d;
}

body.presto-landing .simulator-result {
  background: linear-gradient(160deg, rgba(96, 209, 113, 0.18) 0%, rgba(96, 209, 113, 0.04) 100%);
  border: 1px solid rgba(96, 209, 113, 0.28);
}

body.presto-landing .sim-result-eyebrow,
body.presto-landing .sim-result-plazo,
body.presto-landing .sim-result-label {
  color: rgba(255, 255, 255, 0.78);
}

body.presto-landing .sim-result-cuota,
body.presto-landing .sim-result-total {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

body.presto-landing .sim-result-dl dt {
  color: rgba(255, 255, 255, 0.6);
}

body.presto-landing .sim-result-dl dd {
  color: #fff;
}

body.presto-landing .sim-toggle-breakdown {
  color: var(--primary);
  background: rgba(96, 209, 113, 0.06);
  border: 1px solid rgba(96, 209, 113, 0.18);
}

body.presto-landing .sim-toggle-breakdown:hover {
  background: rgba(96, 209, 113, 0.12);
}

body.presto-landing .sim-breakdown-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

body.presto-landing .sim-breakdown-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

body.presto-landing .sim-disclaimer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
}

body.presto-landing .sim-disclaimer strong {
  color: #fff;
}

body.presto-landing .sim-disclaimer em {
  color: var(--primary);
  font-style: normal;
}

body.presto-landing .sim-result-cta {
  background: var(--primary) !important;
  color: #06070d !important;
  border-radius: 999px !important;
}

body.presto-landing .sim-result-cta:hover {
  background: var(--primary-dark) !important;
  color: #06070d !important;
}

/* ─── Lead form (empresas) ─── */
body.presto-landing .lead-kicker {
  color: var(--primary);
  background: rgba(96, 209, 113, 0.10);
  border: 1px solid rgba(96, 209, 113, 0.25);
}

body.presto-landing .lead-perks li {
  color: rgba(255, 255, 255, 0.7);
}

body.presto-landing .lead-perks li::before {
  color: var(--primary);
}

body.presto-landing .lead-form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

body.presto-landing .lead-form-title {
  color: #fff;
}

body.presto-landing .lead-form-intro {
  color: rgba(255, 255, 255, 0.65);
}

body.presto-landing .form-contacto .form-group label {
  color: rgba(255, 255, 255, 0.85);
}

body.presto-landing .form-contacto .form-group input[type="text"],
body.presto-landing .form-contacto .form-group input[type="email"],
body.presto-landing .form-contacto .form-group input[type="tel"],
body.presto-landing .form-contacto .form-group select,
body.presto-landing .form-contacto .form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 12px;
}

body.presto-landing .form-contacto .form-group input::placeholder,
body.presto-landing .form-contacto .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

body.presto-landing .form-contacto .form-group input:focus,
body.presto-landing .form-contacto .form-group select:focus,
body.presto-landing .form-contacto .form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(96, 209, 113, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

body.presto-landing .form-contacto .form-field-hint {
  color: rgba(255, 255, 255, 0.45);
}

body.presto-landing .form-contacto .form-check span {
  color: rgba(255, 255, 255, 0.7);
}

body.presto-landing .form-contacto .form-check a {
  color: var(--primary);
}

body.presto-landing .lead-form-card .optional {
  color: rgba(255, 255, 255, 0.5);
}

body.presto-landing .form-message-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.32);
  color: #dcfce7;
}

body.presto-landing .form-message-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.32);
  color: #fee2e2;
}

body.presto-landing .btn-contacto-submit {
  background: var(--primary) !important;
  color: #06070d !important;
}

body.presto-landing .btn-contacto-submit:hover {
  background: var(--primary-dark) !important;
}

/* ─── FAQ ─── */
body.presto-landing .faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  margin-bottom: 12px;
}

body.presto-landing .faq-item summary {
  color: #fff;
  padding: 22px 26px;
}

body.presto-landing .faq-item p {
  padding: 0 26px 4px;
  color: rgba(255, 255, 255, 0.65);
}

body.presto-landing .faq-item summary::after {
  color: var(--primary);
}

body.presto-landing .faq-item a {
  color: var(--primary);
}

body.presto-landing .faq-foot {
  color: rgba(255, 255, 255, 0.55);
}

body.presto-landing .faq-foot a {
  color: var(--primary);
}

/* ─── CTA final ─── */
body.presto-landing .cta {
  padding: 100px 24px;
}

body.presto-landing .cta-bg {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(96, 209, 113, 0.16), transparent 70%);
  opacity: 1;
}

body.presto-landing .cta-eyebrow {
  color: var(--primary);
}

body.presto-landing .cta-title {
  color: #fff;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.025em;
  background: none;
  -webkit-text-fill-color: #fff;
}

body.presto-landing .cta-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

body.presto-landing .store-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 14px;
}

body.presto-landing .store-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.28);
}

body.presto-landing .store-btn .store-label {
  color: rgba(255, 255, 255, 0.55);
}

body.presto-landing .store-btn .store-name {
  color: #fff;
}

/* ─── Footer ─── */
body.presto-landing .footer {
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
}

body.presto-landing .footer-tagline,
body.presto-landing .footer-copy {
  color: rgba(255, 255, 255, 0.55);
}

body.presto-landing .footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

body.presto-landing .footer-links a:hover {
  color: var(--primary);
}

/* ─── Padding genérico de secciones (más aire estilo Affirm) ─── */
body.presto-landing .features,
body.presto-landing .how,
body.presto-landing .proof,
body.presto-landing .requisitos,
body.presto-landing .faq {
  padding: 96px 24px;
}

body.presto-landing .lead {
  padding: 96px 24px;
}

body.presto-landing .simulator {
  padding: 64px 24px 96px;
}

/* ═══════════════════════════════════════════════════════════════
   AFFIRM REDESIGN v2 — minimalista con foco visual
   Hero simplificado + phone mockup + floating cards.
   ═══════════════════════════════════════════════════════════════ */

@keyframes presto-float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}

@keyframes presto-glow-pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.85; transform: translate(-50%, -50%) scale(1.08); }
}

/* ─── Hero v2: 2 columnas (copy + phone), centrado vertical ─── */
body.presto-landing .hero {
  padding: 160px 24px 80px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

body.presto-landing .hero > .hero-layout {
  width: 100%;
  flex: 0 0 auto;
}

body.presto-landing .hero-bg {
  background: transparent;
}

body.presto-landing .hero-layout {
  grid-template-columns: 1fr;
  max-width: 1200px;
  gap: 60px;
  align-items: center;
}

body.presto-landing .hero-copy {
  margin: 0 auto;
  max-width: 560px;
  text-align: center;
}

@media (min-width: 1024px) {
  body.presto-landing .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: 80px;
    align-items: center;
    max-width: 1200px;
  }
  body.presto-landing .hero-copy {
    text-align: left;
    margin: 0;
    max-width: 560px;
  }
}

body.presto-landing .hero-title {
  color: #fff;
  font-weight: 200;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  max-width: 12ch;
  text-align: inherit;
  background: none;
  -webkit-text-fill-color: #fff;
}

@media (min-width: 1024px) {
  body.presto-landing .hero-title {
    margin: 0 0 28px;
  }
}

body.presto-landing .hero-title-accent {
  color: var(--primary);
  font-weight: 300;
  background: none;
  -webkit-text-fill-color: var(--primary);
}

body.presto-landing .hero-lead {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.18rem;
  line-height: 1.55;
  max-width: 48ch;
  margin: 0 auto 36px;
  font-weight: 400;
}

@media (min-width: 1024px) {
  body.presto-landing .hero-lead {
    margin: 0 0 40px;
  }
}

body.presto-landing .hero-cta-row {
  justify-content: center;
  margin-top: 0;
  flex-wrap: wrap;
  gap: 14px;
}

@media (min-width: 1024px) {
  body.presto-landing .hero-cta-row {
    justify-content: flex-start;
  }
}

body.presto-landing .hero-quick-link {
  display: inline-block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

body.presto-landing .hero-quick-link:hover {
  color: var(--primary);
  text-decoration: none;
}

/* ─── Hero microtrust: línea sutil debajo del hero entero ─── */
body.presto-landing .hero-microtrust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  margin: 64px auto 0;
  padding: 28px 24px 0;
  width: 100%;
  max-width: 1080px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

body.presto-landing .hero-microtrust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.presto-landing .hero-microtrust .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(96, 209, 113, 0.6);
}

/* ─── Phone visual stage ─── */
body.presto-landing .hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
}

body.presto-landing .phone-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glow detrás del teléfono */
body.presto-landing .phone-stage::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 209, 113, 0.28) 0%, rgba(96, 209, 113, 0.08) 40%, transparent 70%);
  filter: blur(40px);
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: presto-glow-pulse 6s ease-in-out infinite;
  pointer-events: none;
}

/* Phone frame */
body.presto-landing .phone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(180deg, #1a1a25 0%, #0e0e18 100%);
  border-radius: 44px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.6),
    0 50px 120px rgba(0, 0, 0, 0.7),
    0 30px 60px rgba(96, 209, 113, 0.10);
  z-index: 2;
}

body.presto-landing .phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #06070d;
  border-radius: 12px;
  z-index: 3;
}

body.presto-landing .phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0d0d18 0%, #0a0a14 100%);
  border-radius: 32px;
  padding: 48px 18px 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.presto-landing .phone-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}

body.presto-landing .phone-brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}

body.presto-landing .phone-bell {
  color: rgba(255, 255, 255, 0.5);
  display: inline-flex;
}

body.presto-landing .phone-greeting {
  margin: 8px 4px 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

body.presto-landing .phone-sub {
  margin: 0 4px 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

body.presto-landing .phone-card-main {
  background: linear-gradient(150deg, rgba(96, 209, 113, 0.20) 0%, rgba(96, 209, 113, 0.04) 100%);
  border: 1px solid rgba(96, 209, 113, 0.35);
  border-radius: 18px;
  padding: 16px 16px 14px;
  position: relative;
  overflow: hidden;
}

body.presto-landing .phone-card-main::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(96, 209, 113, 0.30), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

body.presto-landing .phone-tag {
  display: inline-block;
  padding: 3px 9px;
  background: rgba(96, 209, 113, 0.20);
  border: 1px solid rgba(96, 209, 113, 0.45);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

body.presto-landing .phone-amount {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

body.presto-landing .phone-amount-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-left: 4px;
}

body.presto-landing .phone-period {
  margin: 4px 0 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
}

body.presto-landing .phone-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.10);
}

body.presto-landing .phone-row strong {
  color: #fff;
  font-weight: 600;
}

body.presto-landing .phone-row--total {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 8px;
  margin-top: 2px;
}

body.presto-landing .phone-row--total strong {
  color: var(--primary);
}

body.presto-landing .phone-cta {
  width: 100%;
  margin-top: 12px;
  padding: 11px 14px;
  background: var(--primary);
  color: #06070d;
  border: none;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: default;
  box-shadow: 0 8px 24px rgba(96, 209, 113, 0.30);
}

body.presto-landing .phone-mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
}

body.presto-landing .phone-mini-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #06070d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.presto-landing .phone-mini-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body.presto-landing .phone-mini-body strong {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
}

body.presto-landing .phone-mini-body span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
}

/* ─── Floating accent cards alrededor del teléfono ─── */
body.presto-landing .float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(20, 22, 32, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  animation: presto-float 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

body.presto-landing .float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(96, 209, 113, 0.16);
  border: 1px solid rgba(96, 209, 113, 0.32);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.presto-landing .float-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body.presto-landing .float-card-body strong {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

body.presto-landing .float-card-body span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

body.presto-landing .float-card--1 {
  top: 30px;
  left: -20px;
  --rot: -3deg;
}

body.presto-landing .float-card--2 {
  bottom: 80px;
  right: -30px;
  --rot: 3deg;
}

body.presto-landing .float-card--3 {
  bottom: 0;
  left: -10px;
  --rot: -2deg;
}

@media (max-width: 1023px) {
  body.presto-landing .hero-visual {
    min-height: 640px;
    margin-top: 16px;
  }
  body.presto-landing .float-card--1 { top: 60px; left: max(8vw, 20px); }
  body.presto-landing .float-card--2 { bottom: 100px; right: max(8vw, 20px); }
  body.presto-landing .float-card--3 { bottom: 30px; left: max(15vw, 40px); }
}

@media (max-width: 600px) {
  body.presto-landing .hero {
    padding: 120px 20px 40px;
  }
  body.presto-landing .phone-stage {
    height: 540px;
    transform: scale(0.95);
  }
  body.presto-landing .float-card {
    padding: 10px 12px;
    gap: 8px;
  }
  body.presto-landing .float-card-icon {
    width: 30px;
    height: 30px;
  }
  body.presto-landing .float-card-body strong {
    font-size: 0.78rem;
  }
  body.presto-landing .float-card-body span {
    font-size: 0.65rem;
  }
  body.presto-landing .hero-microtrust {
    gap: 14px;
    font-size: 0.78rem;
    margin-top: 40px;
  }
}

/* ─── Refinamiento global de secciones (más respiración) ─── */
body.presto-landing .features,
body.presto-landing .how,
body.presto-landing .proof,
body.presto-landing .requisitos,
body.presto-landing .faq,
body.presto-landing .lead {
  padding: 120px 24px;
}

body.presto-landing .simulator {
  padding: 80px 24px 120px;
}

body.presto-landing .section-head {
  margin-bottom: 64px;
}

body.presto-landing .section-title {
  font-weight: 200;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  letter-spacing: -0.03em;
}

body.presto-landing .section-subtitle {
  font-size: 1.08rem;
  margin-top: 18px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Tarjetas: bordes más sutiles, padding mayor, foco visual ─── */
body.presto-landing .feature-card,
body.presto-landing .step,
body.presto-landing .requisito-card {
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

body.presto-landing .feature-card:hover,
body.presto-landing .step:hover,
body.presto-landing .requisito-card:hover {
  border-color: rgba(96, 209, 113, 0.40);
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(96, 209, 113, 0.15);
}

body.presto-landing .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(96, 209, 113, 0.12);
  border: 1px solid rgba(96, 209, 113, 0.28);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

body.presto-landing .feature-icon svg {
  width: 26px;
  height: 26px;
}

body.presto-landing .feature-card h3,
body.presto-landing .step h3,
body.presto-landing .requisito-card h3 {
  font-size: 1.32rem;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}

body.presto-landing .feature-card p,
body.presto-landing .step p,
body.presto-landing .requisito-card p {
  font-size: 0.98rem;
  line-height: 1.6;
}

body.presto-landing .step-num,
body.presto-landing .requisito-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
}

/* Proof stat: tipografía más impactante */
body.presto-landing .proof-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1;
}

body.presto-landing .proof-stat {
  padding: 40px 24px;
  border-radius: 22px;
}

/* ─── CTA final: limpia y centrada estilo Affirm ─── */
body.presto-landing .cta {
  padding: 140px 24px;
}

body.presto-landing .cta-bg {
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(96, 209, 113, 0.18), transparent 70%);
  opacity: 1;
}

body.presto-landing .cta-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(96, 209, 113, 0.12);
  border: 1px solid rgba(96, 209, 113, 0.30);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

body.presto-landing .cta-title {
  font-weight: 200;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 16ch;
  margin: 0 auto 20px;
}

body.presto-landing .cta-subtitle {
  font-size: 1.12rem;
  max-width: 52ch;
  margin: 0 auto 40px;
}

/* Footer con dot verde antes del divider */
body.presto-landing .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 24px 32px;
}

/* Reducir motion */
@media (prefers-reduced-motion: reduce) {
  body.presto-landing .float-card,
  body.presto-landing .phone-stage::before {
    animation: none;
  }
}
