/* ===========================================
   ZARTTE BRASÍLIA ACADEMY x UX PERFORMANCE — style.css
   Klass Company | Agosto 2026
=========================================== */

:root {
  --preto:         #0b0a08;
  --preto-2:       #100f0a;
  --carta:         #17150f;
  --dourado:       #cda15b;
  --dourado-claro: #e9cd9a;
  --dourado-fundo: #8a6a34;
  --branco:        #f3ede0;
  --cinza:         #b3a993;
  --linha:         rgba(205,161,91,0.22);

  --max-largura:   1180px;
  --padding-secao: 90px 0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; min-width: 0; }
html { width: 100%; max-width: 100%; overflow-x: clip; }

/* Ícones: por padrão herdam a cor do texto do elemento em volta (branco, cinza
   ou dourado, dependendo de onde estão). Sem isso, o navegador desenha os
   ícones em preto sólido por padrão, mesmo já tendo cor definida no CSS. */
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
svg[fill="currentColor"] { fill: currentColor; stroke: none; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--preto);
  color: var(--branco);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  min-width: 0;
  max-width: var(--max-largura);
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(20px, 5%, 80px);
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  color: var(--branco);
  line-height: 1.2;
  font-weight: 600;
}

em { font-style: italic; color: var(--dourado); font-weight: 600; }

section { padding: var(--padding-secao); }

/* ===========================================
   EYEBROW / TÍTULOS DE SEÇÃO
=========================================== */
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.eyebrow--center { justify-content: center; }
.eyebrow span { font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--dourado); font-weight: 700; }

.titulo-secao { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 16px; text-align: center; }
.subtitulo-secao { font-size: 1rem; color: var(--cinza); max-width: 560px; margin: 0 auto 46px; text-align: center; }

/* ===========================================
   BOTÕES
=========================================== */
.btn-solid {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(180deg, var(--dourado-claro), var(--dourado));
  color: #201705; font-weight: 700; font-size: 15px;
  padding: 16px 28px; border-radius: 9999px; border: none;
}
.btn-solid--full { width: 100%; justify-content: center; margin-top: 22px; padding: 16px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 26px; font-size: 14px; font-weight: 500;
  border: 1px solid var(--linha); color: var(--branco); border-radius: 9999px;
  transition: border-color 0.25s;
}
.btn-outline:hover { border-color: var(--dourado); }

.cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--linha); border-radius: 9999px; padding: 10px 18px;
  color: var(--dourado-claro); background: none; font-size: 13px;
}
.cta-pill--full { width: 100%; justify-content: center; margin-top: 24px; background: var(--dourado); color: #201705; padding: 15px; font-weight: 700; }

/* ===========================================
   NAVBAR
=========================================== */
.navbar { position: sticky; top: 0; z-index: 60; background: rgba(11,10,8,0.82); backdrop-filter: blur(10px); border-bottom: 1px solid var(--linha); }
.navbar__inner { max-width: var(--max-largura); margin: 0 auto; padding: 18px clamp(20px, 5%, 80px); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.navbar__logo { display: flex; align-items: center; gap: 12px; }
.navbar__logo-nome { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }
.navbar__logo-div { width: 1px; height: 18px; background: var(--linha); }
.navbar__logo-sub { font-size: 12px; color: var(--cinza); letter-spacing: 0.06em; }
.navbar__links { display: flex; align-items: center; gap: 30px; }
.navbar__links a { font-size: 14px; color: var(--cinza); transition: color 0.2s; }
.navbar__links a:hover { color: var(--branco); }
.navbar__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; }
.navbar__toggle span { width: 22px; height: 1.5px; background: var(--branco); border-radius: 2px; }

.navbar__overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 70; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.navbar__overlay.aberto { opacity: 1; pointer-events: auto; }
.navbar__mobile { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw); background: var(--carta); z-index: 80; padding: 30px 26px; display: flex; flex-direction: column; gap: 22px; transform: translateX(100%); transition: transform 0.3s ease; border-left: 1px solid var(--linha); }
.navbar__mobile.aberto { transform: translateX(0); }
.navbar__mobile a { font-size: 16px; color: var(--branco); }
.navbar__mobile-fechar { align-self: flex-end; background: none; border: 1px solid var(--linha); border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; color: var(--branco); }

/* ===========================================
   HERO
=========================================== */
.hero { position: relative; padding: 44px 0 80px; overflow: hidden; border-bottom: 1px solid var(--linha); }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.hero__glow--1 { width: 480px; height: 480px; background: rgba(205,161,91,0.14); top: -180px; right: -120px; }
.hero__glow--2 { width: 360px; height: 360px; background: rgba(205,161,91,0.08); bottom: -160px; left: -120px; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 54px; align-items: center; padding-top: 26px; }

.hero__titulo { font-size: clamp(2.1rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.01em; margin-top: 18px; }
.hero__badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 26px; }
.badge { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--cinza); border: 1px solid var(--linha); padding: 8px 14px; border-radius: 9999px; }
.badge svg { color: var(--dourado); }
.badge b { color: var(--dourado-claro); font-weight: 600; }

.hero__sub { font-size: 16.5px; color: var(--cinza); max-width: 460px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }

.hero__video { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--linha); background: var(--carta); aspect-ratio: 9/13; }
.hero__video video { width: 100%; height: 100%; object-fit: cover; }
.hero__video-legenda { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 18px 16px; background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent); font-size: 13px; color: var(--cinza); }
.hero__video-legenda b { color: var(--dourado-claro); display: block; font-size: 14px; margin-bottom: 2px; }
.hero__video-controles { position: absolute; top: 14px; right: 14px; display: flex; flex-direction: column; gap: 8px; }
.hero__video-botao { width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2); color: #fff; display: flex; align-items: center; justify-content: center; }

/* ===========================================
   DOR / PROBLEMA
=========================================== */
.dor { background: var(--preto-2); border-bottom: 1px solid var(--linha); }
.dor__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 820px; margin: 0 auto; }
.dor__item { display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--linha); border-radius: 14px; padding: 22px; font-size: 15px; color: var(--cinza); }
.dor__item svg { color: #c47a5c; flex-shrink: 0; margin-top: 2px; }

/* ===========================================
   DEPOIMENTOS EM VÍDEO
=========================================== */
.depoimentos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.depoimentos__video { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--linha); aspect-ratio: 9/16; background: var(--carta); padding: 0; }
.depoimentos__video video { width: 100%; height: 100%; object-fit: cover; }
.depoimentos__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(10,8,5,0.28); transition: opacity 0.2s; }
.depoimentos__play svg { width: 20px; height: 20px; color: #fff; margin-left: 2px; background: rgba(255,255,255,0.14); border-radius: 50%; padding: 17px; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.4); box-sizing: content-box; }
.depoimentos__video.tocando .depoimentos__play { opacity: 0; pointer-events: none; }

/* ===========================================
   PILARES
=========================================== */
.pilares__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pilar-card { background: var(--carta); border: 1px solid var(--linha); border-radius: 18px; padding: 30px 26px; }
.pilar-card__num { font-family: 'Fraunces', serif; font-size: 15px; color: var(--dourado); }
.pilar-card h3 { font-size: 21px; margin-top: 12px; }
.pilar-card ul { margin-top: 18px; }
.pilar-card li { font-size: 14px; color: var(--cinza); padding: 9px 0 9px 22px; position: relative; border-top: 1px solid rgba(255,255,255,0.06); }
.pilar-card li:first-child { border-top: none; }
.pilar-card li::before { content: "—"; position: absolute; left: 0; color: var(--dourado-fundo); }

/* ===========================================
   BÔNUS
=========================================== */
.bonus { background: var(--preto-2); border-top: 1px solid var(--linha); border-bottom: 1px solid var(--linha); }
.bonus__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bonus-card { border: 1px solid var(--linha); border-radius: 14px; padding: 22px 18px; text-align: center; background: var(--carta); }
.bonus-card svg { color: var(--dourado); }
.bonus-card__tag { display: block; font-size: 11px; letter-spacing: 0.1em; color: var(--dourado); text-transform: uppercase; margin-top: 10px; }
.bonus-card p { font-size: 14px; margin-top: 8px; line-height: 1.4; }

/* ===========================================
   MENTORIA
=========================================== */
.mentoria__inner { display: grid; grid-template-columns: 0.8fr 1fr; gap: 46px; align-items: center; }
.mentoria__foto { border-radius: 18px; overflow: hidden; border: 1px solid var(--linha); aspect-ratio: 3/4; max-width: 380px; }
.mentoria__foto img { width: 100%; height: 100%; object-fit: cover; }
.mentoria__texto h2 { font-size: 30px; margin-top: 4px; }
.mentoria__texto p { color: var(--cinza); font-size: 15.5px; margin-top: 16px; }
.mentoria__assinatura { margin-top: 24px; font-size: 15px; }
.mentoria__assinatura b { color: var(--dourado-claro); display: block; font-size: 17px; font-family: 'Fraunces', serif; }
.mentoria__assinatura span { color: var(--cinza); }

/* ===========================================
   PÚBLICO-ALVO
=========================================== */
.publico { background: var(--preto-2); border-top: 1px solid var(--linha); border-bottom: 1px solid var(--linha); }
.publico__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 720px; margin: 0 auto; }
.publico__item { display: flex; align-items: center; gap: 12px; font-size: 15px; border: 1px solid var(--linha); border-radius: 12px; padding: 16px 18px; background: var(--carta); }
.publico__item svg { color: var(--dourado); flex-shrink: 0; }

/* ===========================================
   DETALHES
=========================================== */
.detalhes__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 980px; margin: 0 auto; }
.detalhe-card { display: flex; flex-direction: column; align-items: center; text-align: center; border: 1px solid var(--linha); border-radius: 14px; padding: 26px 16px; }
.detalhe-card svg { color: var(--dourado); }
.detalhe-card__k { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dourado); margin-top: 10px; }
.detalhe-card__v { font-family: 'Fraunces', serif; font-size: 18px; margin-top: 8px; }

/* ===========================================
   FAQ
=========================================== */
.faq { background: var(--preto-2); border-top: 1px solid var(--linha); border-bottom: 1px solid var(--linha); }
.faq__lista { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--linha); }
.faq-item__pergunta { width: 100%; text-align: left; background: none; border: none; color: var(--branco); font-size: 15.5px; font-weight: 500; padding: 20px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item__pergunta svg { color: var(--dourado); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.aberto .faq-item__pergunta svg { transform: rotate(180deg); }
.faq-item__resposta { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item__resposta p { font-size: 14.5px; color: var(--cinza); padding: 0 4px 20px; line-height: 1.6; }

/* ===========================================
   CTA FINAL
=========================================== */
.cta-final { text-align: center; }
.cta-final .titulo-secao { max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-final__botao { display: flex; justify-content: center; margin-top: 26px; }

/* ===========================================
   RODAPÉ
=========================================== */
.rodape { padding: 40px 0 50px; text-align: center; border-top: 1px solid var(--linha); }
.rodape p { font-size: 12.5px; color: var(--cinza); margin: 4px 0; }

.whats-flutuante { position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.whats-flutuante .icone-whatsapp { width: 30px; height: 30px; fill: currentColor; }
.cta-pill__icone .icone-whatsapp { width: 18px; height: 18px; fill: currentColor; }

/* ===========================================
   MODAL
=========================================== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.aberto { display: flex; }
.modal__fundo { position: absolute; inset: 0; background: rgba(6,5,3,0.72); backdrop-filter: blur(3px); }
.modal__card { position: relative; width: 100%; max-width: 460px; background: var(--carta); border: 1px solid var(--linha); border-radius: 22px; padding: 38px 34px; max-height: 90vh; overflow-y: auto; }
.modal__fechar { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--linha); background: none; color: var(--cinza); display: flex; align-items: center; justify-content: center; }
.modal__card h2 { font-size: 25px; text-align: center; }
.modal__sub { text-align: center; color: var(--cinza); font-size: 14px; margin-top: 10px; }
.campo { margin-top: 18px; }
.campo label { font-size: 13px; color: var(--cinza); display: block; margin-bottom: 7px; }
.campo input, .campo select { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--linha); border-radius: 10px; padding: 13px 14px; color: var(--branco); font-size: 15px; font-family: inherit; }
.campo input:focus, .campo select:focus { outline: none; border-color: var(--dourado); }
.campo__erro { font-size: 12.5px; color: #e0805f; margin-top: 6px; display: none; }
.modal__seguranca { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12px; color: var(--cinza); margin-top: 14px; }
.modal__sucesso { display: none; text-align: center; }
.modal__sucesso svg { color: var(--dourado); }
.modal__sucesso h2 { margin-top: 14px; }

/* ===========================================
   ANIMAÇÕES DE ENTRADA (GSAP ScrollTrigger)
=========================================== */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.reveal--ativo { opacity: 1; transform: none; }

/* ===========================================
   RESPONSIVO
=========================================== */
@media (max-width: 860px) {
  html, body { width: 100%; max-width: 100%; overflow-x: clip; }
  .container, .navbar__inner, .hero__inner, .dor__grid, .depoimentos__grid, .pilares__grid, .bonus__grid, .mentoria__inner, .publico__grid, .detalhes__grid, .faq__lista { min-width: 0; max-width: 100%; }
  .hero__inner > *, .dor__grid > *, .depoimentos__grid > *, .pilares__grid > *, .bonus__grid > *, .mentoria__inner > *, .publico__grid > *, .detalhes__grid > * { min-width: 0; max-width: 100%; }
  .navbar__inner { width: 100%; }
  .navbar__links, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .dor__grid { grid-template-columns: 1fr; }
  .depoimentos__grid { grid-template-columns: repeat(2, 1fr); }
  .pilares__grid { grid-template-columns: 1fr; }
  .bonus__grid { grid-template-columns: repeat(2, 1fr); }
  .mentoria__inner { grid-template-columns: 1fr; }
  .publico__grid { grid-template-columns: 1fr; }
  .detalhes__grid { grid-template-columns: repeat(2, 1fr); }
  .modal__card { padding: 30px 22px; }
}
