/* Sr. Amado — metodoamado.com/diagnostico-privado (Método Amado®)
   Paleta: negro #0A0A0C · lino #ECE0C6 · azul #204685 · amarillo #F5C518
   Tipografía: Helvetica
   Copia del sistema de diseño de metodoamado.com/consulta-privada + componentes propios (pain-grid) */

:root {
  --negro: #0A0A0C;
  --negro-2: #131316;
  --negro-3: #1b1b20;
  --lino: #ECE0C6;
  --lino-2: #f6f0e0;
  --azul: #204685;
  --azul-2: #1a3868;
  --azul-3: #0f2547;
  --amarillo: #F5C518;
  --amarillo-2: #ffe08a;
  --rosa: #D6698C;
  --rosa-2: #F3AFC7;
  --rojo: #8B1A1A;
  --rojo-2: #C23B3B;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 24px 50px rgba(0,0,0,.45);
  --shadow-gold: 0 18px 40px rgba(245,197,24,.18);
  --ff: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  --stars: radial-gradient(1.4px 1.4px at 10% 20%, rgba(236,224,198,.55) 50%, transparent 52%),
           radial-gradient(1.2px 1.2px at 30% 70%, rgba(236,224,198,.4) 50%, transparent 52%),
           radial-gradient(1.6px 1.6px at 60% 15%, rgba(245,197,24,.5) 50%, transparent 52%),
           radial-gradient(1.2px 1.2px at 80% 55%, rgba(236,224,198,.35) 50%, transparent 52%),
           radial-gradient(1.4px 1.4px at 45% 40%, rgba(236,224,198,.45) 50%, transparent 52%),
           radial-gradient(1.3px 1.3px at 92% 80%, rgba(245,197,24,.4) 50%, transparent 52%),
           radial-gradient(1.5px 1.5px at 15% 85%, rgba(236,224,198,.4) 50%, transparent 52%);
  --stars-size: 260px 260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  margin: 0;
  font-family: var(--ff);
  background: var(--negro);
  color: var(--lino);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 600px at 8% 8%, rgba(32,70,133,.5), transparent 60%),
    radial-gradient(ellipse 700px 500px at 95% 30%, rgba(245,197,24,.08), transparent 60%),
    radial-gradient(ellipse 800px 600px at 15% 85%, rgba(32,70,133,.35), transparent 60%),
    radial-gradient(ellipse 700px 500px at 90% 95%, rgba(245,197,24,.07), transparent 60%),
    linear-gradient(180deg, var(--negro) 0%, var(--negro-2) 50%, var(--negro) 100%);
  animation: backdrop-drift 40s ease-in-out infinite alternate;
}
@keyframes backdrop-drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-1.5%, 1.5%, 0) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  background-image: var(--grain);
  opacity: .035;
  mix-blend-mode: overlay;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero-inner {
  animation: hero-in .9s cubic-bezier(.16,.8,.3,1) both;
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-inner { animation: none; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 700; margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amarillo);
  color: var(--negro);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

.kicker {
  text-align: center;
  color: var(--amarillo);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  margin: 0 0 10px;
  position: relative;
}
.kicker::before, .kicker::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,.7));
  vertical-align: middle;
  margin-right: 10px;
}
.kicker::after { transform: rotate(180deg); margin-right: 0; margin-left: 10px; }
.kicker-left { text-align: left; }
.kicker-left::before { display: none; }
.section-title-left { text-align: left; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--amarillo-2), var(--amarillo));
  color: var(--negro);
  box-shadow: 0 12px 26px rgba(245,197,24,.3);
}
.btn-primary:hover { box-shadow: 0 18px 36px rgba(245,197,24,.42); }
.btn-outline {
  background: rgba(236,224,198,.03);
  color: var(--lino);
  border-color: rgba(236,224,198,.35);
}
.btn-outline:hover { border-color: var(--amarillo); color: var(--amarillo); background: rgba(245,197,24,.06); }
.btn-rose {
  background: linear-gradient(135deg, var(--rosa-2), var(--rosa));
  color: var(--negro);
  box-shadow: 0 12px 26px rgba(214,105,140,.35);
}
.btn-rose:hover { box-shadow: 0 18px 36px rgba(214,105,140,.48); }
.btn-crimson {
  background: linear-gradient(135deg, var(--rojo-2), var(--rojo));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(139,26,26,.4);
}
.btn-crimson:hover { box-shadow: 0 18px 36px rgba(139,26,26,.52); }
.btn-small { padding: 10px 18px; font-size: .85rem; }
.btn-large { padding: 17px 34px; font-size: 1.08rem; }
.btn:not(.btn-small):not(.btn-large) { padding: 13px 24px; font-size: .95rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(236,224,198,.92);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(32,70,133,.12);
  transition: all .25s ease;
}
.site-header.is-scrolled {
  background: rgba(236,224,198,.98);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.logo-img, .footer-logo-img { height: 42px; width: auto; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 900px 500px at 50% -12%, rgba(32,70,133,.65), transparent 60%),
    radial-gradient(ellipse 600px 400px at 85% 110%, rgba(245,197,24,.08), transparent 60%),
    linear-gradient(180deg, var(--negro) 0%, var(--negro-2) 60%, var(--negro) 100%);
}
/* Capas del hero, de atrás hacia adelante:
   0 foto de las 3 escenas · 1 aura · 2 estrellas · 3 destellos animados · 4 texto */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .18;
  background-image: url('assets/hero-bg.jpg');
  background-image: image-set(url('assets/hero-bg.webp') type('image/webp'),
                              url('assets/hero-bg.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center 70%;
  /* se apaga arriba y abajo para que no se note dónde empieza ni termina */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 45%, #000 80%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 45%, #000 80%, transparent 100%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: var(--stars);
  background-size: var(--stars-size);
  opacity: .8;
  pointer-events: none;
}
.hero-aura {
  position: absolute;
  z-index: 1;
  inset: -20% -10% auto -10%;
  height: 65%;
  background: radial-gradient(circle, rgba(245,197,24,.16), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}
.hero-sparkles { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero-sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amarillo);
  box-shadow: 0 0 8px 1px rgba(245,197,24,.7);
  opacity: .6;
  animation: sparkle-float 6s ease-in-out infinite;
}
@keyframes sparkle-float {
  0%, 100% { transform: translateY(0); opacity: .15; }
  50% { transform: translateY(-18px); opacity: .9; }
}
.hero-inner { position: relative; z-index: 4; max-width: 780px; margin: 0 auto; }
.hero-kicker {
  color: var(--amarillo);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: 16px;
  text-shadow: 0 0 18px rgba(245,197,24,.35);
}
.hero-title {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  color: var(--white);
  line-height: 1.12;
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.hero-subtext {
  font-size: 1.18rem;
  color: rgba(236,224,198,.85);
  max-width: 560px;
  margin: 0 auto 30px;
}
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(236,224,198,.6);
  font-size: .85rem;
  font-weight: 600;
  transition: color .2s ease;
}
.hero-social-proof svg { width: 18px; height: 18px; color: #FF0000; flex-shrink: 0; }
.hero-social-proof:hover { color: var(--amarillo); }

.trust-strip {
  position: relative;
  background: linear-gradient(180deg, var(--lino-2), var(--lino));
  color: var(--negro);
  padding: 26px 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 10px 30px rgba(0,0,0,.25);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
}
.trust-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, #fff, var(--lino-2) 70%);
  box-shadow: 0 6px 16px rgba(32,70,133,.18), inset 0 0 0 1px rgba(32,70,133,.1);
  animation: icon-float 3.6s ease-in-out infinite;
}
.trust-item:nth-child(2) .trust-icon-wrap { animation-delay: .3s; }
.trust-item:nth-child(3) .trust-icon-wrap { animation-delay: .6s; }
.trust-item:nth-child(4) .trust-icon-wrap { animation-delay: .9s; }
@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.trust-icon { width: 24px; height: 24px; color: var(--azul); }

.section {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
}
.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.section-sub {
  text-align: center;
  color: rgba(236,224,198,.72);
  max-width: 560px;
  margin: 0 auto 40px;
}

.vsl-section {
  background: radial-gradient(ellipse 700px 400px at 15% 10%, rgba(32,70,133,.22), transparent 65%);
}
.pricing-section {
  background:
    radial-gradient(ellipse 900px 500px at 80% 0%, rgba(32,70,133,.24), transparent 60%),
    radial-gradient(ellipse 700px 400px at 10% 100%, rgba(245,197,24,.05), transparent 60%);
}
.testimonials-section {
  background: radial-gradient(ellipse 800px 450px at 20% 100%, rgba(32,70,133,.2), transparent 60%);
}
.pain-section {
  background: radial-gradient(ellipse 800px 450px at 85% 10%, rgba(245,197,24,.06), transparent 60%);
}
.about-section {
  background: radial-gradient(ellipse 700px 500px at 85% 20%, rgba(245,197,24,.05), transparent 60%);
}
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--stars);
  background-size: var(--stars-size);
  opacity: .3;
  pointer-events: none;
}

.section + .section::after,
.trust-strip + .section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,.18), transparent);
  pointer-events: none;
}

.vsl-section { text-align: center; }
.vsl-player {
  position: relative;
  max-width: 720px;
  margin: 0 auto 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(245,197,24,.15);
  aspect-ratio: 16 / 9;
  background: var(--azul-3);
}
.vsl-player picture, .testi-video-player picture, .about-photo-frame picture { display: contents; }
.vsl-poster { width: 100%; height: 100%; object-fit: cover; }
.vsl-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Capas invisibles que absorben el toque sobre el título/canal (arriba) y el logo
   "YouTube" (abajo a la derecha) del reproductor nativo, para que no se pueda salir
   de la landing sin querer. El centro (play/pausa) y la barra de progreso quedan libres. */
.yt-guard { position: absolute; z-index: 5; background: transparent; }
.yt-guard-top { top: 0; left: 0; right: 0; height: 15%; }
.yt-guard-corner { right: 0; bottom: 0; width: 34%; height: 13%; }
.vsl-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(180deg, rgba(10,10,12,.15) 0%, rgba(10,10,12,.25) 55%, rgba(10,10,12,.75) 100%);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.vsl-play-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amarillo-2), var(--amarillo));
  color: var(--negro);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(245,197,24,.5);
  transition: transform .2s ease;
  animation: play-pulse 2.6s ease-out infinite;
}
.vsl-play-icon svg { width: 34px; height: 34px; margin-left: 4px; }
.vsl-overlay:hover .vsl-play-icon { transform: scale(1.08); }
.vsl-play-icon--sm { width: 56px; height: 56px; }
.vsl-play-icon--sm svg { width: 22px; height: 22px; }
.vsl-watch-label {
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
@keyframes play-pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,197,24,.45); }
  70% { box-shadow: 0 0 0 22px rgba(245,197,24,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,197,24,0); }
}
/* Estado "próximamente" para el VSL, mientras no exista el video grabado */
.vsl-player.is-pending .vsl-overlay { cursor: default; background: linear-gradient(180deg, rgba(10,10,12,.35) 0%, rgba(10,10,12,.55) 100%); }
.vsl-player.is-pending .vsl-play-icon { animation: none; opacity: .6; }
.vsl-pending-label {
  color: var(--white);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(0,0,0,.4);
  padding: 6px 14px;
  border-radius: 999px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
@media (min-width: 761px) {
  .steps-grid::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,197,24,.35), transparent);
    z-index: 0;
  }
}
.step-card {
  position: relative;
  background: linear-gradient(160deg, var(--negro-3), var(--negro-2));
  border: 1px solid rgba(236,224,198,.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(245,197,24,.3); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amarillo-2), var(--amarillo));
  color: var(--negro);
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(245,197,24,.35);
}
.step-card h3 { color: var(--white); font-size: 1.05rem; }
.step-card p { color: rgba(236,224,198,.72); font-size: .9rem; margin: 0; }
.step-meta {
  display: inline-block;
  margin-top: 12px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--amarillo);
  letter-spacing: .03em;
}

/* Pain / identificación — "te sentís identificado si..." */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(160deg, var(--negro-3), var(--negro-2));
  border: 1px solid rgba(236,224,198,.08);
  border-radius: 14px;
  padding: 20px 20px;
  transition: transform .2s ease, border-color .2s ease;
}
.pain-card:hover { transform: translateY(-3px); border-color: rgba(245,197,24,.28); }
.pain-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,197,24,.12);
  color: var(--amarillo);
}
.pain-icon svg { width: 18px; height: 18px; }
.pain-card p { margin: 0; color: rgba(236,224,198,.88); font-size: .92rem; font-weight: 600; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-grid.pricing-grid-single {
  grid-template-columns: minmax(0, 440px);
  justify-content: center;
}
.price-card {
  position: relative;
  background: linear-gradient(165deg, var(--negro-3), var(--negro) 75%);
  border: 1px solid rgba(236,224,198,.12);
  border-radius: var(--radius);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-6px); }
.price-card-featured {
  border: 1px solid rgba(245,197,24,.5);
  background: linear-gradient(165deg, var(--azul-2), var(--negro-3) 70%);
  box-shadow: var(--shadow), var(--shadow-gold);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 26px;
  background: linear-gradient(135deg, var(--amarillo-2), var(--amarillo));
  color: var(--negro);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 7px 15px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(245,197,24,.4);
}
.price-name { color: var(--white); font-size: 1.24rem; margin-bottom: 6px; }
.price-desc { color: rgba(236,224,198,.72); font-size: .9rem; }
.price-amount {
  font-size: 2.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--amarillo-2), var(--amarillo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 8px 0 20px;
}
.price-legal {
  font-size: .72rem;
  color: rgba(236,224,198,.4);
  margin: -14px 0 20px;
}
.price-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.price-features li {
  padding-left: 26px;
  position: relative;
  font-size: .92rem;
  color: rgba(236,224,198,.9);
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amarillo);
  font-weight: 700;
}
.price-card .btn { width: 100%; }

/* Variantes de color por línea de trabajo */
.price-card-gold {
  border: 1px solid rgba(245,197,24,.45);
}
.price-card-gold .price-badge {
  background: linear-gradient(135deg, var(--amarillo-2), var(--amarillo));
  color: var(--negro);
  box-shadow: 0 8px 18px rgba(245,197,24,.4);
}
.price-card-gold .price-amount {
  background: linear-gradient(135deg, var(--amarillo-2), var(--amarillo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card-gold .price-features li::before { color: var(--amarillo); }

.price-card-rose {
  border: 1px solid rgba(214,105,140,.55);
  background: linear-gradient(165deg, #2a1620, var(--negro-3) 75%);
  box-shadow: var(--shadow), 0 18px 40px rgba(214,105,140,.2);
}
.price-card-rose .price-badge {
  background: linear-gradient(135deg, var(--rosa-2), var(--rosa));
  color: var(--negro);
  box-shadow: 0 8px 18px rgba(214,105,140,.4);
}
.price-card-rose .price-amount {
  background: linear-gradient(135deg, var(--rosa-2), var(--rosa));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card-rose .price-features li::before { color: var(--rosa-2); }

.price-card-crimson {
  border: 1px solid rgba(194,59,59,.55);
  background: linear-gradient(165deg, #1c0d0d, var(--negro) 75%);
  box-shadow: var(--shadow), 0 18px 40px rgba(139,26,26,.28);
}
.price-card-crimson .price-badge {
  background: linear-gradient(135deg, var(--rojo-2), var(--rojo));
  color: var(--white);
  box-shadow: 0 8px 18px rgba(139,26,26,.45);
}
.price-card-crimson .price-amount {
  background: linear-gradient(135deg, var(--rojo-2), var(--rojo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card-crimson .price-features li::before { color: var(--rojo-2); }
.price-note {
  text-align: center;
  font-size: .85rem;
  color: rgba(236,224,198,.55);
  margin-top: 36px;
}
.disclaimer-note {
  text-align: center;
  font-size: .78rem;
  color: rgba(236,224,198,.35);
  margin-top: 8px;
}

/* VIP Banner — Método Amado Integral */
.vip-banner {
  position: relative;
  margin-top: 32px;
  border-radius: var(--radius);
  padding: 3px;
  background: linear-gradient(120deg, var(--amarillo), #fff2c2 30%, var(--amarillo) 55%, var(--amarillo-2) 80%, var(--amarillo));
  background-size: 220% 220%;
  animation: vip-shimmer 6s ease-in-out infinite;
  box-shadow: var(--shadow), 0 0 44px rgba(245,197,24,.22);
}
@keyframes vip-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) { .vip-banner { animation: none; } }
.vip-banner-inner {
  position: relative;
  border-radius: calc(var(--radius) - 3px);
  background: linear-gradient(150deg, var(--azul-3), var(--negro-2) 70%);
  padding: 54px 44px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
.vip-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--stars);
  background-size: var(--stars-size);
  opacity: .5;
  pointer-events: none;
}
/* Destello que barre el banner al entrar y cada 7s */
.vip-banner-inner::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  width: 45%;
  left: -60%;
  opacity: 0;
  transform: skewX(-18deg);
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.10) 40%, rgba(255,243,198,.26) 52%, rgba(255,255,255,.10) 64%, transparent);
}

/* Corona premium — sobresale del borde superior, centrada */
.vip-crown {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff4cf, var(--amarillo) 45%, var(--amarillo-2) 100%);
  color: var(--negro);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 0 0 4px rgba(10,10,12,.85),
    0 10px 26px rgba(0,0,0,.45),
    0 0 30px rgba(245,197,24,.45);
}
.vip-crown svg { width: 17px; height: 17px; flex-shrink: 0; }
.vip-banner-copy { position: relative; z-index: 1; }
.vip-kicker {
  color: var(--amarillo);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  margin: 0 0 10px;
}
.vip-title {
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin: 0 0 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.vip-desc { color: rgba(236,224,198,.82); font-size: .95rem; margin: 0 0 16px; }
.vip-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.35);
  color: var(--amarillo-2);
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin: 0;
}
.vip-banner-price {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vip-badge-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--amarillo-2), var(--amarillo));
  color: var(--negro);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.vip-old-price {
  position: relative;
  color: rgba(236,224,198,.5);
  font-size: 1.15rem;
}
.vip-old-price::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: 52%;
  height: 2px;
  border-radius: 2px;
  background: #e04848;
  box-shadow: 0 0 9px rgba(224,72,72,.75);
  transform: scaleX(1);
  transform-origin: left center;
}
.vip-installments {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(236,224,198,.65);
  margin-bottom: 2px;
}
.vip-new-price {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--amarillo-2), var(--amarillo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 2px 0 14px;
  line-height: 1;
}
/* Segunda forma de pago, como alternativa clara a las cuotas */
.vip-alt-pay {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px dashed rgba(245,197,24,.4);
  background: rgba(245,197,24,.06);
  border-radius: 10px;
  padding: 9px 14px;
  margin: 0 0 16px;
  font-size: .85rem;
  color: rgba(236,224,198,.85);
}
.vip-alt-pay strong { color: var(--amarillo-2); font-size: .95rem; }
.vip-cta { width: 100%; }
.vip-legal {
  font-size: .72rem;
  color: rgba(236,224,198,.45);
  margin: 12px 0 0;
}

/* ---- Entrada destacada del banner VIP ----
   Los estados iniciales viven bajo .vip-anim, que agrega el JS. Sin JS (o con
   prefers-reduced-motion) nada se oculta: el banner se ve completo y estático. */
.vip-anim { opacity: 0; transform: translateY(40px) scale(.93); }
.vip-anim .vip-crown { opacity: 0; }
.vip-anim .vip-banner-copy > *,
.vip-anim .vip-banner-price > * { opacity: 0; }
.vip-anim .vip-old-price::after { transform: scaleX(0); }

.vip-banner.vip-in {
  animation:
    vip-entrance .95s cubic-bezier(.2,1.12,.35,1) both,
    vip-shimmer 6s ease-in-out infinite;
}
@keyframes vip-entrance {
  0%   { opacity: 0; transform: translateY(40px) scale(.93);
         box-shadow: var(--shadow), 0 0 0 rgba(245,197,24,0); }
  55%  { opacity: 1; transform: translateY(-7px) scale(1.025);
         box-shadow: var(--shadow), 0 0 100px rgba(245,197,24,.6); }
  100% { opacity: 1; transform: translateY(0) scale(1);
         box-shadow: var(--shadow), 0 0 44px rgba(245,197,24,.22); }
}

.vip-in .vip-banner-inner::after { animation: vip-sweep 7s ease-in-out .45s infinite; }
@keyframes vip-sweep {
  0%   { left: -60%; opacity: 0; }
  5%   { opacity: 1; }
  20%  { left: 115%; opacity: 1; }
  22%  { left: 115%; opacity: 0; }
  100% { left: 115%; opacity: 0; }
}

.vip-in .vip-crown { animation: vip-crown-drop .85s cubic-bezier(.2,1.2,.35,1) .3s both; }
@keyframes vip-crown-drop {
  0%   { opacity: 0; transform: translate(-50%, -190%) scale(.65) rotate(-14deg); }
  55%  { opacity: 1; transform: translate(-50%, -28%) scale(1.14) rotate(4deg); }
  78%  { transform: translate(-50%, -58%) scale(.97) rotate(-2deg); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0); }
}

.vip-in .vip-banner-copy > *,
.vip-in .vip-banner-price > * { animation: vip-rise .6s cubic-bezier(.16,.8,.3,1) both; }
@keyframes vip-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vip-in .vip-banner-copy > *:nth-child(1) { animation-delay: .40s; }
.vip-in .vip-banner-copy > *:nth-child(2) { animation-delay: .48s; }
.vip-in .vip-banner-copy > *:nth-child(3) { animation-delay: .56s; }
/* Ojo: el hijo 4 es el precio nuevo y no lleva delay acá, porque tiene su propia
   animación de pop más abajo (un nth-child pisaría ese delay por especificidad) */
.vip-in .vip-banner-price > *:nth-child(1) { animation-delay: .52s; }
.vip-in .vip-banner-price > *:nth-child(2) { animation-delay: .60s; }
.vip-in .vip-banner-price > *:nth-child(3) { animation-delay: .68s; }
.vip-in .vip-banner-price > *:nth-child(5) { animation-delay: 1.18s; }
.vip-in .vip-banner-price > *:nth-child(6) { animation-delay: 1.30s; }
.vip-in .vip-banner-price > *:nth-child(7) { animation-delay: 1.42s; }

/* El tachado se dibuja sobre el precio viejo, y recién ahí entra el nuevo */
.vip-in .vip-old-price::after { animation: vip-strike .45s cubic-bezier(.5,0,.2,1) .88s forwards; }
@keyframes vip-strike { to { transform: scaleX(1); } }

.vip-in .vip-new-price { animation: vip-price-pop .8s cubic-bezier(.2,1.3,.4,1) 1s both; }
@keyframes vip-price-pop {
  0%   { opacity: 0; transform: scale(.55); filter: blur(7px); }
  55%  { opacity: 1; transform: scale(1.18); filter: blur(0); }
  100% { opacity: 1; transform: scale(1); }
}

/* Latido suave del cupo limitado, ya con todo montado */
.vip-in .vip-scarcity { animation: vip-rise .6s cubic-bezier(.16,.8,.3,1) .64s both, vip-scarcity-pulse 2.8s ease-in-out 1.6s infinite; }
@keyframes vip-scarcity-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0); }
  50%      { box-shadow: 0 0 22px 0 rgba(245,197,24,.3); }
}

@media (prefers-reduced-motion: reduce) {
  .vip-in, .vip-in .vip-crown, .vip-in .vip-banner-copy > *,
  .vip-in .vip-banner-price > *, .vip-in .vip-new-price,
  .vip-in .vip-scarcity, .vip-in .vip-banner-inner::after { animation: none; }
  .vip-anim, .vip-anim .vip-crown, .vip-anim .vip-banner-copy > *,
  .vip-anim .vip-banner-price > * { opacity: 1; transform: none; }
  .vip-anim .vip-crown { transform: translate(-50%, -50%); }
  .vip-anim .vip-old-price::after { transform: scaleX(1); }
}

@media (max-width: 760px) {
  .vip-banner-inner {
    grid-template-columns: 1fr;
    padding: 52px 22px 32px;
    text-align: center;
  }
  .vip-banner-copy { text-align: center; }
  .vip-scarcity { margin: 0 auto; }
  .vip-banner { box-shadow: var(--shadow), 0 0 56px rgba(245,197,24,.32); }
  .vip-new-price { font-size: 2.9rem; }
}

.testimonials-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.testi-video { width: 220px; text-align: center; }
.testi-video-player {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--azul-2), var(--negro-3));
  box-shadow: var(--shadow), 0 0 0 1px rgba(245,197,24,.15);
}
.testi-video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.testi-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.testi-video:hover .testi-poster { transform: scale(1.05); }
.testi-video-player .vsl-overlay { background: linear-gradient(180deg, rgba(10,10,12,.15) 0%, rgba(10,10,12,.1) 45%, rgba(10,10,12,.7) 100%); }
.testi-video-caption {
  margin: 10px 0 0;
  font-size: .8rem;
  color: rgba(236,224,198,.55);
}

/* Placeholder de testimonio mientras no hay video real cargado */
.testi-video-player.is-pending {
  background: linear-gradient(160deg, var(--negro-3), var(--negro-2));
}
.testi-video-player.is-pending .vsl-overlay { cursor: default; }
.testi-pending-label {
  color: var(--white);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(0,0,0,.4);
  padding: 6px 12px;
  border-radius: 999px;
  text-align: center;
}

.about-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 52px;
  align-items: center;
}
.about-photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 3px;
  background: linear-gradient(150deg, var(--amarillo), rgba(245,197,24,.15) 40%, var(--azul) 100%);
  box-shadow: var(--shadow);
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 3px);
  background: linear-gradient(160deg, var(--azul-2), var(--negro));
  display: block;
}
.about-content p { color: rgba(236,224,198,.82); }
.about-signature {
  font-size: 1.1rem;
  color: var(--amarillo);
  font-weight: 700;
  margin-top: 22px;
}

.faq-list { position: relative; display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(236,224,198,.12);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--negro-3), var(--negro-2));
  transition: border-color .2s ease;
}
.faq-item[data-open="true"] { border-color: rgba(245,197,24,.4); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--ff);
  font-size: 1rem;
  font-weight: 600;
  padding: 19px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  margin-left: 16px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--amarillo);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: transform .2s ease; }
.faq-item[data-open="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 22px;
}
.faq-answer p { color: rgba(236,224,198,.75); font-size: .92rem; }
.faq-item[data-open="true"] .faq-answer { padding-bottom: 19px; }

.final-cta {
  text-align: center;
  background:
    radial-gradient(ellipse 900px 500px at 50% 0%, rgba(245,197,24,.1), transparent 60%),
    linear-gradient(160deg, var(--azul), var(--negro) 78%);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--stars);
  background-size: var(--stars-size);
  opacity: .5;
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.final-cta h2 { color: var(--white); font-size: clamp(1.7rem, 3.8vw, 2.4rem); text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.final-cta p { color: rgba(236,224,198,.88); margin-bottom: 30px; }

.site-footer { background: var(--negro-2); padding: 48px 0 24px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(236,224,198,.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand p { margin: 0; color: rgba(236,224,198,.6); font-size: .85rem; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; font-size: .9rem; }
.footer-links a:hover { color: var(--amarillo); }
.footer-legal { padding-top: 20px; }
.footer-legal p { margin: 0; font-size: .78rem; color: rgba(236,224,198,.4); text-align: center; }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.4);
  z-index: 90;
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

.scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 86px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lino);
  color: var(--negro);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}
.scroll-top-btn.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top-btn svg { width: 20px; height: 20px; }

/* Barra sticky de WhatsApp — solo mobile, reemplaza al botón flotante circular */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 96;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--amarillo-2), var(--amarillo));
  color: var(--negro);
  box-shadow: 0 -8px 24px rgba(0,0,0,.35);
}
.sticky-cta svg { width: 26px; height: 26px; flex-shrink: 0; }
.sticky-cta-text { display: flex; flex-direction: column; line-height: 1.25; }
.sticky-cta-text strong { font-size: .92rem; }
.sticky-cta-text span { font-size: .8rem; font-weight: 600; }

/* Responsive */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-frame { max-width: 320px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .pricing-grid, .testimonials-text-grid, .pain-grid { grid-template-columns: 1fr; }
  .pricing-grid.pricing-grid-single { grid-template-columns: minmax(0, 1fr); }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-6px); }
  .hero { padding: 72px 0 52px; }
  /* En mobile el recorte "cover" dejaría solo una escena: se muestra la imagen
     completa apoyada abajo, para que se vean las tres */
  .hero-photo {
    background-size: contain;
    background-position: center bottom;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 100%);
  }
  .section { padding: 60px 0; }
  .sticky-cta { display: flex; }
  .whatsapp-float, .scroll-top-btn { display: none; }
  body { padding-bottom: 66px; }
}
@media (min-width: 761px) and (max-width: 980px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}
