/* ============================================================
   REVYA™ — Premium CSS Stylesheet
   Nutricionista Rebeca Azevedo | rebecanazevedonutri.com.br
  Paleta: #4146A3 · #DDB895 · #FFFFFF
   Tipografia: Cormorant Garamond · Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --blue:        #4146A3;
  --blue-dark:   #2F3380;
  --blue-mid:    #575CB3;
  --blue-light:  #7B82C9;
  --blue-pale:   #ECEDF8;

  --beige:       #DDB895;
  --beige-light: #EDD5B8;
  --beige-dark:  #C9A078;
  --beige-pale:  #FAF5EE;

  --white:       #FFFFFF;
  --cream:       #F8F4EF;
  --cream-mid:   #EFE8DF;
  --cream-dark:  #E5D9CD;

  --dark:        #18243A;
  --dark-mid:    #24344F;
  --dark-light:  #3A506B;

  --text:        #2A2A2A;
  --text-mid:    #5A5A6A;
  --text-light:  #8A8A9A;
  --text-white:  #F0EDE8;

  /* Typography */
  --heading:     'Cormorant Garamond', Georgia, serif;
  --body:        'Montserrat', -apple-system, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   7rem;
  --space-xxl:  11rem;

  /* Border Radius */
  --r-sm:   2px;
  --r-md:   8px;
  --r-lg:   18px;

  /* Shadows */
  --shadow-sm:   0 2px 14px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 70px rgba(0,0,0,0.14);
  --shadow-blue: 0 10px 40px rgba(65,70,163,0.28);

  /* Transitions */
  --t-fast:  all 0.22s ease;
  --t-base:  all 0.40s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slow:  all 0.70s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Layout */
  --header-h: 80px;
  --z-header: 1000;
  --z-modal:  2000;
  --z-load:   3000;
  --z-float:  900;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--t-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }
::selection { background: var(--blue-light); color: var(--white); }

/* Scrollbar */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container         { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1380px; }

.section    { padding: var(--space-xl) 0; }
.section--xl{ padding: var(--space-xxl) 0; }
.section--sm{ padding: var(--space-lg) 0; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.overline {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
}
.overline--beige  { color: var(--beige); }
.overline--light  { color: var(--blue-light); }
.overline--muted  { color: rgba(255,255,255,0.45); }

.section-title    { font-family: var(--heading); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
.section-title--xl{ font-size: clamp(2.4rem, 5vw, 4.2rem); }
.section-title--lg{ font-size: clamp(2rem, 4vw, 3.4rem); }
.section-title--md{ font-size: clamp(1.6rem, 3vw, 2.6rem); }

.section-sub {
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 620px;
}
.section-sub--center { margin: 0 auto; }
.section-sub--light  { color: rgba(255,255,255,0.6); }

.section-header         { margin-bottom: 4rem; }
.section-header--center { text-align: center; }
.section-header--center .divider { margin: 1.5rem auto; }

/* Dividers */
.divider        { width: 38px; height: 1px; background: var(--blue); margin: 1.4rem 0; }
.divider--center{ margin: 1.4rem auto; }
.divider--beige { background: var(--beige); }
.divider--light { background: rgba(255,255,255,0.28); }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(145deg, #4146A3 0%, #575CB3 35%, #7B82C9 65%, #A8ADDC 100%);
  z-index: var(--z-load);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; }

.loading-logo {
  width: 130px;
  animation: ldPulse 1.8s ease-in-out infinite;
}
.loading-bar {
  width: 56px;
  height: 1px;
  background: var(--blue);
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}
.loading-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--beige);
  animation: ldSlide 1.4s ease-in-out infinite;
}
@keyframes ldPulse { 0%,100%{ opacity:.55; transform:scale(.97) } 50%{ opacity:1; transform:scale(1) } }
@keyframes ldSlide { 0%{ transform:translateX(-100%) } 100%{ transform:translateX(100%) } }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: var(--z-header);
  transition: var(--t-base);
  padding: 0 2.5rem;
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248,244,239,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(65,70,163,0.12);
  transform: translateY(-100%);
  transition: var(--t-base);
}
.header.scrolled::before { transform: translateY(0); }

.header__inner {
  max-width: 1380px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo switching by context */
.header__logo       { height: 40px; width: auto; position: relative; z-index: 1; transition: var(--t-base); }
.logo--light        { display: block; }
.logo--dark         { display: none; }
.header.scrolled .logo--light { display: none; }
.header.scrolled .logo--dark  { display: block; }

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}
.nav__link {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: var(--t-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--beige);
  transition: var(--t-base);
}
.nav__link:hover          { color: var(--beige-light); }
.nav__link:hover::after,
.nav__link.active::after  { width: 100%; }

.header.scrolled .nav__link       { color: var(--text); }
.header.scrolled .nav__link:hover { color: var(--blue); }
.header.scrolled .nav__link::after{ background: var(--blue); }

.nav__cta {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
  border-radius: var(--r-sm);
  transition: var(--t-base);
}
.nav__cta:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.header.scrolled .nav__cta        { border-color: var(--blue); color: var(--blue); }
.header.scrolled .nav__cta:hover  { background: var(--blue); color: var(--white); }

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  position: relative;
  z-index: 1;
}
.menu-toggle__line {
  width: 24px; height: 1px;
  background: var(--white);
  transition: var(--t-base);
  transform-origin: center;
}
.header.scrolled .menu-toggle__line { background: var(--dark); }
.menu-toggle.active .menu-toggle__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .menu-toggle__line:nth-child(2) { opacity: 0; }
.menu-toggle.active .menu-toggle__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav--mobile {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 80%; max-width: 340px;
  height: 100vh;
  background: var(--dark);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 3rem;
  gap: 0;
  transition: var(--t-slow);
  z-index: calc(var(--z-header) - 1);
}
.nav--mobile.open { right: 0; }

.nav--mobile .nav__link {
  font-size: 0.82rem;
  padding: 1rem 0;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  letter-spacing: 0.14em;
}
.nav--mobile .nav__link:hover { color: var(--beige-light); }
.nav--mobile .nav__link::after { display: none; }
.nav--mobile .nav__cta {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
  border-color: var(--blue);
  color: var(--blue);
}
.nav--mobile .nav__cta:hover { background: var(--blue); color: var(--white); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: calc(var(--z-header) - 2);
  opacity: 0; visibility: hidden;
  transition: var(--t-base);
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border-radius: var(--r-sm);
  transition: var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--lg  { padding: 1.1rem 3rem; font-size: 0.66rem; }
.btn--sm  { padding: 0.7rem 1.5rem; font-size: 0.58rem; }

.btn--dark        { background: var(--dark);  color: var(--white); border-color: var(--dark); }
.btn--dark:hover  { background: var(--dark-mid); border-color: var(--dark-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--blue        { background: var(--blue);  color: var(--white); border-color: var(--blue); }
.btn--blue:hover  { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.btn--beige       { background: var(--beige); color: var(--dark); border-color: var(--beige); }
.btn--beige:hover { background: var(--beige-dark); border-color: var(--beige-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(221,184,149,.35); }

.btn--outline-light       { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: var(--white); color: var(--dark); border-color: var(--white); transform: translateY(-2px); }

.btn--outline-dark        { background: transparent; color: var(--dark);  border-color: var(--dark); }
.btn--outline-dark:hover  { background: var(--dark);  color: var(--white); transform: translateY(-2px); }

.btn--outline-blue        { background: transparent; color: var(--blue);  border-color: var(--blue); }
.btn--outline-blue:hover  { background: var(--blue);  color: var(--white); transform: translateY(-2px); }

.btn--ghost       { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.18); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.38); transform: translateY(-2px); }

/* Waitlist CTAs can have long labels; allow wrapping to prevent overflow. */
.btn[data-modal="waitlist"] {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}

.pkg-card .btn[data-modal="waitlist"] {
  width: 100%;
  justify-content: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #4146A3 0%, #575CB3 35%, #7B82C9 65%, #A8ADDC 100%);
}
/* Ambient orbs */
.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 65%; padding-bottom: 65%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65,70,163,.18) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -8%;
  width: 55%; padding-bottom: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,184,149,.1) 0%, transparent 70%);
  animation: orbFloat 11s ease-in-out infinite reverse;
}
@keyframes orbFloat { 0%,100%{ transform:translate(0,0) } 50%{ transform:translate(20px,-20px) } }

.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 5rem) 0 7rem;
  width: 100%;
}
.hero__container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

.hero__eyebrow {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--beige-light);
  display: block;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeInUp .7s .2s ease forwards;
}
.hero__title {
  font-family: var(--heading);
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp .7s .35s ease forwards;
}
.hero__title em { font-style: italic; color: var(--beige-light); }

.hero__text {
  font-family: var(--body);
  font-size: clamp(.85rem, 1.4vw, .95rem);
  font-weight: 300;
  color: rgba(255,255,255,.68);
  max-width: 560px;
  line-height: 1.95;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp .7s .5s ease forwards;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp .7s .65s ease forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.35));
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-text {
  font-family: var(--body);
  font-size: 0.58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
}
@keyframes fadeInUp { from{ opacity:0; transform:translateY(28px) } to{ opacity:1; transform:none } }
@keyframes fadeIn   { from{ opacity:0 } to{ opacity:1 } }
@keyframes scrollPulse { 0%,100%{ opacity:.3 } 50%{ opacity:.8 } }

/* ============================================================
   IMPACT QUOTE
   ============================================================ */
.impact-quote {
  background: var(--cream);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.impact-quote__mark {
  position: absolute;
  top: -4rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--heading);
  font-size: 22rem;
  line-height: 1;
  color: rgba(65,70,163,.05);
  pointer-events: none;
  user-select: none;
}
.impact-quote__text {
  font-family: var(--heading);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.18;
  letter-spacing: -.02em;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.impact-quote__text em { font-style: italic; color: var(--blue); }
.impact-quote__credit {
  font-family: var(--body);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2.5rem;
}

/* ============================================================
   ABOUT REVYA
   ============================================================ */
.about-revya { background: var(--white); padding: var(--space-xl) 0; }

.about-revya__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-revya__frame {
  position: relative;
}
.about-revya__photo {
  width: 100%;
  padding-bottom: 125%;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(155deg, var(--blue-pale) 0%, var(--cream-mid) 100%);
}
/* Decorative frame accent */
.about-revya__photo::before {
  content: '';
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  right: -1.5rem; bottom: -1.5rem;
  border: 1px solid var(--blue);
  border-radius: var(--r-md);
  z-index: -1;
}
/* Floating number badge */
.about-revya__badge {
  position: absolute;
  bottom: -2rem; right: -2rem;
  background: var(--dark);
  color: var(--white);
  padding: 1.4rem 1.6rem;
  min-width: 110px;
  text-align: center;
  border-radius: var(--r-sm);
}
.about-revya__badge-n    { font-family: var(--heading); font-size: 2.8rem; font-weight: 300; color: var(--beige); display: block; }
.about-revya__badge-text { font-family: var(--body); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); display: block; margin-top: .25rem; }

.about-revya__content { padding: 1.5rem 0; }
.about-revya__lead    { font-family: var(--heading); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; color: var(--dark); line-height: 1.4; margin: 1.5rem 0; }
.about-revya__text    { font-size: .88rem; color: var(--text-mid); line-height: 1.95; margin-bottom: 1.5rem; }

.about-revya__list    { margin: 2rem 0; }
.about-revya__list li {
  font-size: .83rem;
  color: var(--text-mid);
  padding: .65rem 0;
  border-bottom: 1px solid var(--cream-mid);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-revya__list li::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

/* ============================================================
   MARQUEE / QUOTE STRIP
   ============================================================ */
.quote-strip {
  background: var(--dark);
  padding: 3.5rem 0;
  overflow: hidden;
}
.quote-strip__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.quote-strip__inner {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.quote-strip__item {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  padding: 0 2.5rem;
}
.quote-strip__sep {
  color: var(--beige);
  opacity: .6;
  padding: 0;
}
@keyframes marquee { 0%{ transform:translateX(0) } 100%{ transform:translateX(-50%) } }

/* ============================================================
   METHOD SECTION
   ============================================================ */
.method {
  background: var(--dark);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.method::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(to left, rgba(65,70,163,.04), transparent);
  pointer-events: none;
}
.method__header { text-align: center; margin-bottom: 5rem; position: relative; z-index: 1; }
.method__title  { font-family: var(--heading); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; color: var(--white); margin: 1rem 0; }
.method__sub    { font-family: var(--body); font-size: .88rem; font-weight: 300; color: rgba(255,255,255,.5); max-width: 560px; margin: 1rem auto; line-height: 1.85; }

.method__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative; z-index: 1;
}
.method__card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  padding: 2rem 1.6rem;
  border-radius: var(--r-md);
  transition: var(--t-base);
}
.method__card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(65,70,163,.3);
  transform: translateY(-5px);
}
.method__card-num  { font-family: var(--heading); font-size: 2.8rem; font-weight: 300; color: rgba(65,70,163,.22); display: block; margin-bottom: .4rem; }
.method__card-name { font-family: var(--body); font-size: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-light); margin-bottom: .8rem; }
.method__card-text { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.75; }

.method__footnote {
  text-align: center;
  font-family: var(--heading);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.5);
  margin-top: 5rem;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
  line-height: 1.4;
}

/* ============================================================
   FOR WHOM SECTION
   ============================================================ */
.for-whom { background: var(--cream); padding: var(--space-xl) 0; }

.for-whom__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}
.for-whom__visual {
  background: linear-gradient(155deg, var(--blue) 0%, var(--dark) 100%);
  border-radius: var(--r-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.for-whom__visual::before {
  content: '';
  position: absolute;
  top: -30%; right: -25%;
  width: 80%; padding-bottom: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
}
.for-whom__visual-text {
  font-family: var(--heading);
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
  opacity: .82;
  position: relative; z-index: 1;
}

.for-whom__list { display: flex; flex-direction: column; gap: .8rem; }
.for-whom__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: var(--r-md);
  border-left: 2px solid transparent;
  transition: var(--t-fast);
}
.for-whom__item:hover { border-left-color: var(--blue); transform: translateX(4px); }
.for-whom__icon { color: var(--blue); flex-shrink: 0; margin-top: .08rem; font-size: .9rem; }
.for-whom__text { font-size: .83rem; color: var(--text-mid); line-height: 1.6; }

/* ============================================================
   PACKAGES / ACOMPANHAMENTOS
   ============================================================ */
.packages { background: var(--white); padding: var(--space-xl) 0; }

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  justify-items: center;
  gap: 2rem;
  margin-top: 4rem;
}
.pkg-card {
  border: 1px solid var(--cream-mid);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  height: 100%;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--t-base);
}
.pkg-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pkg-card--featured { background: var(--dark); border-color: transparent; padding-top: 3.2rem; }

.pkg-card__badge {
  position: absolute;
  top: 1rem; left: 50%;
  transform: translateX(-50%);
  background: var(--beige);
  color: var(--dark);
  font-family: var(--body);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-card__duration { font-family: var(--body); font-size: .62rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); margin-bottom: .8rem; }
.pkg-card--featured .pkg-card__duration { color: var(--blue-light); }
.pkg-card__name   { font-family: var(--heading); font-size: 1.65rem; font-weight: 400; color: var(--dark); line-height: 1.15; margin-bottom: 1rem; }
.pkg-card--featured .pkg-card__name { color: var(--white); }
.pkg-card__text   { font-size: .82rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.pkg-card--featured .pkg-card__text { color: rgba(255,255,255,.55); }

.pkg-card__includes-label {
  font-family: var(--body);
  font-size: .6rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .8rem;
}
.pkg-card--featured .pkg-card__includes-label { color: rgba(255,255,255,.3); }
.pkg-card__includes { flex: 1; margin-bottom: 2rem; }
.pkg-card__inc-item {
  font-size: .8rem;
  color: var(--text-mid);
  padding: .45rem 0;
  border-bottom: 1px solid var(--cream-mid);
  display: flex; align-items: center; gap: .8rem;
}
.pkg-card--featured .pkg-card__inc-item { color: rgba(255,255,255,.55); border-bottom-color: rgba(255,255,255,.06); }
.pkg-card__inc-item::before { content: ''; width: 14px; height: 1px; background: var(--blue); flex-shrink: 0; }
.pkg-card--featured .pkg-card__inc-item::before { background: var(--beige); }

/* ============================================================
   PULL QUOTE BLOCK
   ============================================================ */
.pull-quote {
  background: var(--beige-pale);
  padding: 7rem 0;
  text-align: center;
}
.pull-quote__text {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto;
  letter-spacing: -.015em;
}
.pull-quote__text em { font-style: italic; color: var(--blue); }

/* ============================================================
   ENDOCLUB SECTION
   ============================================================ */
.endoclub {
  background: linear-gradient(140deg, var(--blue) 0%, var(--dark) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.endoclub::before {
  content: '';
  position: absolute;
  top: -40%; left: 55%;
  width: 75%; padding-bottom: 75%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  pointer-events: none;
}
.endoclub__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  position: relative; z-index: 1;
}
.endoclub__title { font-family: var(--heading); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; color: var(--white); line-height: 1.12; margin: 1rem 0; }
.endoclub__text  { font-size: .88rem; color: rgba(255,255,255,.62); line-height: 1.9; margin-bottom: 2.5rem; }

.endoclub__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.endoclub__feat {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  padding: .8rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
}
.endoclub__feat::before { content: '✦'; color: var(--beige); font-size: .62rem; flex-shrink: 0; }

/* ============================================================
   ACADEMY SECTION
   ============================================================ */
.academy { background: var(--cream); padding: var(--space-xl) 0; }

.academy__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
}
.academy__visual {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.academy__visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--beige));
}
.academy__vis-label { font-family: var(--body); font-size: .6rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 1rem; display: block; }
.academy__vis-title { font-family: var(--heading); font-size: 2.4rem; font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.academy__vis-text  { font-size: .82rem; color: rgba(255,255,255,.48); line-height: 1.82; }
.academy__tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.academy__tag  {
  font-family: var(--body); font-size: .62rem; font-weight: 500; letter-spacing: .1em;
  padding: .4rem 1rem;
  border: 1px solid rgba(65,70,163,.35);
  color: var(--blue-light);
  border-radius: 20px;
}

.academy__content { padding: 1rem 0; }
.academy__title   { font-family: var(--heading); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; color: var(--dark); margin: 1rem 0; line-height: 1.2; }
.academy__text    { font-size: .88rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 2rem; }

/* ============================================================
   COURSE PREVIEW (HOME)
   ============================================================ */
.course-preview { background: var(--white); padding: var(--space-xl) 0; }

.course-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.course-preview__visual {
  background: linear-gradient(145deg, var(--dark-mid) 0%, var(--dark) 100%);
  border-radius: var(--r-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.course-preview__visual::before {
  content: 'NM';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading);
  font-size: 9rem;
  font-weight: 300;
  color: rgba(255,255,255,.05);
  letter-spacing: .3em;
  pointer-events: none;
}
.course-preview__vis-title {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  position: relative; z-index: 1;
  margin-bottom: .5rem;
}
.course-preview__vis-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  position: relative; z-index: 1;
}

.course-preview__title { font-family: var(--heading); font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 400; color: var(--dark); margin: 1rem 0; line-height: 1.2; }
.course-preview__text  { font-size: .88rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 2rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); padding: var(--space-xl) 0; }

.faq__list { max-width: 800px; margin: 0 auto; margin-top: 3rem; }
.faq__item { border-bottom: 1px solid var(--cream-mid); }

.faq__q {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  transition: var(--t-fast);
}
.faq__q:hover { color: var(--blue); }
.faq__icon {
  width: 28px; height: 28px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: block;
  position: relative;
  flex-shrink: 0;
  color: transparent;
  background: var(--blue-pale);
  font-size: 0;
  line-height: 0;
  box-shadow: 0 0 0 2px rgba(65,70,163,.12);
  transition: var(--t-base);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--blue-dark);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  transition: var(--t-fast);
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__q:hover .faq__icon { background: var(--blue); }
.faq__q:hover .faq__icon::before,
.faq__q:hover .faq__icon::after { background: var(--white); }
.faq__item.active .faq__icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq__item.active .faq__icon::before,
.faq__item.active .faq__icon::after { background: var(--white); }

.faq__a          { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.faq__a-inner    { padding: 0 0 1.8rem; font-size: .87rem; color: var(--text-mid); line-height: 1.92; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65,70,163,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section__title  { font-family: var(--heading); font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 300; color: var(--white); line-height: 1.2; margin: 1rem 0; position: relative; z-index: 1; }
.cta-section__text   { font-size: .9rem; color: rgba(255,255,255,.52); max-width: 480px; margin: 0 auto 2.8rem; line-height: 1.85; position: relative; z-index: 1; }
.cta-section__btns   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blue), var(--beige), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__logo    { height: 36px; width: auto; margin-bottom: 1.4rem; }
.footer__tagline { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.82; max-width: 270px; margin-bottom: 2rem; }
.footer__social  { display: flex; gap: .8rem; }
.footer__soc-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: var(--t-fast);
}
.footer__soc-link:hover { border-color: var(--blue); color: var(--blue); background: rgba(65,70,163,.08); }
.footer__soc-link svg   { width: 16px; height: 16px; }

.footer__col-title { font-family: var(--body); font-size: .58rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.4rem; }
.footer__link      { display: block; font-size: .8rem; color: rgba(255,255,255,.46); padding: .38rem 0; transition: var(--t-fast); }
.footer__link:hover{ color: var(--white); padding-left: 4px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy  { font-size: .72rem; color: rgba(255,255,255,.22); }
.footer__legal { display: flex; gap: 2rem; }
.footer__legal a { font-size: .7rem; color: rgba(255,255,255,.22); }
.footer__legal a:hover { color: rgba(255,255,255,.48); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-wrap {
  position: fixed;
  bottom: 2rem; right: 2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  z-index: var(--z-float);
}
.btn-whatsapp {
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--t-base);
  text-decoration: none;
}
.btn-whatsapp svg { width: 24px; height: 24px; }
.btn-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.52); }

.btn-top {
  width: 44px; height: 44px;
  background: var(--dark-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .8rem;
  cursor: pointer;
  transition: var(--t-base);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
}
.btn-top.visible    { opacity: 1; visibility: visible; transform: translateY(0); }
.btn-top:hover      { background: var(--blue); border-color: var(--blue); }
.btn-top svg        { width: 16px; height: 16px; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,22,36,.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0; visibility: hidden;
  transition: var(--t-base);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: var(--r-lg);
  width: 100%; max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(32px) scale(.97);
  transition: var(--t-base);
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

/* Decorative top bar */
.modal::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--beige));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.modal__head { padding: 2.5rem 2.5rem 0; position: relative; }
.modal__close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 30px; height: 30px;
  border: 1px solid var(--cream-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: none;
  color: var(--text-mid); font-size: .75rem;
  transition: var(--t-fast);
}
.modal__close:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.modal__label { font-family: var(--body); font-size: .6rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--blue); display: block; }
.modal__title { font-family: var(--heading); font-size: 1.9rem; font-weight: 400; color: var(--dark); margin: .5rem 0; line-height: 1.2; }
.modal__sub   { font-size: .82rem; color: var(--text-mid); line-height: 1.72; }

.modal__body  { padding: 1.5rem 2.5rem 2.5rem; }

/* Form */
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.15rem; }
.form-label {
  display: block;
  font-family: var(--body); font-size: .62rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: .45rem;
}
.form-input,
.form-select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--cream-mid);
  border-radius: var(--r-md);
  font-size: .85rem; color: var(--text);
  background: var(--cream);
  transition: var(--t-fast);
  -webkit-appearance: none; appearance: none;
}
.form-input:focus,
.form-select:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(65,70,163,.12); }
.form-input.error,
.form-select.error { border-color: #E07070; background: #FFF5F5; }
.form-err { display: none; font-size: .7rem; color: #C0392B; margin-top: .35rem; }
.form-err.show { display: block; }

.form-success { display: none; text-align: center; padding: 3.5rem 2rem; }
.form-success.show { display: block; }
.form-success__icon { font-size: 2.8rem; margin-bottom: 1rem; }
.form-success__title{ font-family: var(--heading); font-size: 1.8rem; font-weight: 400; color: var(--dark); margin-bottom: .8rem; }
.form-success__text { font-size: .85rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-reveal="fade-up"]     { transform: translateY(32px); }
[data-reveal="fade-in"]     { transform: none; }
[data-reveal="fade-left"]   { transform: translateX(-32px); }
[data-reveal="fade-right"]  { transform: translateX(32px); }
[data-reveal].revealed      { opacity: 1; transform: none; }

[data-delay="100"] { transition-delay: .1s }
[data-delay="200"] { transition-delay: .2s }
[data-delay="300"] { transition-delay: .3s }
[data-delay="400"] { transition-delay: .4s }
[data-delay="500"] { transition-delay: .5s }
[data-delay="600"] { transition-delay: .6s }
[data-delay="700"] { transition-delay: .7s }
[data-delay="800"] { transition-delay: .8s }

/* ============================================================
   METODO PAGE — HERO & TECH
   ============================================================ */
.hero--metodo {
  min-height: 78vh;
  background: linear-gradient(148deg, #0C1924 0%, #182436 45%, #1E2F4A 70%, #2A4060 100%);
}

.tech-features { background: var(--white); padding: var(--space-xl) 0; }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.tech-item {
  display: flex; gap: 1.4rem; padding: 1.4rem 1.5rem;
  border: 1px solid var(--cream-mid); border-radius: var(--r-md);
  transition: var(--t-base);
}
.tech-item:hover { border-color: var(--blue); background: var(--blue-pale); transform: translateY(-2px); }
.tech-item__icon { color: var(--blue); flex-shrink: 0; font-size: 1rem; margin-top: .1rem; }
.tech-item__title { font-family: var(--heading); font-size: 1.05rem; font-weight: 500; color: var(--dark); margin-bottom: .3rem; }
.tech-item__text  { font-size: .78rem; color: var(--text-mid); line-height: 1.72; }

/* ============================================================
   CURSO PAGE — HERO, PRICE, BENEFITS, TESTIMONIALS, BONUS
   ============================================================ */
.hero--curso {
  min-height: 88vh;
  background: linear-gradient(138deg, #111D2E 0%, #1A2D46 45%, #263D5C 80%, #3A567A 100%);
}

/* Target audience (yes/no) */
.audience-section { background: var(--cream); padding: var(--space-xl) 0; }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.audience-col { background: var(--white); border-radius: var(--r-lg); padding: 2.5rem; }
.audience-col--no { background: var(--dark); }
.audience-col__label {
  font-family: var(--body); font-size: .6rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  margin-bottom: 1.5rem; display: block;
}
.audience-col__label--yes { color: var(--blue); }
.audience-col__label--no  { color: var(--beige); }
.audience-item {
  display: flex; align-items: flex-start; gap: .9rem;
  font-size: .83rem; padding: .55rem 0;
  border-bottom: 1px solid var(--cream-mid);
}
.audience-col--no .audience-item { color: rgba(255,255,255,.6); border-bottom-color: rgba(255,255,255,.06); }
.audience-item:last-child { border-bottom: none; }
.audience-icon--yes { color: var(--blue);  }
.audience-icon--no  { color: var(--beige); }

/* Benefits */
.benefits { background: var(--white); padding: var(--space-xl) 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.benefit-card {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 2rem;
  border-top: 2px solid var(--blue);
  transition: var(--t-base);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }
.benefit-card__n    { font-family: var(--heading); font-size: 2.2rem; font-weight: 300; color: var(--blue); display: block; margin-bottom: .4rem; }
.benefit-card__name { font-family: var(--heading); font-size: 1.1rem; font-weight: 500; color: var(--dark); margin-bottom: .7rem; }
.benefit-card__text { font-size: .8rem; color: var(--text-mid); line-height: 1.72; }

/* Testimonials */
.testimonials { background: var(--cream); padding: var(--space-xl) 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.testi-card { background: var(--white); border-radius: var(--r-lg); padding: 2.2rem; position: relative; }
.testi-card::before {
  content: '"';
  position: absolute; top: .5rem; left: 1.5rem;
  font-family: var(--heading); font-size: 5rem;
  color: var(--blue-light); opacity: .35; line-height: 1;
}
.testi-card__text   { font-family: var(--heading); font-size: 1rem; font-style: italic; color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; padding-top: 2.2rem; }
.testi-card__author { display: flex; align-items: center; gap: 1rem; }
.testi-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--dark)); flex-shrink: 0; }
.testi-card__name   { font-family: var(--body); font-size: .73rem; font-weight: 600; color: var(--dark); }
.testi-card__detail { font-size: .68rem; color: var(--text-light); margin-top: .15rem; }

/* Bonus */
.bonus { background: var(--dark); padding: var(--space-xl) 0; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.bonus-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(65,70,163,.18);
  border-radius: var(--r-md);
  padding: 2rem;
  text-align: center;
  transition: var(--t-base);
}
.bonus-card:hover { background: rgba(255,255,255,.06); border-color: rgba(65,70,163,.45); transform: translateY(-4px); }
.bonus-card__icon  { font-size: 2rem; margin-bottom: .9rem; }
.bonus-card__title { font-family: var(--heading); font-size: 1.2rem; font-weight: 400; color: var(--white); margin-bottom: .7rem; }
.bonus-card__text  { font-size: .78rem; color: rgba(255,255,255,.48); line-height: 1.72; }
.bonus-card__value { font-family: var(--body); font-size: .62rem; font-weight: 600; letter-spacing: .1em; color: var(--beige); margin-top: .9rem; }

/* About Instructor */
.about-pro { background: var(--cream); padding: var(--space-xl) 0; }
.about-pro__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5.5rem;
  align-items: center;
}
.about-pro__photo {
  width: 100%; padding-bottom: 122%;
  position: relative;
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(155deg, var(--blue-pale) 0%, var(--cream-mid) 100%);
}
.about-pro__photo::after {
  content: '';
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  right: -1.5rem; bottom: -1.5rem;
  border: 1px solid var(--blue);
  border-radius: var(--r-lg);
  z-index: -1;
}
.about-pro__label       { font-family: var(--body); font-size: .6rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: .8rem; }
.about-pro__name        { font-family: var(--heading); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 300; color: var(--dark); margin-bottom: 1rem; }
.about-pro__credentials { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0; }
.credential             { font-family: var(--body); font-size: .63rem; font-weight: 500; padding: .35rem .9rem; background: var(--blue-pale); color: var(--blue-dark); border-radius: 20px; }
.about-pro__text        { font-size: .88rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 1rem; }

/* Price Section */
.price-section { background: var(--dark); padding: var(--space-xl) 0; }
.price-card {
  max-width: 540px;
  margin: 3rem auto 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--blue), var(--beige));
}
.price-card__label       { font-family: var(--body); font-size: .62rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--beige-light); }
.price-card__title       { font-family: var(--heading); font-size: 2.2rem; font-weight: 300; color: var(--white); margin: .8rem 0; line-height: 1.2; }
.price-divider           { width: 40px; height: 1px; background: var(--blue); margin: 1.2rem auto; }
.price-old               { font-size: .85rem; color: rgba(255,255,255,.3); text-decoration: line-through; margin-bottom: .4rem; }
.price-installments      { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: .2rem; }
.price-main              { font-family: var(--heading); font-size: 4rem; font-weight: 300; color: var(--white); line-height: 1; margin: .3rem 0; }
.price-main small        { font-size: 1.3rem; vertical-align: super; }
.price-cash              { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .4rem; margin-bottom: 1.5rem; }
.price-cash strong       { color: var(--beige-light); }
.price-guarantee         { font-size: .7rem; color: rgba(255,255,255,.28); margin-top: 1rem; letter-spacing: .05em; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  :root { --header-h: 70px; }
  .nav { display: none; }
  .nav--mobile { display: flex; }
  .menu-toggle { display: flex; }

  .about-revya__grid { gap: 3.5rem; }
  .method__grid { grid-template-columns: repeat(2, 1fr); }
  .packages__grid { gap: 1.5rem; }
  .endoclub__grid { gap: 3rem; }
  .academy__grid { gap: 3rem; }
  .course-preview__grid { gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-pro__grid { gap: 3rem; }
  .audience-grid { gap: 1.5rem; }
  .for-whom__grid { gap: 3rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --space-xl: 4.5rem; --space-xxl: 7rem; }

  .about-revya__grid,
  .for-whom__grid,
  .endoclub__grid,
  .academy__grid,
  .course-preview__grid,
  .about-pro__grid     { grid-template-columns: 1fr; }

  .about-revya__frame,
  .about-pro__photo    { max-width: 320px; margin: 0 auto; }
  .about-revya__photo,
  .about-pro__photo    { padding-bottom: 100%; }
  .about-revya__badge  { bottom: -1.5rem; right: -.5rem; }

  .method__grid        { grid-template-columns: 1fr; }
  .packages__grid      { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pkg-card            { max-width: none; }
  .benefits-grid,
  .testi-grid,
  .bonus-grid          { grid-template-columns: 1fr; }
  .audience-grid       { grid-template-columns: 1fr; }
  .tech-grid           { grid-template-columns: 1fr; }
  .footer__grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom      { flex-direction: column; gap: 1rem; text-align: center; }

  .form-row            { grid-template-columns: 1fr; }
  .modal__head,
  .modal__body         { padding-left: 1.5rem; padding-right: 1.5rem; }

  .hero__actions       { flex-direction: column; align-items: flex-start; }
  .cta-section__btns   { flex-direction: column; align-items: center; }
  .hero__scroll        { display: none; }
  .endoclub__features  { grid-template-columns: 1fr; }
  .impact-quote__mark  { font-size: 12rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .btn { font-size: .6rem; padding: .85rem 1.8rem; }
  .hero__title { font-size: 3rem; }
  .float-wrap { bottom: 1.2rem; right: 1.2rem; }
  .price-card { padding: 2.5rem 1.5rem; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .header, .footer, .float-wrap, .modal-overlay, .loading-screen { display: none !important; }
}
