/* ============================================
   SUCHI — Landing page stylesheet (V4 — Moderno + balance funcional/emocional)
   ============================================ */

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

:root {
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-tint: #EFF6FF;
  --bg-card: #FFFFFF;
  --primary: #2563EB;
  --primary-soft: #3B82F6;
  --primary-tint: #DBEAFE;
  --primary-deep: #1E40AF;
  --accent: #F97316;
  --accent-soft: #FB923C;
  --accent-tint: #FFEDD5;
  --ink: #0F172A;
  --ink-soft: #475569;
  --ink-muted: #64748B;
  --line: #E2E8F0;
  --line-soft: #F1F5F9;
  --success: #15803D;
  --whatsapp: #25D366;

  --font-heading: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-num: 'JetBrains Mono', 'Inter', monospace;

  --container: 1200px;
  --container-narrow: 820px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 4px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 48px -20px rgba(37, 99, 235, 0.22), 0 8px 20px -8px rgba(15, 23, 42, 0.10);
  --shadow-xl: 0 40px 80px -24px rgba(37, 99, 235, 0.30), 0 16px 32px -8px rgba(15, 23, 42, 0.16);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
figure { margin: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); }
.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: var(--ink); color: #FFFFFF; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--accent-soft); }
.eyebrow-accent { color: var(--accent); }

.section-head { max-width: 780px; margin: 0 auto 72px; text-align: center; }
.section-head-light h2, .section-head-light p { color: #FFFFFF; }
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.section-head-light .section-title { color: #FFFFFF; }
.section-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-dot { width: 12px; height: 12px; background: var(--accent); border-radius: 3px; display: inline-block; }
.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 12px;
  transition: all 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn .material-icons { font-size: 20px; }
.btn-sm { padding: 10px 18px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-accent {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 8px 20px -6px rgba(249, 115, 22, 0.50);
}
.btn-accent:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(249, 115, 22, 0.65);
}
.btn-ghost-light {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links li a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: all 0.15s ease;
}
.nav-links li a:hover { color: var(--primary); background: var(--primary-tint); }
.nav-links li a.btn { color: #FFFFFF; }
.nav-links li a.btn:hover { background: var(--accent-soft); color: #FFFFFF; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.25s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-links.active { transform: translateY(0); }
  .nav-links li a { display: block; padding: 14px; font-size: 15px; }
  .nav-links li a.btn { text-align: center; margin-top: 8px; }
}

/* HERO */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--ink);
  color: #FFFFFF;
  overflow: hidden;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: #94A3B8;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #94A3B8;
}
.hero-trust .material-icons { font-size: 18px; color: var(--accent); }

.hero-visual { position: relative; }
.hero-shot-wrap { position: relative; }
.hero-shot-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.45) 0%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
}
.hero-shot {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 48px 96px -24px rgba(0,0,0,0.55), 0 16px 32px -12px rgba(0,0,0,0.30);
  border: 1px solid rgba(255,255,255,0.10);
}
.hero-shot-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  z-index: 2;
  background: #FFFFFF;
  color: var(--ink);
  padding: 14px 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
}
.hero-shot-badge .material-icons { color: var(--accent); font-size: 28px; }
.hero-shot-badge strong { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--ink); }
.hero-shot-badge span { display: block; font-size: 12px; color: var(--ink-muted); margin-top: 2px; }

@media (max-width: 960px) {
  .hero { padding: 120px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-shot-badge { left: 50%; transform: translateX(-50%); }
}

.hero-stats-bar {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
  margin-top: 80px;
}
.hero-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hero-stat .num {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat .label {
  font-size: 12.5px;
  font-weight: 500;
  color: #94A3B8;
  margin-top: 6px;
}
@media (max-width: 760px) {
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* DOLOR */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all 0.2s ease;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}
.pain-icon {
  font-size: 28px !important;
  color: var(--accent);
  margin-bottom: 12px;
}
.pain-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}
.pain-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
@media (max-width: 900px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-closing {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-tint);
  border-radius: 20px;
}
.pain-closing p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.4;
  color: var(--ink);
}
.pain-closing-accent { color: var(--primary); }

/* RESULTADO */
.result-list {
  max-width: 760px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 36px;
}
.result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
}
.result-item .material-icons {
  color: var(--accent);
  font-size: 26px;
  flex-shrink: 0;
}
@media (max-width: 640px) { .result-list { grid-template-columns: 1fr; } }
.result-closing { text-align: center; }
.result-closing p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* BENEFICIOS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.2s ease;
  position: relative;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-soft);
}
.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon-wrap .material-icons {
  font-size: 28px;
  color: var(--primary);
}
.benefit-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits-grid { grid-template-columns: 1fr; } }

/* MÓDULOS */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.2s ease;
  position: relative;
}
.module-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
}
.module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.module-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.12em;
}
.module-icon {
  font-size: 28px !important;
  color: var(--primary);
}
.module-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}
.module-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}
@media (max-width: 1100px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .modules-grid { grid-template-columns: 1fr; } }

/* GALERÍA */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery-tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-tint);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.gallery-item figcaption strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.gallery-item figcaption span:last-child {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.4;
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }

/* CÓMO FUNCIONA (timeline) */
.how-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  position: relative;
}
.how-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-tint) 0%, var(--primary-soft) 50%, var(--primary-tint) 100%);
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 6px;
}
.how-step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.20);
  transition: all 0.2s ease;
}
.how-step:hover .how-step-num {
  background: var(--primary);
  color: #FFFFFF;
  transform: scale(1.05);
}
.how-step h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 6px;
}
.how-step p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .how-timeline { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .how-timeline::before { display: none; }
}
@media (max-width: 480px) { .how-timeline { grid-template-columns: 1fr; } }

/* COMPARATIVA VISUAL */
.compare-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
.compare-col {
  border-radius: 20px;
  padding: 32px;
}
.compare-before {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.compare-after {
  background: var(--primary);
  border: 1px solid var(--primary-soft);
  box-shadow: 0 24px 48px -16px rgba(37, 99, 235, 0.45);
}
.compare-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
}
.compare-before .compare-col-head { color: #94A3B8; }
.compare-before .compare-col-head .material-icons {
  background: rgba(148, 163, 184, 0.15);
  color: #94A3B8;
}
.compare-after .compare-col-head { color: #FFFFFF; }
.compare-after .compare-col-head .material-icons {
  background: var(--accent);
  color: #FFFFFF;
}
.compare-col-head .material-icons {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.compare-col ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
}
.compare-before ul li { color: #94A3B8; }
.compare-before ul li .material-icons { color: #94A3B8; font-size: 20px; }
.compare-after ul li { color: #FFFFFF; }
.compare-after ul li .material-icons { color: var(--accent); font-size: 20px; }
.compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-arrow .material-icons {
  font-size: 36px;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.15);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 760px) {
  .compare-visual { grid-template-columns: 1fr; gap: 16px; }
  .compare-arrow { transform: rotate(90deg); }
  .compare-arrow .material-icons { width: 44px; height: 44px; font-size: 28px; }
}

/* ROI */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.roi-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s ease;
}
.roi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.roi-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roi-icon .material-icons { font-size: 28px; }
.roi-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 16px;
}
.roi-arrow .material-icons {
  font-size: 24px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.roi-result {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
@media (max-width: 900px) { .roi-grid { grid-template-columns: 1fr; } }
.roi-closing {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-tint);
  border-radius: 20px;
}
.roi-closing p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--ink);
  line-height: 1.3;
}
.roi-accent { color: var(--accent); }

/* CONFIANZA */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-item {
  text-align: left;
  padding: 0;
}
.trust-item .material-icons {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 14px;
  padding: 12px;
  background: var(--primary-tint);
  border-radius: 12px;
  width: fit-content;
}
.trust-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
}
.trust-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }

/* PRECIO */
.pricing-wrap { max-width: 580px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
}
.pricing-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.pricing-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-price .currency {
  font-family: var(--font-num);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink-soft);
}
.pricing-price .amount {
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 84px;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-price .period {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink-muted);
}
.pricing-equiv {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
}
.pricing-divider { height: 1px; background: var(--line); margin: 24px 0; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 8px 0;
  line-height: 1.5;
}
.pricing-features li strong { color: var(--ink); font-weight: 600; }
.pricing-features .material-icons {
  color: var(--success);
  font-size: 19px;
  margin-top: 1px;
  flex-shrink: 0;
}
.pricing-card .btn { margin: 4px 0 0; }
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  padding: 20px 24px;
  border-radius: 14px;
  margin-top: 24px;
}
.pricing-guarantee .material-icons {
  font-size: 32px;
  color: var(--accent);
  flex-shrink: 0;
}
.pricing-guarantee strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 2px;
}
.pricing-guarantee span {
  font-size: 13px;
  color: #C9D4E5;
  line-height: 1.5;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--primary-soft); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .material-icons {
  color: var(--accent);
  font-size: 24px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary .material-icons { transform: rotate(180deg); }
.faq-answer {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-answer p { margin: 0; }

/* CTA FINAL */
.cta-final { padding: 96px 0; background: var(--bg-soft); }
.cta-card {
  background: var(--ink);
  border-radius: 28px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.30) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.6;
  color: #94A3B8;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-card .hero-cta {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin-bottom: 40px;
}
.cta-contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.cta-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: #C9D4E5;
}
.cta-contact-item .material-icons {
  font-size: 22px;
  color: var(--accent);
}
@media (max-width: 760px) {
  .cta-card { padding: 48px 28px; }
  .cta-contact-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: #94A3B8;
  padding: 56px 0 24px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .brand-name { color: #FFFFFF; }
.footer-brand p {
  font-size: 14px;
  margin-top: 12px;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links a {
  font-size: 14px;
  color: #94A3B8;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 12.5px;
  color: #64748B;
}
@media (max-width: 600px) {
  .footer-content { flex-direction: column; }
}

/* WHATSAPP FLOATING */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: var(--whatsapp);
  color: #FFFFFF;
  border-radius: 999px;
  padding: 14px 22px 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55), 0 6px 12px -4px rgba(0,0,0,0.20);
  transition: all 0.2s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-2px) scale(1.03); }
.wa-float .material-icons { font-size: 26px; }
.wa-float-label { display: inline-block; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55), 0 6px 12px -4px rgba(0,0,0,0.20), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55), 0 6px 12px -4px rgba(0,0,0,0.20), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 560px) {
  .wa-float { padding: 12px 18px 12px 14px; bottom: 16px; right: 16px; }
  .wa-float-label { display: none; }
  .wa-float .material-icons { font-size: 24px; }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-content {
  max-width: 90vw;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  box-shadow: 0 40px 80px -16px rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.10);
}
.lightbox-content figcaption {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.10);
  color: #FFFFFF;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
  border: 1px solid rgba(255,255,255,0.18);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close .material-icons, .lightbox-prev .material-icons, .lightbox-next .material-icons { font-size: 24px; }
@media (max-width: 560px) {
  .lightbox { padding: 16px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-close { width: 40px; height: 40px; top: 16px; right: 16px; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}