/* ==========================================================================
   Vívera — Estilo do site
   ========================================================================== */

:root {
  --teal-950: #17322f;
  --teal-900: #1e4a45;
  --teal-800: #285e58;
  --teal-700: #326e67;
  --teal-600: #3d8079;
  --teal-500: #4f948c;
  --sage-500: #93ab8a;
  --sage-300: #b7c9ac;
  --gold-500: #c9a876;
  --gold-300: #ddc9a3;
  --cream-050: #faf8f3;
  --cream-100: #f4f0e6;
  --ink-900: #1f2e2c;
  --ink-700: #3a4a47;
  --ink-500: #62716e;
  --white: #ffffff;

  --gradient-brand: linear-gradient(120deg, var(--sage-500) 0%, var(--teal-600) 45%, var(--teal-900) 75%, var(--gold-500) 100%);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(147, 171, 138, 0.25), transparent), linear-gradient(180deg, var(--cream-050) 0%, var(--cream-100) 100%);

  --shadow-soft: 0 10px 40px rgba(30, 74, 69, 0.10);
  --shadow-lift: 0 20px 50px rgba(30, 74, 69, 0.18);

  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans: "Poppins", "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

/* ---------- Reveal animation (defined early so component-specific
   transitions below can win the cascade without !important) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

body {
  font-family: var(--font-sans);
  color: var(--ink-700);
  background: var(--cream-050);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-700);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-500);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--teal-900);
  font-weight: 600;
  line-height: 1.2;
}

h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { color: var(--ink-500); font-size: 1.05rem; }
.section-head.align-left { margin-left: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--teal-900);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); background: var(--teal-800); }

.btn-gold {
  background: linear-gradient(120deg, var(--gold-500), #b6935f);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(201, 168, 118, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(201, 168, 118, 0.45); }

.btn-light {
  background: var(--cream-050);
  color: var(--teal-900);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.btn-light:hover { transform: translateY(-2px); background: var(--white); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3); }

.btn-outline {
  background: transparent;
  color: var(--teal-900);
  border: 1.5px solid var(--teal-800);
}
.btn-outline:hover { background: var(--teal-900); color: var(--white); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 248, 243, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30, 74, 69, 0.08);
  transition: box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(250, 248, 243, 0.92);
  box-shadow: 0 6px 24px rgba(30, 74, 69, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 0.35s var(--ease-out);
}
.main-nav a:hover::after { width: 100%; }
.main-nav a { transition: color 0.3s var(--ease-out); }
.main-nav a:hover { color: var(--teal-900); }
.main-nav a.active { color: var(--teal-900); }
.main-nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--teal-900); border-radius: 2px; transition: all 0.3s ease; }

/* ---------- Hero ---------- */
.hero {
  padding: 168px 0 110px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -180px; top: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,118,0.16), transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}
.hero-copy h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  margin-bottom: 22px;
}
.hero-copy h1 em {
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p.lead {
  font-size: 1.12rem;
  color: var(--ink-500);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-700);
  font-weight: 500;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-500);
}

/* ---------- Hero video placeholder ---------- */
.hero-video {
  margin-top: 72px;
}
.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 460px;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: var(--shadow-lift);
}
.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 50, 47, 0.32);
  transition: background 0.3s var(--ease-out);
}
.video-placeholder:hover::before { background: rgba(23, 50, 47, 0.18); }
.video-placeholder .play-btn {
  position: relative;
  z-index: 1;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(23, 50, 47, 0.35);
  transition: transform 0.3s var(--ease-out);
  animation: playPulse 2.8s ease-out infinite;
}
.video-placeholder:hover .play-btn { transform: scale(1.08); animation-play-state: paused; }
@keyframes playPulse {
  0% { box-shadow: 0 12px 30px rgba(23, 50, 47, 0.35), 0 0 0 0 rgba(255,255,255,0.45); }
  70% { box-shadow: 0 12px 30px rgba(23, 50, 47, 0.35), 0 0 0 16px rgba(255,255,255,0); }
  100% { box-shadow: 0 12px 30px rgba(23, 50, 47, 0.35), 0 0 0 0 rgba(255,255,255,0); }
}
@media (prefers-reduced-motion: reduce) {
  .video-placeholder .play-btn { animation: none; }
}
.video-placeholder .play-btn svg {
  width: 28px; height: 28px;
  fill: var(--teal-900);
  margin-left: 4px;
}
.video-caption {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.hero-visual .ring {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  animation: heroFloat 7s ease-in-out infinite;
}
.hero-visual .ring::before {
  content: "";
  position: absolute;
  inset: -46px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--sage-500), var(--teal-600), var(--gold-500), var(--teal-900), var(--sage-500));
  filter: blur(38px);
  opacity: 0.34;
  z-index: -1;
  animation: heroSpin 18s linear infinite;
}
.hero-visual .ring::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1.5px dashed var(--sage-300);
  animation: heroSpin 46s linear infinite reverse;
}
.hero-visual img { width: 100%; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes heroSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual .ring,
  .hero-visual .ring::before,
  .hero-visual .ring::after { animation: none; }
}


/* ---------- Program grid ---------- */
.program {
  padding: 110px 0;
  background: var(--cream-100);
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  transition: opacity 0.7s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  border: 1px solid transparent;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--sage-300);
}
.program-card:hover .icon { transform: scale(1.08) rotate(-4deg); }
.program-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: transform 0.35s var(--ease-out);
}
.program-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.program-card p { font-size: 0.92rem; color: var(--ink-500); }
.card-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(201, 168, 118, 0.14);
  color: var(--gold-500);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Results ---------- */
.results { padding: 110px 0; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.result-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 14px;
  margin: 0 -14px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(30,74,69,0.08);
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.result-item:hover {
  background: rgba(147, 171, 138, 0.1);
  transform: translateX(4px);
}
.result-item .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sage-500);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.3s var(--ease-out);
}
.result-item:hover .check { transform: scale(1.15); }
.result-item p { color: var(--ink-700); font-weight: 500; }

/* ---------- Audience cards ---------- */
.audience { padding: 110px 0; background: var(--teal-950); color: var(--cream-050); }
.audience .section-head h2 { color: var(--white); }
.audience .section-head p { color: rgba(250,248,243,0.7); }
.audience .eyebrow { color: var(--gold-300); }
.audience .eyebrow::before { background: var(--gold-300); }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.audience-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  animation: cardFloat 8s ease-in-out infinite;
}
.audience-card:not(.highlight) { animation-delay: -4s; }
@keyframes cardFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
@media (prefers-reduced-motion: reduce) {
  .audience-card { animation: none; }
}
.audience-card.highlight {
  background: linear-gradient(160deg, rgba(201,168,118,0.14), rgba(255,255,255,0.03));
  border-color: rgba(201,168,118,0.4);
}
.audience-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.audience-card.highlight .audience-tag { background: var(--gold-500); color: var(--teal-950); }
.audience-card:not(.highlight) .audience-tag { background: rgba(255,255,255,0.12); color: var(--cream-050); }

.audience-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 14px; }
.audience-card > p.desc { color: rgba(250,248,243,0.75); margin-bottom: 26px; }

.audience-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex-grow: 1; }
.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: rgba(250,248,243,0.9);
}
.audience-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  margin-top: 8px;
}

.guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 118, 0.08);
  border: 1px solid rgba(201, 168, 118, 0.3);
}
.guarantee-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  fill: var(--gold-500);
  margin-top: 2px;
}
.guarantee-icon .check { stroke: var(--teal-950); }
.guarantee-badge strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.guarantee-badge p {
  font-size: 0.85rem;
  color: rgba(250,248,243,0.7);
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; background: var(--cream-100); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 6px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out);
}
.faq-item:hover { border-color: var(--sage-300); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--teal-900);
  cursor: pointer;
}
.faq-question .plus {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--gold-500);
  transition: transform 0.4s var(--ease-out);
  font-weight: 300;
}
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
  color: var(--ink-500);
  font-size: 0.95rem;
}
.faq-answer > p { overflow: hidden; min-height: 0; padding-bottom: 0; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 22px; }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 120px 0;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(147, 171, 138, 0.55) 0%, rgba(61, 128, 121, 0.68) 45%, rgba(23, 50, 47, 0.82) 75%, rgba(201, 168, 118, 0.55) 100%),
    url('../img/cta-bg.jpg');
  background-size: cover;
  background-position: center 60%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
  .final-cta { background-attachment: fixed; }
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(23, 50, 47, 0.25);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); max-width: 640px; margin: 0 auto 18px; }
.final-cta p { color: rgba(255,255,255,0.88); max-width: 520px; margin: 0 auto 40px; font-size: 1.08rem; }
.final-cta .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-950); color: rgba(250,248,243,0.65); padding: 70px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-card {
  display: inline-block;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  margin-bottom: 20px;
}
.footer-brand img { height: 108px; display: block; }
.footer-tagline {
  max-width: 320px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-300);
}
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; font-family: var(--font-sans); font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; transition: color 0.3s var(--ease-out); }
.footer-col a:hover { color: var(--gold-300); }
.footer-brand-link { display: inline-flex; align-items: center; gap: 10px; }
.footer-brand-link .brand-logo { width: 24px; height: 24px; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  font-size: 0.82rem;
}
.privacy-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.3s var(--ease-out);
}
.privacy-link:hover { color: var(--gold-300); }

/* ---------- Aviso de privacidade / cookies ---------- */
.privacy-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 950;
  max-width: 620px;
  margin: 0 auto;
  background: var(--teal-950);
  color: rgba(250,248,243,0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 20px 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
.privacy-banner.show { transform: translateY(0); opacity: 1; }
.privacy-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.privacy-banner p { font-size: 0.86rem; line-height: 1.5; flex: 1; min-width: 220px; }
.privacy-link-inline { color: var(--gold-300); }
.privacy-banner-actions { flex-shrink: 0; }

/* ---------- Modal de política de privacidade ---------- */
.privacy-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(23, 50, 47, 0.5);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.privacy-modal-overlay.open { display: flex; }
.privacy-modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: var(--shadow-lift);
}
.privacy-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream-100);
  border: none;
  color: var(--teal-900);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease-out);
}
.privacy-modal-close:hover { background: var(--sage-300); }
.privacy-modal-box h3 { font-size: 1.5rem; margin-bottom: 6px; padding-right: 30px; }
.privacy-modal-updated { color: var(--ink-500); font-size: 0.82rem; margin-bottom: 26px; }
.privacy-modal-body h4 { font-family: var(--font-sans); font-size: 0.98rem; color: var(--teal-900); margin: 22px 0 8px; }
.privacy-modal-body h4:first-child { margin-top: 0; }
.privacy-modal-body p { font-size: 0.9rem; color: var(--ink-700); line-height: 1.6; }

@media (max-width: 600px) {
  .privacy-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; }
  .privacy-banner-inner { flex-direction: column; align-items: stretch; }
  .privacy-banner-actions .btn { width: 100%; }
}

/* ---------- WhatsApp float button ---------- */
.journey-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  padding: 16px 28px;
  border-radius: 100px;
  background: linear-gradient(120deg, var(--gold-500), #b6935f);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(201, 168, 118, 0.45);
  z-index: 900;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.journey-float:hover { transform: scale(1.05); box-shadow: 0 16px 36px rgba(201, 168, 118, 0.55); }
.journey-float:active { transform: scale(0.96); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto; padding: 20px; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 760px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { gap: 10px; }
  .hero { padding: 130px 0 80px; }
  .hero-video { margin-top: 44px; }
  .journey-float { padding: 13px 20px; font-size: 0.85rem; bottom: 18px; right: 18px; }
  .video-placeholder { aspect-ratio: 4 / 3; max-height: none; }
  .program-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 80px 0; }

  .main-nav.mobile-open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--cream-050);
    flex-direction: column;
    padding: 26px 24px;
    gap: 20px;
    box-shadow: 0 16px 30px rgba(30,74,69,0.12);
    border-bottom: 1px solid rgba(30,74,69,0.08);
  }
}
