/* ─── FONTS ─── */
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-LightItalic.ttf') format('truetype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/CormorantGaramond-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('fonts/Jost-ExtraLight.ttf') format('truetype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('fonts/Jost-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('fonts/Jost-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('fonts/Jost-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('fonts/Jost-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Jost'; src: url('fonts/Jost-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Dancing Script'; src: url('fonts/DancingScript-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Dancing Script'; src: url('fonts/DancingScript-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Dancing Script'; src: url('fonts/DancingScript-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Dancing Script'; src: url('fonts/DancingScript-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F7F2EB;
  --beige-light: #EDE5D8;
  --beige-mid: #D9CEBB;
  --beige-dark: #C8B99A;
  --taupe: #B89E80;
  --taupe-dark: #9A7F5F;
  --olive: #757248;
  --olive-light: #969370;
  --olive-muted: #C8C5A3;
  --cana: #8EAB6E;
  --cana-light: #B8CFA0;
  --cana-pale: #D8E8CA;
  --boho: #C47A52;
  --boho-light: #DBA882;
  --brown-dark: #3E2D1C;
  --brown-mid: #6B4C32;
  --white: #FDFAF6;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --font-script: 'Dancing Script', cursive;
  --nav-h: 68px;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --shadow-sm: 0 2px 12px rgba(62,45,28,.07);
  --shadow-md: 0 6px 28px rgba(62,45,28,.10);
  --shadow-lg: 0 16px 56px rgba(62,45,28,.14);
  --transition: 0.28s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--cream); color: var(--brown-dark); font-family: var(--font-body); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── TYPOGRAPHY UTILS ─── */
.label {
  font-size: 10px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: var(--taupe); display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.label::after { content: ''; flex: 0 0 48px; height: 1px; background: var(--beige-mid); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; color: var(--brown-dark); }
h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 300; margin-bottom: 24px; }
h2 em { color: var(--olive); font-style: italic; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 500; margin-bottom: 12px; }
h3 .highlight { color: var(--boho); font-weight: 700; }
p { font-size: 17px; font-weight: 300; color: var(--brown-mid); line-height: 1.85; }
p + p { margin-top: 16px; }

.script { font-family: var(--font-script); font-size: 28px; color: var(--taupe); line-height: 1.2; }

/* ─── LAYOUT ─── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--brown-dark); }
.section--beige { background: var(--beige-light); }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; border-radius: var(--radius-pill);
  padding: 15px 36px; transition: all var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--olive); color: var(--white); }
.btn-primary:hover { background: var(--brown-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(117,114,72,.35); }
.btn-secondary { background: transparent; border: 1.5px solid var(--taupe); color: var(--brown-dark); }
.btn-secondary:hover { border-color: var(--olive); color: var(--olive); }
.btn-white { background: var(--white); color: var(--olive); }
.btn-white:hover { background: var(--beige-light); transform: translateY(-2px); }
.btn-lg { font-size: 13px; padding: 18px 48px; }
.btn-icon { width: 20px; height: 20px; }

/* ─── DECO LINE ─── */
.deco-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--taupe), transparent);
  margin: 32px auto;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(247,242,235,.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--beige-mid);
  transition: transform .35s ease, box-shadow .3s ease;
}
#site-nav.hidden { transform: translateY(-100%); }
#site-nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo img { height: 40px; width: auto; }
.nav-logo span { font-family: var(--font-script); font-size: 22px; color: var(--taupe); }

.nav-links {
  display: none; gap: 32px;
}
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brown-mid); transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--olive); }

.nav-cta { display: none; }
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--brown-dark); transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: var(--cream); z-index: 800; padding: 40px 24px;
  flex-direction: column; gap: 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 18px; font-weight: 400; color: var(--brown-dark); letter-spacing: .08em; padding: 8px 0; border-bottom: 1px solid var(--beige-mid); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  margin-top: 68px;
  min-height: 100vh;
  padding: 80px 24px;
  background:
    url('images/gi-borba-yoga-hero.webp') center center / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
/* overlay escuro uniforme para garantir contraste WCAG AA */
#hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: rgba(30, 20, 10, .72);
}

.hero-inner { max-width: 760px; position: relative; }
.hero-tag {
  display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(253,250,246,.9); border: 1px solid rgba(253,250,246,.4);
  padding: 7px 22px; border-radius: var(--radius-pill); margin-bottom: 40px;
}
.hero-h1 {
  font-family: var(--font-display); font-size: clamp(44px, 9vw, 90px); font-weight: 400;
  font-style: italic; line-height: 1.05; color: #fff; margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.hero-h1 em { color: var(--cana-light); font-style: inherit; }
.hero-sub {
  font-size: clamp(14px, 2vw, 17px); font-weight: 400; color: rgba(253,250,246,.95);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.85;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* botão secundário adaptado para fundo escuro */
#hero .btn-secondary {
  border-color: rgba(253,250,246,.45);
  color: var(--white);
}
#hero .btn-secondary:hover {
  border-color: var(--cana-light);
  color: var(--cana-light);
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(253,250,246,.6);
  opacity: .85;
}
.hero-scroll svg { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ─────────────────────────────────────────
   VSL
───────────────────────────────────────── */
#vsl { background: var(--brown-dark); padding: 80px 24px; }
.vsl-inner { max-width: 420px; margin: 0 auto; text-align: center; }
.vsl-label { color: var(--taupe); }
.vsl-label::after { background: rgba(255,255,255,.12); }
.vsl-title { color: var(--white); font-size: clamp(24px, 4vw, 38px); font-weight: 300; margin-bottom: 32px; }
.vsl-title em { color: var(--cana-light); }
.vsl-player-wrap {
  position: relative; width: 100%; max-width: 340px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  background: #000;
}
.vsl-player-wrap::before { content: ''; display: block; padding-top: 177.78%; } /* 9:16 */
.vsl-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--radius);
}
.vsl-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(62,45,28,.32); transition: background var(--transition);
  border-radius: var(--radius); cursor: pointer;
}
.vsl-play-btn:hover { background: rgba(62,45,28,.18); }
.vsl-play-btn svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); transition: transform var(--transition); }
.vsl-play-btn:hover svg { transform: scale(1.1); }
.vsl-play-btn.playing { opacity: 0; pointer-events: none; background: transparent; }
.vsl-play-btn:disabled { cursor: default; }

/* ─────────────────────────────────────────
   PROMESSA
───────────────────────────────────────── */
#promessa { background: var(--white); }
.promessa-inner { max-width: 720px; margin: 0 auto; }
.promessa-lead {
  font-family: var(--font-display); font-size: clamp(26px, 4vw, 42px);
  font-weight: 300; line-height: 1.2; color: var(--brown-dark); margin-bottom: 40px;
}
.promessa-lead em { color: var(--olive); font-style: italic; }
.promessa-body { display: flex; flex-direction: column; gap: 20px; }
.promessa-body p { font-size: 18px; }
.promessa-highlight {
  border-left: 3px solid var(--olive); padding-left: 24px;
  font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic; color: var(--brown-dark); margin: 8px 0;
}

/* ─────────────────────────────────────────
   INDICAÇÃO
───────────────────────────────────────── */
#indicacao {
  background: var(--beige-light); padding: 56px 24px; text-align: center;
}
.indicacao-inner { max-width: 640px; margin: 0 auto; }
.indicacao-icon { font-size: 28px; margin-bottom: 16px; }
.indicacao-text {
  font-family: var(--font-display); font-size: clamp(20px, 3vw, 30px);
  font-weight: 300; font-style: italic; color: var(--brown-dark); line-height: 1.4;
}
.indicacao-text strong { font-weight: 600; color: var(--olive); font-style: normal; }

/* ─────────────────────────────────────────
   PRA QUEM É
───────────────────────────────────────── */
#pra-quem { background: var(--beige-light); }
.pra-quem-inner { max-width: 900px; margin: 0 auto; }
.pra-quem-grid { display: grid; gap: 48px; }
.pq-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.pq-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-mid);
}
.pq-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cana-pale); border: 1.5px solid var(--cana);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.pq-check svg { color: var(--olive); }
.pq-text { font-size: 16px; color: var(--brown-mid); }
.pq-objections { margin-top: 48px; }
.pq-objections h3 { margin-bottom: 20px; color: var(--brown-dark); }
.objection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.obj-tag {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 20px 20px 24px;
  border-left: 3px solid var(--olive);
  flex: 0 1 280px;
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--brown-dark);
  line-height: 1.4;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.obj-tag::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--olive);
  opacity: .25;
  position: absolute;
  top: 4px;
  right: 14px;
  line-height: 1;
}

/* ─────────────────────────────────────────
   ACOLHIMENTO
───────────────────────────────────────── */
#acolhimento {
  background: linear-gradient(135deg, var(--cana-pale) 0%, var(--beige-light) 100%);
  text-align: center; padding: 80px 24px;
}
.acolhimento-inner { max-width: 640px; margin: 0 auto; }
.acolhimento-inner h2 { margin-bottom: 20px; }
.acolhimento-inner p { font-size: 17px; color: var(--brown-dark); }
.acolhimento-inner .script { margin: 24px auto; display: block; }

/* ─────────────────────────────────────────
   SOBRE A PROFESSORA
───────────────────────────────────────── */
#sobre { background: var(--white); }
.sobre-inner { max-width: 1100px; margin: 0 auto; }
.sobre-grid { display: grid; gap: 48px; align-items: start; }
.sobre-photo { position: relative; max-width: 400px; margin: 0 auto; }
.sobre-photo img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4; object-fit: cover; object-position: top;
}
.sobre-photo-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--olive); color: var(--white);
  border-radius: var(--radius); padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow-md);
}
.sobre-photo-badge strong { display: block; font-size: 28px; font-family: var(--font-display); line-height: 1; }
.sobre-photo-badge span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }

.sobre-content { display: flex; flex-direction: column; gap: 20px; }
.sobre-name {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px);
  font-weight: 300; line-height: 1.1; margin-bottom: 4px;
}
.sobre-name em { color: var(--olive); font-style: italic; }
.sobre-title { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--taupe-dark); margin-bottom: 20px; }
.sobre-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0; }
.credential-badge {
  background: var(--beige-light); border: 1px solid var(--beige-mid);
  border-radius: var(--radius-pill); padding: 6px 14px;
  font-size: 11px; font-weight: 500; color: var(--olive);
  letter-spacing: .06em;
}

@media (min-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr 1.4fr; }
  .pra-quem-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   MODALIDADES
───────────────────────────────────────── */
#modalidades { background: var(--beige-light); }
.modal-hero {
  background: var(--brown-dark); border-radius: var(--radius);
  padding: 48px; margin-bottom: 48px; position: relative; overflow: hidden;
}
.modal-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(142,171,110,.18) 0%, transparent 70%);
  pointer-events: none;
}
.modal-hero-label { color: var(--taupe); }
.modal-hero-label::after { background: rgba(255,255,255,.15); }
.modal-hero h2 { color: var(--white); }
.modal-hero h2 em { color: var(--cana-light); }
.modal-hero p { color: rgba(253,250,246,.75); font-size: 17px; max-width: 640px; }
.modal-hero-how { margin-top: 32px; text-align: center; }
.modal-hero-how h3 {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); font-weight: 300;
  font-style: italic; color: var(--cana-light); margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.modal-how-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 20px; }
.modal-how-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background var(--transition), border-color var(--transition);
  flex: 0 1 auto;
  width: 200px;
  min-width: 180px;
}
.modal-how-card:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); }
.modal-how-icon { font-size: 26px; line-height: 1; color: rgba(253,250,246,.85); display: block; }
.modal-how-text { font-size: 14px; color: rgba(253,250,246,.82); line-height: 1.65; }
.modal-how-note {
  margin-top: 16px; font-size: 13px; color: rgba(253,250,246,.5);
  font-style: italic; display: flex; align-items: center; gap: 8px;
}
.modal-how-note i { font-size: 14px; color: rgba(253,250,246,.5); }

.modal-others h3 {
  color: var(--brown-dark);
  margin-bottom: 24px;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--olive);
}
.modal-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.modal-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--beige-mid);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.modal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.modal-card-img-wrap {
  width: 100%; aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0;
}
.modal-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.modal-card:hover .modal-card-img-wrap img { transform: scale(1.05); }
.modal-card-body { padding: 28px 28px 24px; display: flex; flex-direction: column; flex: 1; }
.modal-card h4 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 12px; }
.modal-card p { font-size: 15px; }
.modal-card-cta { margin-top: auto; padding-top: 20px; font-size: 12px; color: var(--taupe-dark); letter-spacing: .08em; text-decoration: none; display: inline-block; transition: color var(--transition); }
.modal-card-cta:hover { color: var(--olive); }

/* ─────────────────────────────────────────
   BÔNUS
───────────────────────────────────────── */
#bonus { background: var(--cream); }
.bonus-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.bonus-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--beige-mid);
}
.bonus-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--cana-pale); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 22px; color: var(--cana);
}
.bonus-text h4 { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin-bottom: 6px; }
.bonus-text p { font-size: 15px; }

/* ─────────────────────────────────────────
   BENEFÍCIOS
───────────────────────────────────────── */
#beneficios { background: var(--beige-light); }
.beneficios-header { max-width: 640px; margin: 0 auto 56px; }
.beneficios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.benefit-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--beige-mid);
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--olive), var(--cana));
}
.benefit-number {
  font-family: var(--font-display); font-size: 52px; font-weight: 300;
  color: var(--beige-mid); line-height: 1; margin-bottom: 12px;
}
.benefit-card h4 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.benefit-card p { font-size: 15px; }

/* ─────────────────────────────────────────
   HORÁRIOS & INVESTIMENTO
───────────────────────────────────────── */
#precos { background: var(--brown-dark); color: var(--white); }
#precos .label { color: var(--taupe); }
#precos .label::after { background: rgba(255,255,255,.15); }
#precos h2 { color: var(--white); }
.precos-schedule { margin-bottom: 56px; }
.precos-schedule h3 { color: var(--beige-light); margin-bottom: 20px; font-size: 18px; }
.schedule-table {
  width: 100%; border-collapse: collapse;
  background: rgba(255,255,255,.05); border-radius: var(--radius); overflow: hidden;
}
.schedule-table th, .schedule-table td {
  padding: 14px 20px; text-align: left; font-size: 14px;
}
.schedule-table th { background: rgba(255,255,255,.08); color: var(--taupe); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.schedule-table td { color: rgba(253,250,246,.85); border-top: 1px solid rgba(255,255,255,.06); }
.schedule-table tr:nth-child(even) td { background: rgba(255,255,255,.03); }

.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 40px 0; }
.plan-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: all var(--transition);
}
.plan-card.featured {
  background: var(--olive); border-color: var(--olive);
  transform: scale(1.04); box-shadow: 0 12px 40px rgba(117,114,72,.4);
}
.plan-badge {
  display: inline-block; background: var(--cana); color: var(--white);
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.plan-name { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.plan-price { font-family: var(--font-display); font-size: 42px; font-weight: 300; color: var(--white); line-height: 1; margin: 16px 0 4px; }
.plan-price small { font-size: 16px; }
.plan-desc { font-size: 12px; color: rgba(253,250,246,.65); margin-bottom: 20px; }
.plan-includes { font-size: 13px; color: rgba(253,250,246,.8); margin-bottom: 24px; line-height: 1.7; }
.precos-note { max-width: 640px; margin: 32px auto 0; text-align: center; }
.precos-note p { color: rgba(253,250,246,.65); font-size: 15px; line-height: 1.8; }
.precos-note p + p { margin-top: 12px; }
.precos-note strong { color: var(--cana-light); }
.precos-cta { text-align: center; margin-top: 48px; }

/* ─────────────────────────────────────────
   DEPOIMENTOS
───────────────────────────────────────── */
#depoimentos { background: var(--cream); overflow: hidden; }
.text-depo-carousel {
  position: relative; margin-bottom: 64px; padding: 0 54px 42px;
}
.text-depo-viewport {
  overflow: hidden;
}
.depo-quotes {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none; padding: 2px 0 12px;
}
.depo-quotes::-webkit-scrollbar { display: none; }
.depo-quote {
  flex: 0 0 100%; scroll-snap-align: start;
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--beige-mid);
  position: relative; overflow: hidden;
}
.depo-quote::before {
  content: '\201C'; font-family: var(--font-display); font-size: 80px; line-height: 1;
  color: rgba(217,206,187,.55); position: absolute; top: 10px; right: 24px;
}
.depo-author-row {
  display: flex; align-items: center; gap: 14px; position: relative; z-index: 1;
  min-height: 64px; margin-bottom: 22px;
}
.depo-avatar {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--beige-light); box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.depo-text { font-size: 16px; color: var(--brown-dark); line-height: 1.8; font-style: italic; position: relative; z-index: 1; }
.depo-author {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--taupe-dark); font-weight: 500; line-height: 1.4;
}
.text-depo-btn {
  position: absolute; top: calc(50% - 21px); transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: all var(--transition); border: 1px solid var(--beige-mid);
  color: var(--brown-dark);
}
.text-depo-btn:hover { background: var(--olive); color: var(--white); border-color: var(--olive); }
.text-depo-btn:disabled { opacity: .38; cursor: default; transform: translateY(-50%); }
.text-depo-btn:disabled:hover { background: var(--white); color: var(--brown-dark); border-color: var(--beige-mid); }
.text-depo-btn.prev { left: 0; }
.text-depo-btn.next { right: 0; }
.text-depo-dots {
  position: absolute; left: 54px; right: 54px; bottom: 0;
  display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.text-depo-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--beige-mid);
  cursor: pointer; transition: all .3s;
}
.text-depo-dot.active { width: 24px; border-radius: 4px; background: var(--olive); }

@media (min-width: 768px) {
  .depo-quote { flex-basis: calc((100% - 48px) / 3); }
}

@media (max-width: 640px) {
  .text-depo-carousel { padding: 0 0 76px; }
  .text-depo-viewport { overflow: visible; }
  .text-depo-btn { top: auto; bottom: 18px; transform: none; }
  .text-depo-btn:disabled { transform: none; }
  .text-depo-btn.prev { left: calc(50% - 74px); }
  .text-depo-btn.next { right: calc(50% - 74px); }
  .text-depo-dots { left: 0; right: 0; bottom: 0; }
}

/* Video showcase */
.depo-carousel-section h3 { text-align: center; margin-bottom: 32px; }
.depo-video-showcase {
  display: grid; grid-template-columns: minmax(240px, 360px) auto;
  gap: 28px; align-items: center; justify-content: center; max-width: 720px; margin: 0 auto;
}
.depo-showcase-player {
  position: relative; aspect-ratio: 9 / 16; overflow: hidden; border-radius: var(--radius);
  background: var(--brown-dark); box-shadow: var(--shadow-lg);
}
.depo-showcase-video {
  width: 100%; height: 100%; display: block; object-fit: cover; background: var(--brown-dark);
}
.depo-showcase-toggle {
  position: absolute; left: 50%; top: 50%; width: 84px; height: 84px; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  background: rgba(0,0,0,.08); cursor: pointer; transition: opacity var(--transition), background var(--transition);
}
.depo-showcase-toggle:hover { background: rgba(0,0,0,.14); }
.depo-showcase-toggle svg { filter: drop-shadow(0 4px 14px rgba(0,0,0,.28)); }
.depo-showcase-player.playing .depo-showcase-toggle { opacity: 0; pointer-events: none; }
.depo-showcase-toggle:disabled { cursor: default; }
.depo-showcase-thumbs {
  display: grid; grid-template-columns: repeat(2, minmax(78px, 96px));
  gap: 14px; align-content: center;
}
.depo-showcase-thumb {
  position: relative; width: 100%; aspect-ratio: 9 / 16; overflow: hidden; border-radius: 8px;
  background: var(--brown-dark); cursor: pointer; border: 2px solid transparent;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), border-color var(--transition), opacity var(--transition);
}
.depo-showcase-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.depo-showcase-thumb::after {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.28); transition: background var(--transition);
}
.depo-showcase-thumb:hover { transform: translateY(-2px); }
.depo-showcase-thumb:hover::after { background: rgba(0,0,0,.12); }
.depo-showcase-thumb.active {
  border-color: var(--olive); opacity: 1; box-shadow: 0 12px 32px rgba(62,45,28,.18);
}
.depo-showcase-thumb.active::after { background: rgba(0,0,0,.06); }
.depo-showcase-thumb.active::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--olive); z-index: 2;
}
.depo-thumb-play {
  position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.88);
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.depo-thumb-play::after {
  content: ''; position: absolute; left: 13px; top: 9px; width: 0; height: 0;
  border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 12px solid var(--brown-dark);
}
@media (max-width: 760px) {
  .depo-video-showcase {
    grid-template-columns: minmax(0, 1fr); gap: 18px; max-width: 380px;
  }
  .depo-showcase-thumbs {
    display: flex; gap: 12px; overflow-x: auto; padding: 2px 2px 10px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  }
  .depo-showcase-thumb { flex: 0 0 84px; scroll-snap-align: start; }
}

/* ─────────────────────────────────────────
   CTA FINAL
───────────────────────────────────────── */
#cta-final {
  background: linear-gradient(160deg, var(--brown-dark) 0%, #2a1e0e 100%);
  text-align: center; padding: 100px 24px; position: relative; overflow: hidden;
}
#cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(142,171,110,.12) 0%, transparent 70%);
}
.cta-final-inner { max-width: 700px; margin: 0 auto; position: relative; }
.cta-final-inner .label { justify-content: center; color: var(--taupe); }
.cta-final-inner .label::after { background: rgba(255,255,255,.15); }
.cta-h2 {
  font-family: var(--font-display); font-size: clamp(32px, 6vw, 64px);
  font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 28px;
}
.cta-h2 em { color: var(--cana-light); font-style: italic; }
.cta-body { color: rgba(253,250,246,.75); font-size: 18px; line-height: 1.9; margin-bottom: 40px; }
.cta-body strong { color: var(--white); }
.cta-list { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 40px; text-align: left; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-list-item { display: flex; gap: 12px; align-items: flex-start; }
.cta-list-item::before { content: '—'; color: var(--cana); flex-shrink: 0; }
.cta-list-item span { font-size: 17px; color: rgba(253,250,246,.8); }
.cta-scarcity { font-size: 12px; color: rgba(253,250,246,.5); margin-top: 20px; letter-spacing: .06em; }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
#faq { background: var(--white); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-list { display: flex; flex-direction: column; gap: 18px; }
.faq-category {
  border: 1px solid var(--beige-mid);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--cream) 100%);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(84, 62, 44, 0.06);
}
.faq-category-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  text-align: left;
  background: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--brown-dark);
  transition: color var(--transition), background var(--transition);
}
.faq-category-toggle:hover { color: var(--olive); }
.faq-category-toggle[aria-expanded="true"] {
  color: var(--olive);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.28) 100%);
  border-bottom: 1px solid rgba(193, 169, 135, 0.45);
}
.faq-category-toggle[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-category-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, padding .3s ease;
  padding: 0 20px;
}
.faq-category-panel.open { padding: 14px 20px 20px; }
.faq-category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 252, 246, 0.9); border: 1px solid rgba(193, 169, 135, 0.75);
  border-radius: var(--radius); overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 28px; text-align: left; background: none; cursor: pointer;
  font-family: var(--font-display); font-size: clamp(16px, 2vw, 20px); font-weight: 400;
  color: var(--brown-dark); transition: color var(--transition);
}
.faq-question:hover { color: var(--olive); }
.faq-question[aria-expanded="true"] { color: var(--olive); }
.faq-chevron { flex-shrink: 0; transition: transform .3s ease; color: var(--taupe); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 28px;
}
.faq-answer.open { padding: 0 28px 24px; }
.faq-answer p { font-size: 16px; color: var(--brown-mid); line-height: 1.85; }
.faq-answer p strong { color: var(--brown-dark); }
.faq-category + .faq-category { margin-top: 2px; }
.faq-definition {
  margin: 16px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--beige-light);
}
.faq-definition p {
  font-size: 15px;
  line-height: 1.75;
}
.faq-definition p + p {
  margin-top: 8px;
}
.faq-definition strong {
  color: var(--brown-dark);
}

@media (max-width: 768px) {
  .faq-category-toggle { padding: 20px 22px; }
  .faq-category-panel { padding: 0 14px; }
  .faq-category-panel.open { padding: 14px 14px 14px; }
  .faq-question { padding: 18px 20px; }
  .faq-answer.open { padding: 0 20px 20px; }
}

/* ─────────────────────────────────────────
   CONTATO
───────────────────────────────────────── */
#contato {
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--cream) 100%);
  border-top: 1px solid var(--beige-mid);
}
.contato-inner { max-width: 900px; margin: 0 auto; }
.contato-grid { display: grid; gap: 56px; }
.contato-info h2 { margin-bottom: 20px; }
.contato-info p { font-size: 16px; margin-bottom: 32px; }
.contato-links { display: flex; flex-direction: column; gap: 16px; }
.contato-link {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 20px; border-radius: var(--radius);
  border: 1px solid var(--beige-mid); background: var(--cream);
  transition: all var(--transition); font-size: 15px; color: var(--brown-dark);
}
.contato-link:hover { border-color: var(--olive); background: var(--beige-light); }
.contato-link-icon { width: 24px; height: 24px; display: block; object-fit: contain; flex-shrink: 0; }
.contato-link-text strong { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--taupe-dark); margin-bottom: 2px; }

.contato-form { background: var(--cream); border-radius: var(--radius); padding: 40px 36px; border: 1px solid var(--beige-mid); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--taupe-dark); margin-bottom: 8px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px; background: var(--white);
  border: 1.5px solid var(--beige-mid); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; font-weight: 300; color: var(--brown-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--olive); box-shadow: 0 0 0 3px rgba(117,114,72,.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { display: none; text-align: center; padding: 20px; }
.form-success.visible { display: block; }
.form-success p { color: var(--olive); font-weight: 500; }

@media (min-width: 768px) {
  .contato-grid { grid-template-columns: 1fr 1.2fr; }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#footer {
  background: var(--brown-dark); color: rgba(253,250,246,.7);
  padding: 56px 24px 32px; font-size: 13px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top { display: grid; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 55px; margin-bottom: 16px; }
.footer-brand .script { color: var(--taupe); font-size: 22px; }
.footer-brand p { font-size: 13px; margin-top: 12px; color: rgba(253,250,246,.55); line-height: 1.7; }
.footer-links-title { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); margin-bottom: 16px; }
.footer-links-list { display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a { color: rgba(253,250,246,.65); transition: color var(--transition); font-size: 13px; }
.footer-links-list a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: block; position: relative;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--olive); }
.social-logo {
  width: 20px; height: 20px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: block; object-fit: contain;
}
.footer-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 28px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer-legal { font-size: 11px; color: rgba(253,250,246,.4); line-height: 1.7; max-width: 600px; }
.footer-legal a { color: rgba(253,250,246,.55); text-decoration: underline; text-underline-offset: 3px; }
.footer-copyright { font-size: 11px; color: rgba(253,250,246,.35); }

@media (min-width: 640px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* ─────────────────────────────────────────
   WHATSAPP FLOAT
───────────────────────────────────────── */
#whatsapp-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 990;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; box-shadow: 0 6px 24px rgba(37,211,102,.45);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: waBounce 4s ease-in-out infinite;
}
#whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); animation: none; }
#whatsapp-float svg { color: #fff; }
@keyframes waBounce { 0%,80%,100% { transform: translateY(0); } 90% { transform: translateY(-6px); } }
.wa-tooltip {
  position: absolute; right: 68px; background: var(--brown-dark); color: var(--white);
  padding: 7px 14px; border-radius: var(--radius-sm); font-size: 12px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
#whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
/* fade-up só activa quando body.js-ready estiver presente —
   sem JS o conteúdo fica sempre visível */
.js-ready .fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }
.js-ready .fade-up-delay-1 { transition-delay: .1s; }
.js-ready .fade-up-delay-2 { transition-delay: .2s; }
.js-ready .fade-up-delay-3 { transition-delay: .3s; }

/* ─────────────────────────────────────────
   UTILITIES
───────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .modal-hero { padding: 32px 24px; }
  .contato-form { padding: 28px 20px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: scale(1); }
}
