:root {
  --violet: #6B3FA0;
  --violet-deep: #4A2970;
  --violet-light: #9B6FD0;
  --violet-glow: #C4A4F0;
  --cream: #FDF8F2;
  --gold: #D4A853;
  --gold-light: #F0C878;
  --coral: #E8734A;
  --dark: #1A1025;
  --dark-mid: #2D1F42;
  --text: #3D2B5E;
  --text-light: #7A6190;
  --white: #FFFFFF;
  --border: rgba(107,63,160,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
/*
 * Z-index map:
 *   nav bar        → 1000  (always on top)
 *   mobile overlay → 999   (below nav bar, above all page content)
 *   page content   → 1 or auto
 */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  /*
   * backdrop-filter intentionally removed from nav itself.
   * If nav has backdrop-filter it becomes a containing block for
   * position:fixed children, which breaks the mobile overlay height.
   * The blur is applied via ::before instead.
   */
  border-bottom: 1px solid rgba(107,63,160,0.08);
}
/* Provides the frosted-glass look without affecting fixed children */
nav::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(253,248,242,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--violet); }
.nav-cta {
  background: rgba(107,63,160,0.10) !important;
  color: var(--violet) !important;
  border: 1px solid rgba(107,63,160,0.28) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.nav-cta:hover {
  background: rgba(107,63,160,0.18) !important;
  border-color: rgba(107,63,160,0.45) !important;
  transform: translateY(-1px);
}

/* ── Hamburger button ── */
.nav-hamburger {
  display: none;           /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  flex-shrink: 0;          /* never squish in flex row */
  transition: background 0.2s;
  /* lives in nav stacking context — no extra z-index needed */
}
.nav-hamburger:hover { background: rgba(107,63,160,0.08); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--violet);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px;
  padding: 120px 6% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(107,63,160,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,168,83,0.1) 0%, transparent 50%);
}
.hero-bg-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,63,160,0.08) 0%, transparent 70%);
  right: -100px; top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.hero-content {
  position: relative; z-index: 1;
  flex: 1 1 0;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(107,63,160,0.08);
  border: 1px solid rgba(107,63,160,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 em {
  font-style: italic;
  color: var(--violet);
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-ctas {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(107,63,160,0.10);
  color: var(--violet);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(107,63,160,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(107,63,160,0.12), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: all 0.25s;
}
.btn-primary:hover {
  background: rgba(107,63,160,0.18);
  border-color: rgba(107,63,160,0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(107,63,160,0.22), inset 0 1px 0 rgba(255,255,255,0.6);
}
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--violet); }
.btn-secondary .play-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.2s;
}
.btn-secondary:hover .play-icon { border-color: var(--violet); color: var(--violet); }

.hero-note {
  font-size: 0.8rem;
  color: var(--text-light);
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-note span { color: var(--violet); font-weight: 600; }


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ─── HERO VISUAL (avatar) ─── */
.hero-visual {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  animation: heroVisualIn 0.9s 0.2s ease both;
}

@keyframes heroVisualIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-avatar-frame {
  position: relative;
  width: 380px;
}

/* Soft violet glow blob behind the image */
.hero-avatar-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,63,160,0.18) 0%, rgba(212,168,83,0.06) 50%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Outer ring: carries the glow shadow, no hard border */
.hero-avatar-ring {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  box-shadow:
    0 0 0 2px rgba(107,63,160,0.10),
    0 20px 60px rgba(107,63,160,0.28),
    0 8px 30px rgba(0,0,0,0.08);
}

/* Circle crop with soft mask fade to blend into hero background */
.hero-avatar-img-wrap {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-mask-image: radial-gradient(circle at center, black 58%, transparent 85%);
  mask-image: radial-gradient(circle at center, black 58%, transparent 85%);
}

.hero-avatar-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

/* Floating info badges */
.hero-avatar-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(107,63,160,0.12);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(107,63,160,0.12);
  white-space: nowrap;
  z-index: 2;
}
.badge-online   { top: 32px; right: -20px; animation: float 4s ease-in-out infinite; }
.badge-delivery { bottom: 52px; left: -20px; animation: float 4s ease-in-out infinite 1.8s; }

/* ─── SECTION BASE ─── */
section { padding: 96px 5%; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--gold);
}

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
h2 em {
  font-style: italic;
  color: var(--violet);
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 560px;
}

/* ─── DOLOR ─── */
#dolor {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#dolor::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(107,63,160,0.2) 0%, transparent 60%);
}
#dolor .section-label { color: var(--gold); }
#dolor .section-label::before { background: var(--gold); }
#dolor h2 { color: white; }
#dolor h2 em { color: var(--gold); }

.dolor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  position: relative; z-index: 1;
}

.dolor-list {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 40px;
}

.dolor-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: all 0.2s;
  cursor: default;
}
.dolor-item:hover {
  background: rgba(107,63,160,0.15);
  border-color: rgba(107,63,160,0.3);
  transform: translateX(4px);
}
.dolor-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.dolor-item-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}
.dolor-item-text strong {
  color: white;
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

.dolor-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 40px;
  position: sticky; top: 120px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
}

.dsc-top { flex-shrink: 0; }

.dolor-stat-big {
  font-family: 'Fraunces', serif;
  font-size: 6rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.dolor-stat-big span {
  font-size: 2.5rem;
  color: var(--gold);
  vertical-align: super;
}
.dolor-stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
}
.dolor-stat-label strong { color: rgba(255,255,255,0.90); font-weight: 600; }

/* Divider lines */
.dsc-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12) 30%, rgba(196,164,240,0.2) 60%, transparent);
  margin: 28px 0;
  flex-shrink: 0;
}

/* Mini stats row */
.dsc-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-shrink: 0;
}
.dsc-mini {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dsc-mini-num {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--violet-glow);
  line-height: 1;
}
.dsc-mini-num span {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 500;
}
.dsc-mini-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.45;
}
.dsc-mini-sep {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12) 30%, rgba(196,164,240,0.2) 70%, transparent);
  margin: 0 24px;
  flex-shrink: 0;
}

/* Quote — pushed to bottom */
.dolor-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.dolor-quote small {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.30);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
}

/* ─── CÓMO FUNCIONA ─── */
#como {
  background: linear-gradient(160deg, #ffffff 0%, #f8f4ff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.como-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.como-header .section-intro { margin: 0 auto; text-align: center; }

.pasos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.pasos::before {
  content: '';
  position: absolute;
  top: 44px; left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--violet-glow), var(--gold-light));
  z-index: 0;
}

.paso {
  padding: 36px 28px;
  text-align: center;
  position: relative; z-index: 1;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(107, 63, 160, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.paso::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,63,160,0.25), transparent);
  border-radius: 1px;
}
.paso:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(107, 63, 160, 0.1);
  border-color: rgba(107, 63, 160, 0.22);
}
.paso-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
}
.paso:nth-child(1) .paso-num { background: var(--violet); color: white; }
.paso:nth-child(2) .paso-num { background: var(--gold); color: white; }
.paso:nth-child(3) .paso-num { background: var(--coral); color: white; }

.paso-emoji { font-size: 1.8rem; margin-bottom: 12px; }
.paso h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.paso p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* ─── SERVICIOS ─── */
#servicios {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Ambient glow orbs behind the cards */
#servicios::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,63,160,0.35) 0%, transparent 70%);
  top: -100px; left: -150px;
  pointer-events: none;
}
#servicios::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.2) 0%, transparent 70%);
  bottom: -80px; right: -100px;
  pointer-events: none;
}

/* Subtle grid overlay for techy feel */
#servicios .servicios-inner {
  position: relative; z-index: 1;
}

.servicios-header {
  margin-bottom: 48px;
}
#servicios .servicios-header .section-label { color: var(--gold-light); }
#servicios .servicios-header .section-label::before { background: var(--gold-light); }
#servicios .servicios-header h2 { color: white; }
#servicios .servicios-header h2 em { color: var(--violet-glow); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  position: relative; z-index: 1;
}

/* ── Glass card base ── */
.service-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Inner shimmer line at top */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(107,63,160,0.5);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.4),
    0 0 40px rgba(107,63,160,0.2),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ── Popular card — violet glass tint ── */
.service-card.popular {
  background: rgba(107,63,160,0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(155,111,208,0.5);
  transform: scale(1.03);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.4),
    0 0 60px rgba(107,63,160,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.service-card.popular::before {
  background: linear-gradient(90deg, transparent, rgba(196,164,240,0.5), transparent);
}
.service-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
  background: rgba(107,63,160,0.45);
  border-color: rgba(196,164,240,0.7);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.5),
    0 0 80px rgba(107,63,160,0.4),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.popular-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(212,168,83,0.4);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 8px;
}
.service-card.popular h3 { color: white; }
.service-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  line-height: 1.5;
}
.service-card.popular .service-tagline { color: rgba(255,255,255,0.7); }

.service-price {
  margin-bottom: 24px;
}
.price-main {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.price-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.service-card.popular .price-note { color: rgba(255,255,255,0.6); }

.service-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.service-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}
.service-card.popular .service-features li { color: rgba(255,255,255,0.85); }
.service-features li::before {
  content: '✓';
  color: var(--violet-glow);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-card.popular .service-features li::before { color: var(--gold-light); }

.btn-card {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-card-outline {
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-card-outline:hover {
  border-color: rgba(196,164,240,0.5);
  background: rgba(107,63,160,0.18);
  color: white;
  box-shadow: 0 4px 20px rgba(107,63,160,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-card-white {
  background: rgba(255,255,255,0.14);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 20px rgba(0,0,0,0.1);
}
.btn-card-white:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 8px 28px rgba(0,0,0,0.15);
}

/* ─── CONFIANZA ─── */
#confianza {
  background: linear-gradient(160deg, #ffffff 0%, #fffbf2 60%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.confianza-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-row {
  display: flex; gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.stat-item {}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--violet);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 4px;
}

.founder-bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
}
.founder-bio strong { color: var(--text); }

.lead-magnet-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(107, 63, 160, 0.14);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(107, 63, 160, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.lead-magnet-card:hover {
  border-color: rgba(107, 63, 160, 0.24);
  box-shadow: 0 32px 80px rgba(107, 63, 160, 0.13), inset 0 1px 0 rgba(255,255,255,0.9);
}
.lead-magnet-card::before {
  content: '📥';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 5rem;
  opacity: 0.1;
}
.lead-magnet-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.lead-magnet-label::before { content: ''; width: 16px; height: 2px; background: var(--gold); }
.lead-magnet-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.lead-magnet-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-row {
  display: flex; flex-direction: column; gap: 12px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--violet); }
.form-input::placeholder { color: rgba(122,97,144,0.5); }
.btn-form {
  background: rgba(212,168,83,0.12);
  color: var(--gold);
  border: 1px solid rgba(212,168,83,0.35);
  padding: 14px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.btn-form:hover {
  background: rgba(212,168,83,0.22);
  border-color: rgba(212,168,83,0.55);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,168,83,0.2), inset 0 1px 0 rgba(255,255,255,0.5);
}

/* ─── FAQ ─── */
#faq {
  background: linear-gradient(180deg, var(--cream) 0%, #f5f0ff 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.faq-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 56px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(107, 63, 160, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
  border-color: rgba(107, 63, 160, 0.22);
  box-shadow: 0 8px 32px rgba(107, 63, 160, 0.07);
}
.faq-q {
  padding: 22px 28px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  user-select: none;
  transition: background 0.15s;
  gap: 16px;
}
.faq-q:hover { background: rgba(107,63,160,0.03); }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--violet);
  flex-shrink: 0;
  transition: all 0.2s;
  font-weight: 300;
}
.faq-item.open .faq-toggle {
  background: var(--violet);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  padding: 0 28px;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 28px 22px;
}

/* ─── CTA FINAL ─── */
#cta-final {
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(107,63,160,0.25) 0%, transparent 60%);
}
#cta-final h2 { color: white; position: relative; z-index: 1; }
#cta-final h2 em { color: var(--gold-light); }
.cta-final-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.cta-final-btns {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  position: relative; z-index: 1;
  margin-bottom: 20px;
}
.btn-cta-final {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,168,83,0.15);
  color: var(--gold-light);
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid rgba(212,168,83,0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 28px rgba(212,168,83,0.15), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: all 0.25s;
}
.btn-cta-final:hover {
  background: rgba(212,168,83,0.25);
  border-color: rgba(212,168,83,0.65);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212,168,83,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-cta-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.25s;
}
.btn-cta-wa:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  position: relative; z-index: 1;
}
.cta-note span { color: rgba(255,255,255,0.6); }

/* ─── FOOTER ─── */
footer {
  background: #120D1C;
  padding: 40px 5%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  /* Logo SVG has legible colors on dark bg; slight brightness boost for the tagline */
  filter: brightness(1.15);
}
.footer-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-links {
  display: flex; gap: 24px; list-style: none;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }


/* ─── SECTION PARALLAX ORBS ─── */
.s-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  will-change: transform;
  z-index: 0;
}

/* Hero orbs */
.hero-orb-gold {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,83,0.18) 0%, transparent 70%);
  bottom: -80px; left: -60px;
}

/* Dolor orbs */
.dolor-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,63,160,0.3) 0%, transparent 65%);
  bottom: -100px; left: -80px;
}
.dolor-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,168,83,0.18) 0%, transparent 65%);
  top: -60px; right: -40px;
}

/* Como orbs */
.como-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,63,160,0.08) 0%, transparent 70%);
  top: -120px; right: -100px;
}
.como-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,168,83,0.07) 0%, transparent 70%);
  bottom: -60px; left: 10%;
}

/* Servicios orb */
.servicios-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,83,0.2) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Confianza orbs */
.confianza-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,63,160,0.07) 0%, transparent 70%);
  top: -80px; right: -80px;
}
.confianza-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%);
  bottom: -60px; left: -40px;
}

/* FAQ orb */
.faq-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,63,160,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* CTA Final orbs */
.cta-orb-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(107,63,160,0.35) 0%, transparent 65%);
  top: -100px; left: -100px;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,83,0.22) 0%, transparent 65%);
  bottom: -80px; right: -60px;
}

/* ─── GLOW TEXT on dark-section headings ─── */
#dolor h2 em,
#cta-final h2 em {
  text-shadow: 0 0 40px rgba(212,168,83,0.5);
}
#servicios h2 em {
  text-shadow: 0 0 40px rgba(196,164,240,0.5);
}


/* ─── GLOW on stat numbers on scroll-in ─── */
.stat-num.glow {
  text-shadow: 0 0 30px rgba(107,63,160,0.4);
  transition: text-shadow 0.8s ease;
}

/* ─── HERO: stronger glow behind content ─── */
#hero {
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(107,63,160,0.06) 0%, transparent 60%), var(--cream);
}

/* ─── FLOATING CHAT WIDGET ─── */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

/* Bubble button */
.chat-bubble {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(107,63,160,0.15);
  border: 1px solid rgba(107,63,160,0.30);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--violet);
  position: relative;
  flex-shrink: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(107,63,160,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  animation: chat-pulse 3s ease-in-out infinite;
}
.chat-bubble:hover {
  background: rgba(107,63,160,0.24);
  border-color: rgba(107,63,160,0.48);
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(107,63,160,0.28), inset 0 1px 0 rgba(255,255,255,0.6);
}
@keyframes chat-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(107,63,160,0.18), inset 0 1px 0 rgba(255,255,255,0.6), 0 0 0 0 rgba(107,63,160,0.25); }
  50%       { box-shadow: 0 8px 28px rgba(107,63,160,0.18), inset 0 1px 0 rgba(255,255,255,0.6), 0 0 0 10px rgba(107,63,160,0); }
}
.chat-bubble-dot {
  position: absolute;
  top: 3px; right: 3px;
  width: 13px; height: 13px;
  background: #22C55E;
  border-radius: 50%;
  border: 2.5px solid white;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
}

/* Chat window */
.chat-window {
  width: 340px;
  height: 480px;
  background: rgba(253, 248, 242, 0.45);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(107,63,160,0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(107,63,160,0.14),
    0 8px 24px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  /* Hidden state */
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9) translateY(16px);
  transform-origin: bottom right;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.chat-window.open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1) translateY(0);
}

/* Header */
.chat-header {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(107,63,160,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.chat-header-info {
  display: flex; align-items: center; gap: 11px;
}
.chat-avatar-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(107,63,160,0.3);
}
.chat-header-name {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
.chat-header-status {
  font-size: 0.72rem;
  color: var(--text-light);
  display: flex; align-items: center; gap: 5px;
  margin-top: 3px;
}
.chat-status-dot {
  width: 7px; height: 7px;
  background: #22C55E;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
.chat-minimize {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.18s, background 0.18s;
}
.chat-minimize:hover {
  color: var(--violet);
  background: rgba(107,63,160,0.07);
}

/* Messages area */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(107,63,160,0.2) transparent;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(107,63,160,0.2);
  border-radius: 4px;
}

.chat-msg { display: flex; flex-direction: column; }
.chat-msg-valeria { align-items: flex-start; }
.chat-msg-user    { align-items: flex-end; }

.chat-msg-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.55;
  animation: msg-in 0.22s ease both;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg-valeria .chat-msg-bubble {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(107,63,160,0.1);
  color: var(--text);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(107,63,160,0.07);
}
.chat-msg-user .chat-msg-bubble {
  background: var(--violet);
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 14px rgba(107,63,160,0.35);
}

/* Typing indicator */
.chat-typing .chat-msg-bubble {
  display: flex; align-items: center; gap: 5px;
  padding: 13px 16px;
}
.chat-typing-dot {
  width: 6px; height: 6px;
  background: rgba(107,63,160,0.4);
  border-radius: 50%;
  animation: typing-dot 1.2s ease-in-out infinite;
}
.chat-typing-dot:nth-child(2) { animation-delay: 0.18s; }
.chat-typing-dot:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0);    opacity: 0.4; }
  30%           { transform: translateY(-5px); opacity: 1; }
}

/* Input area */
.chat-input-area {
  padding: 11px 12px;
  border-top: 1px solid rgba(107,63,160,0.1);
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.25);
}
.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(107,63,160,0.18);
  border-radius: 100px;
  padding: 10px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.chat-input:focus {
  border-color: rgba(107,63,160,0.45);
  box-shadow: 0 0 0 3px rgba(107,63,160,0.08);
}
.chat-input::placeholder { color: rgba(107,63,160,0.35); }
.chat-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--violet);
  border: none;
  color: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(107,63,160,0.35);
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
}
.chat-send:hover {
  background: var(--violet-deep);
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(107,63,160,0.5);
}

/* Mobile */
@media (max-width: 480px) {
  .chat-widget { bottom: 18px; right: 16px; }
  .chat-window { width: calc(100vw - 32px); height: 430px; }
}

/* ─── RESPONSIVE ─── */

/* Tablet */
@media (max-width: 1024px) {
  #hero {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 100px 5% 64px;
    gap: 32px;
  }
  .hero-content { max-width: 600px; }
  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-avatar-frame { width: 300px; }
  .hero-avatar-img-wrap { width: 280px; height: 280px; }
  .hero-avatar-img { width: 220px; height: 220px; }
  .hero-ctas { justify-content: center; }
  .hero-note { justify-content: center; }

  .dolor-grid { grid-template-columns: 1fr; }
  .dolor-stat-card { position: static; }

  .cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .service-card.popular { transform: none; }
  .service-card.popular:hover { transform: translateY(-6px); }

  .confianza-grid { grid-template-columns: 1fr; gap: 48px; }

  .pasos { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pasos::before { display: none; }
}

/* Mobile — hamburger menu */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  /*
   * z-index: 999 → above all page content, below nav bar (1000).
   * top: 64px → starts exactly where the nav bar ends.
   * bottom: 0  → fills rest of viewport.
   * backdrop-filter here is safe — this element has no fixed children.
   */
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: rgba(253, 248, 242, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    list-style: none;
    padding: 8px 0 48px;
    border-top: 1px solid var(--border);
    /* hidden state */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  /* Row separators */
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child { border-bottom: none; }

  /* Link rows */
  .nav-links a {
    display: flex;
    align-items: center;
    padding: 20px 6%;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.18s, background 0.18s;
  }
  .nav-links a:hover {
    color: var(--violet);
    background: rgba(107, 63, 160, 0.05);
  }

  /* CTA — pill button, separated from the list */
  .nav-links li:last-child {
    border-bottom: none;
    padding: 20px 6%;
  }
  .nav-cta {
    display: flex !important;
    justify-content: center !important;
    width: 100%;
    padding: 15px 24px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 100px !important;
    background: rgba(107,63,160,0.10) !important;
    color: var(--violet) !important;
    border: 1px solid rgba(107,63,160,0.28) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }
  .nav-cta:hover {
    background: rgba(107,63,160,0.18) !important;
    transform: none !important;
  }
}

/* Small mobile */
@media (max-width: 640px) {
  section { padding: 64px 5%; }

  h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .hero-avatar-frame { width: 240px; }
  .hero-avatar-img-wrap { width: 220px; height: 220px; }
  .hero-avatar-img { width: 172px; height: 172px; }
  .badge-online   { top: 12px; right: -10px; }
  .badge-delivery { bottom: 20px; left: -10px; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary { width: 100%; justify-content: center; }

  .stats-row { flex-wrap: wrap; gap: 24px; }
  .stat-item { flex: 1 1 40%; }

  .dolor-stat-big { font-size: 4.5rem; }

  .faq-list { gap: 8px; }
  .faq-q { padding: 18px 20px; font-size: 0.9rem; }
  .faq-a { padding: 0 20px; }
  .faq-item.open .faq-a { padding: 0 20px 18px; }

  .cta-final-btns { flex-direction: column; align-items: center; }
  .btn-cta-final, .btn-cta-wa { width: 100%; justify-content: center; }

  footer { flex-direction: column; text-align: center; gap: 12px; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }

  .lead-magnet-card { padding: 28px 24px; }
  .confianza-grid { gap: 32px; }
}
