/* =====================================================
   VARIÁVEIS & RESET
===================================================== */
:root {
  /* Paleta Esmeralda Cristal (Druza) */
  --white:          #FAFCF9;
  --emerald-900:    #0A2E1F;
  --emerald-800:    #0F3D2A;
  --emerald-700:    #1A5C3F;
  --emerald-600:    #1E7248;
  --emerald-500:    #2D8A5A;
  --emerald-400:    #3DAA72;
  --emerald-300:    #70C99E;
  --emerald-200:    #A8DBBE;
  --emerald-100:    #CEEEDE;
  --emerald-50:     #EBF8F2;
  --gold:           #C4935A;
  --gold-light:     #E5C99C;

  /* Texto */
  --text-dark:      #0F2219;
  --text-mid:       #2C4E3A;
  --text-light:     #FAFCF9;
  --text-muted:     rgba(250, 252, 249, 0.70);

  /* Tipografia */
  --font-heading:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;

  /* Espaçamento */
  --section-padding: 7rem 1.5rem;
  --container-max:   1180px;

  /* Transições */
  --ease:       0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow:  0.65s cubic-bezier(0.4, 0, 0.2, 1);

  /* Sombras */
  --shadow-sm:  0  2px 12px rgba(10, 46, 31, 0.08);
  --shadow-md:  0  8px 32px rgba(10, 46, 31, 0.14);
  --shadow-lg:  0 20px 60px rgba(10, 46, 31, 0.22);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

/* =====================================================
   UTILITÁRIOS
===================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   TIPOGRAFIA COMPARTILHADA
===================================================== */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--emerald-800);
  margin-bottom: 0.75rem;
}

.section-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-400), var(--gold));
  margin-bottom: 2rem;
  border-radius: 2px;
}

/* =====================================================
   BOTÕES
===================================================== */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--ease), color var(--ease),
              border-color var(--ease), transform var(--ease),
              box-shadow var(--ease);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--emerald-800);
  transform: translateY(-2px);
}

.btn-emerald {
  background: var(--emerald-700);
  color: var(--white);
  border-color: var(--emerald-700);
}
.btn-emerald:hover {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-emerald-outline {
  color: var(--emerald-700);
  border-color: var(--emerald-700);
  background: transparent;
}
.btn-emerald-outline:hover {
  background: var(--emerald-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* =====================================================
   ANIMAÇÕES DE SCROLL
===================================================== */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.75s var(--ease-slow),
              transform 0.75s var(--ease-slow);
}
.animate-on-scroll.fade-up    { transform: translateY(48px); }
.animate-on-scroll.fade-left  { transform: translateX(-48px); }
.animate-on-scroll.fade-right { transform: translateX(48px); }
.animate-on-scroll.visible    { opacity: 1; transform: translate(0, 0); }

/* Delays escalonados dentro de seções */
.animate-on-scroll.delay-1 { transition-delay: 0.15s; }
.animate-on-scroll.delay-2 { transition-delay: 0.30s; }
.animate-on-scroll.delay-3 { transition-delay: 0.45s; }

/* =====================================================
   HEADER / NAVEGAÇÃO
===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.4rem 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

.header.scrolled {
  background: rgba(10, 46, 31, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  transition: opacity var(--ease);
}
.nav-logo:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.4rem;
  align-items: center;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.80);
  position: relative;
  transition: color var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--emerald-300);
  transition: width var(--ease);
}
.nav-link:hover,
.nav-link.active        { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Hambúrguer */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

/* Hambúrguer → X */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay mobile */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-slow);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* =====================================================
   HERO
===================================================== */
.hero {
  height: 100vh;
  max-height: 860px;
  min-height: 580px;
  display: flex;
  align-items: stretch;
  background: linear-gradient(140deg, var(--emerald-900) 0%, var(--emerald-700) 55%, var(--emerald-600) 100%);
  position: relative;
  overflow: hidden;
}

/* Reflexo cristalino sutil */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 68% 45%, rgba(112, 201, 158, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8rem 3.5rem 4rem 5rem;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-300);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}

.hero-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  max-width: 420px;
  margin-bottom: 2.8rem;
  line-height: 1.85;
}

.hero-image {
  flex: 0 0 auto;
  width: clamp(300px, 40%, 520px);
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 140px 0 0 140px;
  filter: brightness(0.92) saturate(1.05);
}

/* =====================================================
   SOBRE MIM
===================================================== */
.about {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--emerald-50) 0%, var(--white) 55%, var(--emerald-100) 100%);
}

.about-image {
  flex: 0 0 auto;
  width: min(440px, 38vw);
}

.about-image img {
  width: 100%;
  border-radius: 180px 180px 100px 100px;
  box-shadow: var(--shadow-lg);
}

.about-content {
  flex: 1;
  max-width: 560px;
}

.about-content p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.about-social {
  display: flex;
  gap: 0.9rem;
  margin-top: 2rem;
  align-items: center;
}
.about-social a {
  opacity: 0.7;
  transition: opacity var(--ease), transform var(--ease);
}
.about-social a:hover {
  opacity: 1;
  transform: translateY(-3px);
}
.about-social img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* =====================================================
   ATENDIMENTO COLETIVO
===================================================== */
.coletivo {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-image: url('../images/bg-coletivo2t.png');
  background-image: image-set(
    url('../images/bg-coletivo2t.avif') type('image/avif'),
    url('../images/bg-coletivo2t.webp') type('image/webp'),
    url('../images/bg-coletivo2t.png')  type('image/png')
  );
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.coletivo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(10, 46, 31, 0.93) 35%,
    rgba(10, 46, 31, 0.35) 100%
  );
}

.coletivo-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 560px;
  padding: 5rem;
  margin-right: 5%;
}

.coletivo-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.coletivo-date {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-300);
  margin-bottom: 0.5rem;
}

.coletivo-theme {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  color: var(--emerald-200);
  margin-bottom: 1.8rem;
}

.coletivo-text {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  margin-bottom: 2.2rem;
}

/* =====================================================
   ATENDIMENTOS
===================================================== */
.services {
  padding: var(--section-padding);
  background: linear-gradient(150deg, var(--white) 0%, var(--emerald-50) 50%, var(--emerald-100) 100%);
}

.services-grid {
  max-width: 700px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-slow);
}
.service-card:hover .service-image img {
  transform: scale(1.03);
}

.service-body {
  padding: 2rem 2.4rem 2.5rem;
}
.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--emerald-800);
  margin-bottom: 1rem;
}
.service-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.85;
}

.services-quote {
  text-align: center;
  padding: 1.5rem 1rem;
}
.services-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-style: italic;
  font-weight: 300;
  color: var(--emerald-700);
  line-height: 1.55;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* =====================================================
   BANNER PARALLAX
===================================================== */
.parallax-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/reikiwagner-1900.jpg');
  background-image: image-set(
    url('../images/reikiwagner-1900.avif') type('image/avif'),
    url('../images/reikiwagner-1900.webp') type('image/webp'),
    url('../images/reikiwagner-1900.jpg')  type('image/jpeg')
  );
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 46, 31, 0.52);
}

.parallax-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.14em;
  color: var(--white);
  text-align: center;
  padding: 0 2rem;
}

/* =====================================================
   EBOOK
===================================================== */
.ebook {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: var(--section-padding);
  background: var(--white);
}

.ebook-image {
  flex: 0 0 auto;
  width: min(380px, 38vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ebook-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--ease-slow);
}
.ebook-image img:hover {
  transform: scale(1.03) rotate(-1deg);
}

.ebook-content {
  flex: 1;
  max-width: 540px;
}

.ebook-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-600);
  background: var(--emerald-50);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.ebook-content p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.ebook--paid {
  background: var(--emerald-50);
  flex-direction: row-reverse;
}

.ebook-label--paid {
  background: rgba(196, 147, 90, 0.12);
  color: #8a5c1e;
}

/* =====================================================
   CANAL INTEGRE-SE
===================================================== */
.channel {
  padding: var(--section-padding);
  background: linear-gradient(145deg, var(--emerald-900) 0%, var(--emerald-800) 100%);
}

.channel .section-title   { color: var(--white); }
.channel .section-divider { background: linear-gradient(90deg, var(--emerald-300), var(--gold)); }

.channel-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
  line-height: 1.85;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.videos-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.channel-cta { text-align: center; }
.channel .btn-emerald-outline {
  color: var(--emerald-300);
  border-color: var(--emerald-300);
}
.channel .btn-emerald-outline:hover {
  background: var(--emerald-300);
  color: var(--emerald-900);
}

/* =====================================================
   RODAPÉ
===================================================== */
.footer {
  background: var(--emerald-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.6rem 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.83rem;
}
.footer a {
  color: var(--emerald-300);
  transition: color var(--ease);
}
.footer a:hover { color: var(--white); }

/* =====================================================
   BOTÃO FLUTUANTE WHATSAPP
===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--ease), box-shadow var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* =====================================================
   RESPONSIVO — TABLET (≤ 1024px)
===================================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 5.5rem 1.5rem;
  }

  .hero-content {
    padding: 8rem 2.5rem 3.5rem 3rem;
  }

  .hero-image {
    width: clamp(260px, 38%, 440px);
  }
}

/* =====================================================
   RESPONSIVO — MOBILE (≤ 768px)
===================================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 4.5rem 1.25rem;
  }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: var(--emerald-900);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.8rem;
    transform: translateX(100%);
    transition: transform var(--ease-slow);
    z-index: 1000;
    padding: 2rem;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-overlay {
    display: none;
  }
  .nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }

  /* Hero */
  .hero {
    height: 100svh;
    max-height: none;
    min-height: 560px;
  }
  .hero-content {
    width: 100%;
    padding: 7.5rem 1.5rem 3rem;
    align-items: flex-start;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-image {
    display: none;
  }

  /* Sobre */
  .about {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  .about-image {
    width: min(340px, 72vw);
  }
  .about-social {
    justify-content: center;
  }
  .about-content {
    max-width: 100%;
  }

  /* Coletivo */
  .coletivo {
    justify-content: center;
    background-position: center;
  }
  .coletivo-content {
    margin: 0;
    padding: 4.5rem 1.5rem;
    text-align: center;
    max-width: 100%;
  }

  /* Ebook */
  .ebook {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  .ebook-image {
    width: min(280px, 72vw);
  }
  .ebook-content {
    max-width: 100%;
  }

  /* Vídeos */
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* =====================================================
   RESPONSIVO — MOBILE PEQUENO (≤ 480px)
===================================================== */
@media (max-width: 480px) {
  :root {
    --section-padding: 4rem 1.1rem;
  }

  .hero-content {
    padding: 6.5rem 1.1rem 2.5rem;
  }

  .service-body {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .parallax-banner {
    height: 300px;
    background-attachment: scroll;
  }

  .coletivo-content {
    padding: 4rem 1.1rem;
  }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }
}

/* =====================================================
   LGPD — BANNER DE CONSENTIMENTO DE COOKIES
===================================================== */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: var(--emerald-900);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.40);
  padding: 1.25rem 1.5rem;
  /* Inicia fora da tela */
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  display: none; /* js controla */
}

.lgpd-banner--visible {
  transform: translateY(0);
}

.lgpd-banner--hidden {
  transform: translateY(110%);
}

.lgpd-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-right: 2rem; /* espaço para o botão ✕ */
}

.lgpd-banner-text {
  flex: 1;
  min-width: 220px;
  font-size: 0.82rem;
  color: rgba(250, 252, 249, 0.75);
  line-height: 1.6;
  margin-bottom: 0;
}

.lgpd-banner-text strong {
  color: var(--white);
}

.lgpd-link {
  color: var(--emerald-300);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lgpd-link:hover { color: var(--white); }

.lgpd-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

.lgpd-btn {
  white-space: nowrap;
  font-size: 0.75rem !important;
  padding: 0.6rem 1.4rem !important;
}

.lgpd-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(250, 252, 249, 0.45);
  padding: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color var(--ease);
  line-height: 0;
}

.lgpd-close:hover { color: var(--white); }

@media (max-width: 600px) {
  .lgpd-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .lgpd-banner-actions { width: 100%; }
  .lgpd-btn { flex: 1; text-align: center; }
}

/* =====================================================
   YOUTUBE — PRIVACY GATE
   Exibido quando usuário escolhe "apenas essenciais"
===================================================== */
.yt-gate {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--emerald-900);
  border-radius: 8px;
  overflow: hidden;
}

.yt-gate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.50;
  display: block;
}

.yt-gate-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.yt-gate-btn {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: background var(--ease), transform var(--ease), border-color var(--ease);
}

.yt-gate-btn:hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.70);
  transform: scale(1.10);
}

.yt-gate-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  margin: 0;
  text-align: center;
  letter-spacing: 0.02em;
}

/* =====================================================
   RODAPÉ — LINKS LEGAIS
===================================================== */
.footer-legal {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.40);
  transition: color var(--ease);
}

.footer-legal a:hover { color: var(--emerald-300); }

.footer-sep {
  color: rgba(255, 255, 255, 0.20);
  user-select: none;
}

/* =====================================================
   PÁGINA DE PRIVACIDADE
===================================================== */
.privacy-wrap {
  padding: 7.5rem 1.5rem 5rem;
  max-width: 820px;
  margin: 0 auto;
}

.privacy-wrap h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--emerald-800);
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.privacy-updated {
  font-size: 0.82rem;
  color: var(--text-mid);
  opacity: 0.75;
  margin-bottom: 2.5rem;
}

.privacy-intro {
  background: var(--emerald-50);
  border-left: 3px solid var(--emerald-400);
  padding: 1.1rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.privacy-intro p { margin-bottom: 0; }

.privacy-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--emerald-700);
  margin: 2.8rem 0 0.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 46, 31, 0.09);
}

.privacy-wrap h2:first-of-type { border-top: none; padding-top: 0; }

.privacy-wrap p,
.privacy-wrap li {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.82;
}

.privacy-wrap ul,
.privacy-wrap ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.privacy-wrap li { margin-bottom: 0.3rem; }

.privacy-wrap strong { color: var(--emerald-800); }

/* Tabela de cookies */
.privacy-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(10, 46, 31, 0.10);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
  min-width: 540px;
}

.privacy-table th {
  background: var(--emerald-50);
  color: var(--emerald-800);
  font-weight: 500;
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--emerald-200);
  white-space: nowrap;
}

.privacy-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(10, 46, 31, 0.07);
  color: var(--text-mid);
  vertical-align: top;
}

.privacy-table tr:last-child td { border-bottom: none; }

.privacy-table tr:nth-child(even) td { background: rgba(235, 248, 242, 0.40); }

/* Caixa de contato */
.privacy-contact-box {
  background: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
}

.privacy-contact-box p { margin-bottom: 0.4rem; }
.privacy-contact-box p:last-child { margin-bottom: 0; }
.privacy-contact-box a { color: var(--emerald-600); font-weight: 500; }
.privacy-contact-box a:hover { color: var(--emerald-800); text-decoration: underline; }

@media (max-width: 768px) {
  .privacy-wrap { padding: 6rem 1.25rem 4rem; }
}
