/* ==========================================================
   Dio Ungles Academy — Stylesheet
   Paleta: burgundy · rose gold · nude · champagne · cream
   ========================================================== */

:root{
  /* core palette */
  --c-ink:       #1a0d12;
  --c-ink-soft:  #2d1820;
  --c-burgundy:  #5c1f2c;
  --c-rose:      #b76e79;
  --c-rose-soft: #d4a3a8;
  --c-gold:      #c79a5b;
  --c-nude:      #e8c5a0;
  --c-champagne: #f0e0cc;
  --c-cream:     #faf6f2;
  --c-cream-2:   #f4ede4;
  --c-white:     #ffffff;
  --c-muted:     #8e7b73;

  /* gradients */
  --grad-rose:  linear-gradient(135deg, #d4a574 0%, #b76e79 50%, #5c1f2c 100%);
  --grad-gold:  linear-gradient(135deg, #e8c5a0 0%, #c79a5b 100%);
  --grad-dark:  linear-gradient(135deg, #1a0d12 0%, #2d1820 60%, #3a1f28 100%);
  --grad-text:  linear-gradient(135deg, #e8c5a0 0%, #c79a5b 50%, #b76e79 100%);

  /* typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* layout */
  --radius:   18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(26,13,18,.08);
  --shadow:    0 18px 50px -16px rgba(26,13,18,.25);
  --shadow-lg: 0 30px 80px -20px rgba(92,31,44,.35);

  /* sizes */
  --container: 1180px;
  --nav-h:     76px;
  --announce-h: 44px;

  /* easing */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ============ RESET ============ */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.6;
  color:var(--c-ink);
  background:var(--c-cream);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
a{color:inherit;text-decoration:none;transition:color .25s var(--ease)}
ul{margin:0;padding:0;list-style:none}
h1,h2,h3,h4,h5{margin:0;font-family:var(--font-display);font-weight:600;line-height:1.15;letter-spacing:-.01em}
p{margin:0}
em{font-style:italic;font-family:var(--font-display);font-weight:500;background:var(--grad-text);-webkit-background-clip:text;background-clip:text;color:transparent}
::selection{background:var(--c-rose);color:var(--c-cream)}

/* ============ LAYOUT ============ */
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.section{
  position:relative;
  padding:120px 0;
}
.section--dark{
  background:var(--grad-dark);
  color:var(--c-cream);
}
.section--dark .section__sub{color:rgba(240,224,204,.75)}
.section--cream{background:var(--c-cream-2)}

.section__head{
  text-align:center;
  max-width:720px;
  margin:0 auto 70px;
}
.section__head--left{text-align:left;margin-left:0}
.section__title{
  font-size:clamp(2rem, 4.5vw, 3.4rem);
  line-height:1.1;
  margin:14px 0 18px;
  letter-spacing:-.02em;
}
.section__sub{
  font-size:1.075rem;
  color:var(--c-muted);
  max-width:560px;
  margin:0 auto;
}
.section__head--left .section__sub{margin:0}

/* ============ EYEBROW ============ */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.78rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--c-burgundy);
}
.eyebrow__dot{
  width:8px;height:8px;border-radius:99px;
  background:var(--c-rose);
  box-shadow:0 0 0 4px rgba(183,110,121,.18);
}
.eyebrow--gold{color:var(--c-nude)}
.section--dark .eyebrow{color:var(--c-nude)}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  font-weight:600;
  font-size:.95rem;
  border-radius:99px;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space:nowrap;
  text-decoration:none;
  border:1.5px solid transparent;
  letter-spacing:.01em;
}
.btn--primary{
  background:var(--grad-rose);
  color:var(--c-cream);
  box-shadow:0 10px 30px -10px rgba(92,31,44,.55);
}
.btn--primary:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 40px -10px rgba(92,31,44,.65);
}
.btn--ghost{
  background:transparent;
  color:var(--c-ink);
  border-color:rgba(26,13,18,.15);
}
.btn--ghost:hover{
  background:var(--c-ink);
  color:var(--c-cream);
  border-color:var(--c-ink);
}
.section--dark .btn--ghost{
  color:var(--c-cream);
  border-color:rgba(240,224,204,.25);
}
.section--dark .btn--ghost:hover{
  background:var(--c-cream);
  color:var(--c-ink);
}
.btn--lg{padding:17px 32px;font-size:1rem}
.btn--sm{padding:10px 18px;font-size:.85rem}
.btn--full{width:100%}

.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  color:var(--c-rose);
  border-bottom:1px solid transparent;
  padding-bottom:2px;
}
.link-arrow:hover{border-color:var(--c-rose)}
.link-arrow span{transition:transform .3s var(--ease)}
.link-arrow:hover span{transform:translateX(4px)}

/* ============ ANNOUNCE BAR ============ */
.announce{
  position:fixed;
  inset:0 0 auto 0;
  height:var(--announce-h);
  background:var(--c-ink);
  color:var(--c-cream);
  z-index:60;
  display:flex;
  align-items:center;
  font-size:.85rem;
}
.announce__inner{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  padding:0 16px;
}
.announce strong{color:var(--c-nude);font-weight:600}
.announce__pulse{
  width:8px;height:8px;border-radius:99px;background:var(--c-nude);
  box-shadow:0 0 0 0 rgba(232,197,160,.7);
  animation:pulse 2s infinite;
  flex-shrink:0;
}
.announce__cta{
  color:var(--c-nude);
  font-weight:600;
  border-bottom:1px solid currentColor;
  padding-bottom:1px;
  white-space:nowrap;
}
.announce__cta:hover{color:var(--c-cream)}
.announce__sep{opacity:.5}
.announce__short{display:none}
.announce__full{white-space:nowrap}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(232,197,160,.7)}
  70%{box-shadow:0 0 0 10px rgba(232,197,160,0)}
  100%{box-shadow:0 0 0 0 rgba(232,197,160,0)}
}

/* ============ NAV ============ */
.nav{
  position:fixed;
  top:var(--announce-h);
  left:0;right:0;
  height:var(--nav-h);
  z-index:50;
  background:rgba(250,246,242,.82);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(26,13,18,.06);
  transition:transform .35s var(--ease), background .3s var(--ease);
}
.nav.is-hidden{transform:translateY(-100%)}
.nav.is-scrolled{background:rgba(250,246,242,.95)}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:100%;
  gap:24px;
}
.nav__links{
  display:flex;
  gap:36px;
  font-size:.92rem;
  font-weight:500;
}
.nav__links a{
  position:relative;
  color:var(--c-ink-soft);
  padding:6px 0;
}
.nav__links a::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1.5px;
  background:var(--c-rose);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s var(--ease);
}
.nav__links a:hover{color:var(--c-ink)}
.nav__links a:hover::after{transform:scaleX(1)}

.brand{display:inline-flex;align-items:center;gap:12px}
.brand__mark{width:44px;height:44px;flex:0 0 auto;border-radius:14px;overflow:hidden;box-shadow:var(--shadow-sm)}
.brand__mark svg{width:100%;height:100%;display:block}
.brand__text{display:flex;flex-direction:column;line-height:1}
.brand__name{font-family:var(--font-display);font-size:1.15rem;font-weight:700;letter-spacing:-.01em;color:var(--c-ink)}
.brand__sub{font-size:.65rem;text-transform:uppercase;letter-spacing:.32em;color:var(--c-muted);margin-top:3px}
.brand--light .brand__name{color:var(--c-cream)}
.brand--light .brand__sub{color:rgba(240,224,204,.7)}

.nav__burger{
  display:none;
  width:42px;height:42px;
  border-radius:12px;
  background:transparent;
  position:relative;
}
.nav__burger span{
  position:absolute;
  left:10px;right:10px;
  height:1.5px;
  background:var(--c-ink);
  transition:transform .3s var(--ease), opacity .25s var(--ease);
}
.nav__burger span:nth-child(1){top:14px}
.nav__burger span:nth-child(2){top:20px}
.nav__burger span:nth-child(3){top:26px}
.nav__burger.is-open span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.nav__burger.is-open span:nth-child(2){opacity:0}
.nav__burger.is-open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

.mobile-menu{
  position:fixed;
  inset:calc(var(--announce-h) + var(--nav-h)) 0 0 0;
  background:var(--c-cream);
  padding:30px 24px;
  display:flex;
  flex-direction:column;
  gap:8px;
  transform:translateX(100%);
  transition:transform .4s var(--ease);
  z-index:45;
}
.mobile-menu.is-open{transform:translateX(0)}
.mobile-menu a{
  padding:18px 4px;
  border-bottom:1px solid rgba(26,13,18,.06);
  font-size:1.1rem;
  font-family:var(--font-display);
  color:var(--c-ink);
}
.mobile-menu .btn{margin-top:20px;justify-content:center}

/* backdrop overlay for mobile menu */
.menu-backdrop{
  position:fixed;
  inset:0;
  background:rgba(26,13,18,.45);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  opacity:0;
  pointer-events:none;
  transition:opacity .35s var(--ease);
  z-index:44;
}
.menu-backdrop.is-open{
  opacity:1;
  pointer-events:auto;
}

/* ============ HERO ============ */
.hero{
  position:relative;
  min-height:100vh;
  padding-top:calc(var(--announce-h) + var(--nav-h) + 30px);
  padding-bottom:60px;
  display:flex;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
  background:var(--c-cream);
}
.hero__bg{
  position:absolute;
  inset:0;
  z-index:-1;
  overflow:hidden;
}
.hero__orb{
  position:absolute;
  border-radius:50%;
  filter:blur(70px);
  opacity:.5;
}
.hero__orb--1{
  width:520px;height:520px;
  background:radial-gradient(circle, #e8c5a0 0%, transparent 70%);
  top:-120px;right:-100px;
  animation:float 14s ease-in-out infinite;
}
.hero__orb--2{
  width:400px;height:400px;
  background:radial-gradient(circle, #b76e79 0%, transparent 70%);
  bottom:-100px;left:-80px;
  opacity:.35;
  animation:float 18s ease-in-out infinite reverse;
}
.hero__orb--3{
  width:300px;height:300px;
  background:radial-gradient(circle, #d4a574 0%, transparent 70%);
  top:30%;left:40%;
  opacity:.25;
  animation:float 16s ease-in-out infinite 2s;
}
@keyframes float{
  0%,100%{transform:translate(0,0) scale(1)}
  50%{transform:translate(30px,-30px) scale(1.08)}
}
.hero__noise{
  position:absolute;inset:0;
  opacity:.06;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
  pointer-events:none;
}

.hero__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:60px;
  align-items:center;
}
.hero__copy{position:relative;z-index:1}
.hero__title{
  font-size:clamp(2.5rem, 5.5vw, 4.5rem);
  line-height:1.05;
  letter-spacing:-.025em;
  margin:20px 0 26px;
  font-weight:600;
}
.hero__lead{
  font-size:clamp(1.05rem, 1.4vw, 1.2rem);
  color:var(--c-ink-soft);
  max-width:560px;
  margin-bottom:36px;
  line-height:1.55;
}
.hero__lead strong{color:var(--c-burgundy);font-weight:600}
.hero__ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:36px}

.hero__bullets{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  font-size:.92rem;
  color:var(--c-ink-soft);
  margin-bottom:42px;
}
.hero__bullets li{display:inline-flex;align-items:center;gap:8px}
.hero__bullets svg{color:var(--c-rose);flex-shrink:0}

.hero__social-proof{
  display:flex;
  align-items:center;
  gap:16px;
  padding-top:24px;
  border-top:1px solid rgba(26,13,18,.08);
}
.avatars{display:flex}
.avatars__item{
  width:42px;height:42px;border-radius:50%;
  background-size:cover;background-position:center;
  border:2px solid var(--c-cream);
  margin-left:-10px;
}
.avatars__item:first-child{margin-left:0}
.stars{display:inline-flex;gap:2px;color:var(--c-gold)}
.stars svg{width:16px;height:16px}
.hero__social-proof-text{font-size:.85rem;color:var(--c-muted);margin-top:4px}

/* hero visual */
.hero__visual{
  position:relative;
  height:560px;
  perspective:1200px;
}
.hero__card{
  position:absolute;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  background:var(--c-cream);
}
.hero__card img{width:100%;height:100%;object-fit:cover;display:block}
.hero__card--main{
  inset:0 8% 0 8%;
  z-index:2;
  animation:floatCard 8s ease-in-out infinite;
}
.hero__card--float-1{
  width:180px;height:220px;
  bottom:-20px;left:-10px;
  z-index:3;
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
  transform:rotate(-7deg);
  animation:floatCard 10s ease-in-out infinite reverse;
}
.hero__card--float-2{
  width:200px;
  top:-10px;right:-5px;
  z-index:3;
  background:var(--c-ink);
  color:var(--c-cream);
  padding:22px;
  border-radius:var(--radius);
  display:flex;
  align-items:center;
  transform:rotate(5deg);
  animation:floatCard 9s ease-in-out infinite 1s;
}
.hero__mini-stat strong{
  display:block;
  font-family:var(--font-display);
  font-size:2.4rem;
  background:var(--grad-text);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  line-height:1;
}
.hero__mini-stat span{font-size:.78rem;line-height:1.3;color:rgba(240,224,204,.7);margin-top:6px;display:block}

.hero__card-badge{
  position:absolute;
  bottom:18px;right:18px;
  background:var(--c-cream);
  color:var(--c-ink);
  border-radius:18px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(20px);
  background:rgba(250,246,242,.95);
}
.hero__card-badge-num{
  font-family:var(--font-display);
  font-size:2rem;
  font-weight:700;
  background:var(--grad-rose);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  line-height:1;
}
.hero__card-badge-label{font-size:.72rem;color:var(--c-muted);line-height:1.2}

@keyframes floatCard{
  0%,100%{transform:translateY(0) rotate(var(--rot,0deg))}
  50%{transform:translateY(-12px) rotate(var(--rot,0deg))}
}
.hero__card--float-1{--rot:-7deg}
.hero__card--float-2{--rot:5deg}

.hero__scroll{
  position:absolute;
  bottom:30px;left:50%;
  transform:translateX(-50%);
  width:24px;height:38px;
  border:1.5px solid rgba(26,13,18,.3);
  border-radius:99px;
  display:flex;
  justify-content:center;
  padding-top:8px;
  z-index:2;
}
.hero__scroll span{
  width:3px;height:8px;border-radius:99px;
  background:var(--c-ink);
  animation:scroll 1.8s ease-in-out infinite;
}
@keyframes scroll{
  0%{transform:translateY(0);opacity:1}
  100%{transform:translateY(14px);opacity:0}
}

/* ============ TRUST ============ */
.trust{
  background:var(--c-ink);
  color:var(--c-cream);
  padding:34px 0;
  text-align:center;
}
.trust__label{
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.32em;
  color:rgba(240,224,204,.55);
  margin-bottom:14px;
}
.trust__row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  font-family:var(--font-display);
  font-size:1.1rem;
  flex-wrap:wrap;
  color:var(--c-champagne);
}

/* ============ DOLOR / PAIN ============ */
.pains{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  max-width:980px;
  margin:0 auto;
}
.pain{
  background:rgba(250,246,242,.04);
  border:1px solid rgba(240,224,204,.1);
  border-radius:var(--radius);
  padding:32px;
  transition:transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.pain:hover{
  transform:translateY(-4px);
  border-color:rgba(232,197,160,.3);
  background:rgba(250,246,242,.06);
}
.pain__icon{
  width:54px;height:54px;
  border-radius:14px;
  background:rgba(232,197,160,.1);
  color:var(--c-nude);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}
.pain__icon svg{width:26px;height:26px}
.pain h3{
  font-size:1.25rem;
  margin-bottom:10px;
  color:var(--c-champagne);
}
.pain p{color:rgba(240,224,204,.7);font-size:.95rem;line-height:1.6}

.dolor__cta{
  margin-top:60px;
  text-align:center;
  padding:32px;
  background:rgba(232,197,160,.06);
  border:1px solid rgba(232,197,160,.15);
  border-radius:var(--radius);
  max-width:680px;
  margin-left:auto;margin-right:auto;
  margin-top:50px;
}
.dolor__cta p{font-family:var(--font-display);font-size:1.4rem;margin-bottom:14px;color:var(--c-cream)}
.dolor__cta strong{color:var(--c-nude);font-weight:600}

/* ============ MÉTODO ============ */
.method{
  position:relative;
  max-width:780px;
  margin:0 auto;
  padding:20px 0;
}
.method__line{
  position:absolute;
  left:42px;top:30px;bottom:30px;
  width:1px;
  background:linear-gradient(to bottom, transparent, var(--c-rose) 15%, var(--c-rose) 85%, transparent);
}
.method__step{
  display:flex;
  gap:32px;
  padding:24px 0;
  position:relative;
}
.method__num{
  flex:0 0 auto;
  width:84px;height:84px;
  background:var(--c-cream);
  border:2px solid var(--c-rose-soft);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-display);
  font-size:1.7rem;
  font-weight:600;
  color:var(--c-burgundy);
  position:relative;
  z-index:2;
  transition:transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.method__step:hover .method__num{
  background:var(--grad-rose);
  color:var(--c-cream);
  border-color:transparent;
  transform:scale(1.05);
}
.method__body{padding-top:14px;flex:1}
.method__body h3{
  font-size:1.55rem;
  margin-bottom:8px;
}
.method__body p{color:var(--c-muted);max-width:520px}

/* ============ GALLERY ============ */
.gallery{
  padding:100px 0;
  background:var(--c-ink);
  color:var(--c-cream);
  overflow:hidden;
}
.gallery__head{text-align:center;margin-bottom:50px}
.gallery__head .section__title{color:var(--c-cream)}
.gallery__strip{
  width:100%;
  overflow:hidden;
  mask-image:linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image:linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.gallery__track{
  display:flex;
  gap:20px;
  animation:slide 50s linear infinite;
  width:max-content;
}
.gallery__track figure{
  width:280px;
  height:380px;
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  flex-shrink:0;
  background:#222;
}
.gallery__track img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .6s var(--ease);
}
.gallery__track figure:hover img{transform:scale(1.06)}
@keyframes slide{
  0%{transform:translateX(0)}
  100%{transform:translateX(calc(-50% - 10px))}
}
.gallery:hover .gallery__track{animation-play-state:paused}

/* ============ PLANS / CURSOS ============ */
.plans{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:stretch;
}
.plan{
  position:relative;
  background:var(--c-cream);
  border:1px solid rgba(26,13,18,.08);
  border-radius:var(--radius-lg);
  padding:38px 32px;
  display:flex;
  flex-direction:column;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.plan:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:var(--c-rose-soft);
}
.plan--featured{
  background:var(--grad-dark);
  color:var(--c-cream);
  border-color:transparent;
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
}
.plan--featured:hover{transform:translateY(-14px)}
.plan__badge{
  position:absolute;
  top:-14px;left:50%;
  transform:translateX(-50%);
  background:var(--grad-gold);
  color:var(--c-ink);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:8px 16px;
  border-radius:99px;
  white-space:nowrap;
}
.plan__head{margin-bottom:24px}
.plan__name{
  font-size:1.65rem;
  margin-bottom:4px;
}
.plan__tag{
  font-size:.88rem;
  color:var(--c-muted);
}
.plan--featured .plan__tag{color:rgba(240,224,204,.65)}

.plan__price{
  padding:18px 0 22px;
  border-top:1px solid rgba(26,13,18,.08);
  border-bottom:1px solid rgba(26,13,18,.08);
  margin-bottom:24px;
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:8px;
}
.plan--featured .plan__price{
  border-color:rgba(240,224,204,.12);
}
.plan__price-old{
  text-decoration:line-through;
  color:var(--c-muted);
  font-size:1rem;
}
.plan__price-now{
  font-family:var(--font-display);
  font-size:3.4rem;
  font-weight:700;
  line-height:1;
  color:var(--c-burgundy);
}
.plan--featured .plan__price-now{
  background:var(--grad-text);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.plan__price-now sup{
  font-size:1.3rem;
  vertical-align:top;
  position:relative;
  top:.4em;
  margin-right:2px;
}
.plan__price-unit{
  width:100%;
  font-size:.78rem;
  color:var(--c-muted);
  letter-spacing:.05em;
  text-transform:uppercase;
}
.plan--featured .plan__price-unit{color:rgba(240,224,204,.55)}

.plan__list{
  flex:1;
  margin-bottom:28px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.plan__list li{
  position:relative;
  padding-left:30px;
  font-size:.94rem;
  color:var(--c-ink-soft);
  line-height:1.5;
}
.plan--featured .plan__list li{color:rgba(240,224,204,.85)}
.plan__list li::before{
  content:"";
  position:absolute;
  left:0;top:6px;
  width:18px;height:18px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b76e79' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.plan--featured .plan__list li::before{
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8c5a0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.plan__list strong{color:var(--c-burgundy);font-weight:600}
.plan--featured .plan__list strong{color:var(--c-nude)}

.plan--featured .btn--primary{background:var(--c-cream);color:var(--c-ink);box-shadow:none}
.plan--featured .btn--primary:hover{background:var(--c-nude)}

.plans__guarantee{
  text-align:center;
  margin-top:50px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:100%;
  justify-content:center;
  font-size:.95rem;
  color:var(--c-burgundy);
}
.plans__guarantee svg{color:var(--c-rose)}

/* ============ BONUSES ============ */
.bonuses{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.bonus{
  background:rgba(250,246,242,.04);
  border:1px solid rgba(240,224,204,.1);
  border-radius:var(--radius);
  padding:32px;
  text-align:center;
  transition:transform .35s var(--ease), background .35s var(--ease);
}
.bonus:hover{
  transform:translateY(-4px);
  background:rgba(250,246,242,.07);
}
.bonus__icon{
  width:54px;height:54px;
  margin:0 auto 20px;
  color:var(--c-nude);
}
.bonus__icon svg, .bonus svg.bonus__icon{width:100%;height:100%}
.bonus h3{
  font-size:1.3rem;
  color:var(--c-champagne);
  margin-bottom:8px;
}
.bonus p{color:rgba(240,224,204,.7);font-size:.92rem}

/* ============ INSTRUCTORA ============ */
.instructor{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:80px;
  align-items:center;
}
.instructor__visual{position:relative}
.instructor__photo{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:4/5;
  box-shadow:var(--shadow-lg);
}
.instructor__photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, transparent 50%, rgba(92,31,44,.25));
}
.instructor__photo img{
  width:100%;height:100%;object-fit:cover;
}
.instructor__badge{
  position:absolute;
  bottom:30px;right:-20px;
  background:var(--c-ink);
  color:var(--c-cream);
  padding:20px 26px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.instructor__badge strong{
  display:block;
  font-family:var(--font-display);
  font-size:2rem;
  background:var(--grad-text);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  line-height:1;
  margin-bottom:4px;
}
.instructor__badge span{
  font-size:.82rem;
  color:rgba(240,224,204,.7);
  text-transform:uppercase;
  letter-spacing:.1em;
}
.instructor__copy .section__title{margin-bottom:24px}
.instructor__copy p{
  font-size:1.05rem;
  color:var(--c-ink-soft);
  margin-bottom:16px;
  line-height:1.7;
  max-width:520px;
}
.instructor__copy strong{color:var(--c-burgundy)}
.instructor__stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:32px;
  padding-top:32px;
  border-top:1px solid rgba(26,13,18,.08);
}
.instructor__stats > div{text-align:left}
.instructor__stats strong{
  display:block;
  font-family:var(--font-display);
  font-size:2.2rem;
  color:var(--c-burgundy);
  line-height:1;
  margin-bottom:4px;
}
.instructor__stats span{
  font-size:.8rem;
  color:var(--c-muted);
  text-transform:uppercase;
  letter-spacing:.1em;
}

/* ============ TESTIMONIALS ============ */
.testimonials{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testimonial{
  margin:0;
  background:var(--c-cream);
  border:1px solid rgba(26,13,18,.06);
  border-radius:var(--radius);
  padding:30px;
  display:flex;
  flex-direction:column;
  gap:18px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.testimonial:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.testimonial blockquote{
  margin:0;
  font-family:var(--font-display);
  font-size:1.2rem;
  line-height:1.45;
  color:var(--c-ink);
  font-style:italic;
  flex:1;
}
.testimonial figcaption{
  display:flex;
  align-items:center;
  gap:12px;
}
.testimonial__avatar{
  width:50px;height:50px;border-radius:50%;
  background-size:cover;background-position:center;
  flex-shrink:0;
}
.testimonial figcaption strong{display:block;font-size:.98rem}
.testimonial figcaption small{font-size:.82rem;color:var(--c-muted)}

/* ============ FAQ ============ */
.faq-wrap{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:80px;
  align-items:flex-start;
}
.faq{display:flex;flex-direction:column;gap:14px}
.faq__item{
  background:var(--c-cream);
  border:1px solid rgba(26,13,18,.08);
  border-radius:18px;
  overflow:hidden;
  transition:border-color .25s var(--ease), background .25s var(--ease);
}
.faq__item[open]{
  background:var(--c-cream-2);
  border-color:var(--c-rose-soft);
}
.faq__item summary{
  list-style:none;
  cursor:pointer;
  padding:22px 24px;
  font-weight:600;
  font-size:1.05rem;
  font-family:var(--font-display);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__icon{
  width:28px;height:28px;flex-shrink:0;
  border-radius:50%;
  background:var(--c-rose);
  position:relative;
  transition:background .25s var(--ease);
}
.faq__icon::before, .faq__icon::after{
  content:"";
  position:absolute;
  background:var(--c-cream);
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  transition:transform .3s var(--ease);
}
.faq__icon::before{width:12px;height:1.5px}
.faq__icon::after{width:1.5px;height:12px}
.faq__item[open] .faq__icon::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0}
.faq__body{padding:0 24px 24px}
.faq__body p{color:var(--c-ink-soft);line-height:1.65}

/* ============ CTA FINAL ============ */
.cta-final{
  position:relative;
  padding:130px 0;
  overflow:hidden;
  isolation:isolate;
  color:var(--c-cream);
  text-align:center;
}
.cta-final__bg{
  position:absolute;inset:0;z-index:-1;
  background:var(--grad-dark);
}
.cta-final__bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(232,197,160,.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(183,110,121,.3), transparent 50%);
}
.cta-final__inner{
  position:relative;
  max-width:760px;
  margin:0 auto;
}
.cta-final__title{
  font-size:clamp(2rem, 4.5vw, 3.4rem);
  margin:18px 0 22px;
  line-height:1.1;
  letter-spacing:-.02em;
}
.cta-final__sub{
  font-size:1.1rem;
  color:rgba(240,224,204,.8);
  margin-bottom:36px;
  max-width:560px;
  margin-left:auto;margin-right:auto;
}
.cta-final__ctas{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:24px;
}
.cta-final__small{
  font-size:.85rem;
  color:rgba(240,224,204,.5);
}

/* ============ FOOTER ============ */
.footer{
  background:var(--c-ink);
  color:rgba(240,224,204,.7);
  padding:80px 0 24px;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:60px;
}
.footer__about{
  margin-top:20px;
  font-size:.92rem;
  max-width:340px;
}
.footer__col h4{
  font-family:var(--font-sans);
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.2em;
  color:var(--c-nude);
  margin-bottom:18px;
}
.footer__col ul{display:flex;flex-direction:column;gap:10px}
.footer__col a{font-size:.92rem;color:rgba(240,224,204,.7)}
.footer__col a:hover{color:var(--c-cream)}
.footer__bottom{
  padding-top:30px;
  border-top:1px solid rgba(240,224,204,.1);
  display:flex;
  justify-content:space-between;
  font-size:.82rem;
  color:rgba(240,224,204,.5);
  flex-wrap:wrap;
  gap:14px;
}
.heart{color:var(--c-rose)}

/* ============ WHATSAPP FLOAT ============ */
.wa-float{
  position:fixed;
  bottom:24px;right:24px;
  width:60px;height:60px;
  background:#25d366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 30px rgba(37,211,102,.5);
  z-index:40;
  transition:transform .3s var(--ease);
  animation:wapulse 2.5s ease-in-out infinite;
}
.wa-float:hover{transform:scale(1.1);animation:none}
@keyframes wapulse{
  0%,100%{box-shadow:0 12px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5)}
  50%{box-shadow:0 12px 30px rgba(37,211,102,.5), 0 0 0 15px rgba(37,211,102,0)}
}

/* ============ REVEAL ANIMATIONS ============ */
[data-reveal]{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  :root{
    --announce-h: 42px;
    --nav-h: 64px;
  }

  /* announce bar — compact + multi-line possible on small */
  .announce{
    height:var(--announce-h);
    font-size:.74rem;
    line-height:1.35;
  }
  .announce__inner{
    flex-wrap:nowrap;
    gap:8px;
    padding:0 14px;
    text-align:center;
    overflow:hidden;
  }
  .announce__cta{font-size:.75rem}
  .announce__full{display:none}
  .announce__short{display:inline}
  .announce__sep{display:none}

  /* nav */
  .nav{height:var(--nav-h)}
  .nav__inner{gap:14px}
  .nav__links, .nav__cta{display:none}
  .nav__burger{display:block}
  .brand__mark{width:38px;height:38px;border-radius:11px}
  .brand__name{font-size:1.02rem}
  .brand__sub{font-size:.58rem;letter-spacing:.28em}

  /* mobile menu — full-height drawer from the right with internal scroll */
  .mobile-menu{
    position:fixed;
    top:calc(var(--announce-h) + var(--nav-h));
    right:0;
    bottom:0;
    left:0;
    height:auto;
    background:var(--c-cream);
    padding:24px 22px 40px;
    gap:0;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    box-shadow:-12px 0 40px rgba(26,13,18,.08);
    transform:translateX(100%);
    z-index:48;
  }
  .mobile-menu.is-open{transform:translateX(0)}
  .mobile-menu a{
    padding:18px 6px;
    border-bottom:1px solid rgba(26,13,18,.08);
    font-size:1.18rem;
    font-family:var(--font-display);
    font-weight:500;
    color:var(--c-ink);
    letter-spacing:-.01em;
  }
  .mobile-menu a:last-of-type{border-bottom:0}
  .mobile-menu .btn{
    margin-top:24px;
    justify-content:center;
    padding:16px 24px;
    font-size:1rem;
    border-radius:99px;
  }

  /* sections */
  .section{padding:80px 0}
  .section__head{margin-bottom:48px;padding:0 4px}

  /* hero — clear room for fixed announce + nav */
  .hero{
    min-height:auto;
    padding-top:calc(var(--announce-h) + var(--nav-h) + 30px);
    padding-bottom:72px;
  }
  .hero__grid{grid-template-columns:1fr;gap:54px}
  .hero__title{font-size:clamp(2.2rem, 7vw, 3.2rem)}
  .hero__lead{font-size:1.02rem;margin-bottom:28px}
  .hero__ctas{gap:10px}
  .hero__ctas .btn{flex:1;min-width:0;justify-content:center}
  .hero__visual{height:440px;max-width:440px;margin:0 auto;width:100%}
  .hero__scroll{display:none}

  /* grids → single column */
  .pains{grid-template-columns:1fr;gap:16px}
  .pain{padding:26px 24px}
  .plans{grid-template-columns:1fr;gap:18px}
  .plan--featured{transform:none}
  .plan--featured:hover{transform:translateY(-6px)}

  .bonuses{grid-template-columns:repeat(2,1fr);gap:16px}
  .bonus{padding:24px 20px}

  .instructor{grid-template-columns:1fr;gap:50px}
  .instructor__visual{max-width:360px;margin:0 auto}
  .instructor__copy{text-align:center}
  .instructor__copy p{margin-left:auto;margin-right:auto}
  .instructor__stats{grid-template-columns:repeat(4,1fr);text-align:center;gap:14px}
  .instructor__stats > div{text-align:center}
  .instructor__stats strong{font-size:1.7rem}
  .instructor__stats span{font-size:.7rem}

  .testimonials{grid-template-columns:1fr;gap:18px}
  .faq-wrap{grid-template-columns:1fr;gap:36px}
  .section__head--left{text-align:center}
  .section__head--left .btn{display:inline-flex;margin-top:8px}

  .footer__grid{grid-template-columns:repeat(2,1fr);gap:32px}
  .footer__bottom{flex-direction:column;text-align:center}

  /* method timeline cleaner on mobile */
  .method__line{left:32px}
  .method__step{gap:22px}
  .method__num{width:64px;height:64px;font-size:1.3rem}
  .method__body{padding-top:10px}
  .method__body h3{font-size:1.35rem}

  .gallery{padding:80px 0}
  .gallery__track figure{width:220px;height:300px}
  .trust__row{gap:10px;font-size:.95rem;padding:0 14px}

  .cta-final{padding:100px 0}
  .cta-final__ctas{flex-direction:column;align-items:stretch}
  .cta-final__ctas .btn{width:100%;justify-content:center}
}

@media (max-width: 560px){
  :root{
    --announce-h: 38px;
    --nav-h: 60px;
  }

  .container{padding:0 18px}
  .section{padding:64px 0}

  .announce{font-size:.68rem}
  .announce__inner{padding:0 10px;gap:6px}
  .announce__short{display:none}
  .announce__cta{font-size:.72rem}

  .brand__sub{display:none}
  .brand__name{font-size:1.05rem}
  .brand__mark{width:36px;height:36px}

  .hero{padding-top:calc(var(--announce-h) + var(--nav-h) + 24px);padding-bottom:60px}
  .hero__title{font-size:clamp(2rem, 8.5vw, 2.6rem);line-height:1.08}
  .hero__lead{font-size:.98rem;line-height:1.55}
  .hero__bullets{gap:10px 16px;font-size:.86rem;margin-bottom:32px}
  .hero__ctas{flex-direction:column}
  .hero__ctas .btn{width:100%}
  .hero__social-proof{flex-direction:column;align-items:flex-start;gap:14px;padding-top:18px}
  .hero__visual{height:380px}
  .hero__card--main{inset:0 4% 0 4%}
  .hero__card--float-1{width:118px;height:148px;bottom:-12px;left:-4px}
  .hero__card--float-2{width:150px;padding:14px;top:-6px;right:-2px}
  .hero__mini-stat strong{font-size:1.7rem}
  .hero__mini-stat span{font-size:.68rem}
  .hero__card-badge{padding:10px 14px;bottom:12px;right:12px}
  .hero__card-badge-num{font-size:1.6rem}
  .hero__card-badge-label{font-size:.66rem}

  .trust{padding:26px 0}
  .trust__row{font-size:.88rem;gap:8px}

  .section__title{font-size:clamp(1.7rem, 6vw, 2.1rem)}

  .pains{gap:14px}
  .pain h3{font-size:1.15rem}
  .pain p{font-size:.9rem}
  .dolor__cta{padding:24px 20px;margin-top:36px}
  .dolor__cta p{font-size:1.15rem}

  .method__line{left:24px}
  .method__step{gap:18px;padding:18px 0}
  .method__num{width:50px;height:50px;font-size:1.05rem}
  .method__body{padding-top:6px}
  .method__body h3{font-size:1.2rem}
  .method__body p{font-size:.92rem}

  .gallery{padding:64px 0}
  .gallery__head{margin-bottom:36px}
  .gallery__track{gap:14px}
  .gallery__track figure{width:170px;height:230px;border-radius:14px}

  .bonuses{grid-template-columns:1fr;gap:14px}
  .bonus{padding:24px 22px}
  .bonus h3{font-size:1.15rem}

  .plan{padding:30px 22px;border-radius:22px}
  .plan__name{font-size:1.45rem}
  .plan__price-now{font-size:2.6rem}
  .plan__price-now sup{font-size:1.1rem;top:.5em}
  .plan__list li{font-size:.9rem;padding-left:26px}
  .plans__guarantee{font-size:.88rem;flex-wrap:wrap;text-align:center}

  .instructor__stats{grid-template-columns:repeat(2,1fr);gap:20px}
  .instructor__badge{
    position:relative;
    inset:auto;
    margin:-40px auto 0;
    width:fit-content;
    padding:14px 20px;
    display:block;
    text-align:center;
    z-index:2;
  }
  .instructor__badge strong{font-size:1.5rem}

  .testimonial{padding:24px 22px}
  .testimonial blockquote{font-size:1.05rem}

  .faq__item summary{padding:18px 18px;font-size:.98rem;gap:10px}
  .faq__icon{width:24px;height:24px}
  .faq__body{padding:0 18px 18px}
  .faq__body p{font-size:.92rem}

  .cta-final{padding:80px 0}
  .cta-final__title{font-size:clamp(1.7rem, 7vw, 2.2rem)}
  .cta-final__sub{font-size:.98rem}
  .cta-final__small{font-size:.78rem;line-height:1.5}

  .footer{padding:64px 0 20px}
  .footer__grid{grid-template-columns:1fr;gap:32px;margin-bottom:40px}

  .wa-float{width:54px;height:54px;bottom:18px;right:18px}
  .wa-float svg{width:24px;height:24px}

  .btn{padding:13px 22px;font-size:.92rem}
  .btn--lg{padding:15px 24px;font-size:.96rem}
}

/* very small phones */
@media (max-width: 380px){
  .hero__title{font-size:1.85rem}
  .hero__visual{height:340px}
  .hero__card--float-1{width:100px;height:130px}
  .plan__price-now{font-size:2.3rem}
  .instructor__stats{gap:14px}
  .instructor__stats strong{font-size:1.4rem}
}

/* tablet between 561-980: 2 columns where it makes sense */
@media (min-width: 561px) and (max-width: 980px){
  .pains{grid-template-columns:repeat(2,1fr)}
  .bonuses{grid-template-columns:repeat(3,1fr)}
  .testimonials{grid-template-columns:repeat(2,1fr)}
  .testimonials .testimonial:nth-child(3){grid-column:1/-1;max-width:560px;justify-self:center}
}

/* landscape phones — keep menu scrollable */
@media (max-height: 600px) and (max-width: 980px){
  .mobile-menu{padding:18px 22px 30px}
  .mobile-menu a{padding:14px 6px;font-size:1.05rem}
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
  [data-reveal]{opacity:1;transform:none}
}
