/* ============================================================
   MÉTODO GOVERNE — ESTILOS PRINCIPAIS
   Paleta: azul-noite #0F1626 + terracota #9C5D48 + creme #EFE8DF
   Tipografia: Playfair Display (display) + Inter (corpo)
   ============================================================ */

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

:root {
  --navy:     #0F1626;
  --navy-mid: #1A2540;
  --navy-lt:  #243050;
  --terra:    #9C5D48;
  --terra-lt: #B87560;
  --cream:    #EFE8DF;
  --cream-lt: #F7F3EE;
  --white:    #FFFFFF;
  --muted:    #7A8099;
  --text:     #2A2A3A;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── UTILITÁRIOS ── */
.terra-rule {
  width: 48px; height: 2px;
  background: var(--terra);
  margin: 1.25rem auto;
}
.terra-rule--left { margin-left: 0; }

.eyebrow {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.btn-primary {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  padding: 1.05rem 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--terra-lt); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--terra);
  color: var(--terra);
  padding: 1.05rem 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { background: var(--terra); color: var(--white); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(239,232,223,0.4);
  color: var(--cream);
  padding: 1.05rem 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--cream); color: var(--white); }

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
@keyframes pulseCta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(156,93,72,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(156,93,72,0); }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible         { opacity: 1; transform: translateY(0); }
.reveal-delay-1         { transition-delay: 0.1s; }
.reveal-delay-2         { transition-delay: 0.2s; }
.reveal-delay-3         { transition-delay: 0.3s; }
.reveal-delay-4         { transition-delay: 0.4s; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  background: linear-gradient(to bottom, rgba(15,22,38,0.97) 0%, transparent 100%);
  transition: background 0.4s, border-color 0.4s;
}
#navbar.scrolled {
  background: rgba(15,22,38,0.98);
  border-bottom: 1px solid rgba(156,93,72,0.2);
}

.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--cream);
  letter-spacing: 0.04em;
}
.nav-logo-text em { font-style: italic; color: var(--terra-lt); }

.nav-links { list-style: none; display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(239,232,223,0.75); transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--terra); color: var(--white);
  border: none; padding: 0.65rem 1.4rem; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--terra-lt); }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: var(--navy);
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15,22,38,0.88) 0%, rgba(15,22,38,0.6) 60%, rgba(15,22,38,0.92) 100%);
}

.hero-content {
  position: relative; text-align: center;
  max-width: 860px; padding: 8rem 2rem 4rem;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 999px;
  background: rgba(156,93,72,0.15);
  border: 1px solid rgba(156,93,72,0.3);
  color: var(--terra-lt);
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400; line-height: 1.1;
  color: var(--white); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title span { color: var(--terra-lt); font-style: italic; }

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(239,232,223,0.75); line-height: 1.7;
  max-width: 680px; margin: 0 auto 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}

.hero-btn {
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
  margin-bottom: 2rem;
}
.hero-btn .btn-primary { animation: pulseCta 2.5s 2s infinite; }

.hero-frase {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.05rem;
  color: rgba(239,232,223,0.5);
  opacity: 0; animation: fadeUp 0.8s 1s forwards;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeUp 0.8s 1.4s forwards;
}
.hero-scroll span { font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--terra) 0%, transparent 100%);
  animation: scrollPulse 2s 2s infinite;
}

/* ── VÍDEO ── */
#video { padding: 6rem 3rem; background: var(--cream-lt); }
.video-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.video-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400; color: var(--navy);
  margin-bottom: 1rem;
}
.video-inner p {
  color: var(--muted); font-size: 0.95rem;
  line-height: 1.75; max-width: 680px; margin: 0 auto 2.5rem;
}
.video-wrapper {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: var(--navy); overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,22,38,0.15);
}
.video-wrapper iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* ── PROBLEMA ── */
#problema { padding: 6rem 3rem; background: var(--navy); }
.problema-inner { max-width: 800px; margin: 0 auto; }
.problema-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400; color: var(--cream);
  margin-bottom: 2.5rem; line-height: 1.25;
}
.desafios-lista {
  list-style: none; display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 3rem;
}
.desafios-lista li {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: rgba(239,232,223,0.05);
  border: 1px solid rgba(239,232,223,0.08);
  color: rgba(239,232,223,0.85); font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s;
}
.desafios-lista li:hover {
  background: rgba(156,93,72,0.1);
  border-color: rgba(156,93,72,0.25);
}
.desafio-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(156,93,72,0.15);
  border: 1px solid rgba(156,93,72,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra-lt); font-size: 0.7rem; font-weight: 700;
}
.problema-cta { text-align: center; }

/* ── FILOSOFIA ── */
#filosofia { padding: 6rem 3rem; background: var(--cream-lt); }
.filosofia-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.filosofia-texto h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--navy);
  line-height: 1.15; margin-bottom: 1.5rem;
}
.filosofia-texto p {
  color: var(--muted); font-size: 0.95rem;
  line-height: 1.8; margin-bottom: 0.75rem;
}
.filosofia-texto p strong { color: var(--navy); font-weight: 500; }
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2rem 0;
}
.area-pill {
  padding: 0.45rem 1.1rem; border-radius: 999px;
  background: var(--cream);
  border: 1px solid rgba(156,93,72,0.2);
  color: var(--terra); font-size: 0.72rem;
  letter-spacing: 0.1em; font-weight: 500;
}
.filosofia-visual {
  position: relative;
}
.filosofia-quote {
  background: var(--navy); padding: 3rem;
  position: relative;
}
.filosofia-quote::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 8rem; line-height: 0;
  color: var(--terra); opacity: 0.2;
  position: absolute; top: 2.5rem; left: 1.5rem;
}
.filosofia-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-style: italic;
  color: var(--cream); line-height: 1.5;
  position: relative; z-index: 1;
}
.filosofia-quote cite {
  display: block; margin-top: 1.5rem;
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--terra-lt);
  font-style: normal;
}

/* ── MOVIMENTOS ── */
#movimentos { padding: 6rem 3rem; background: var(--navy-mid); }
.movimentos-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.movimentos-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400; color: var(--cream);
  margin-bottom: 3rem;
}
.movimentos-lista {
  list-style: none; display: flex; flex-direction: column; gap: 0;
  counter-reset: mov;
  text-align: left;
}
.movimentos-lista li {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(239,232,223,0.06);
  color: rgba(239,232,223,0.8); font-size: 0.95rem;
}
.movimentos-lista li:last-child { border-bottom: none; }
.mov-num {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--terra); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}

/* ── JORNADA (módulos) ── */
#jornada { padding: 6rem 3rem; background: var(--cream); }
.jornada-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.jornada-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400; color: var(--navy);
  margin-bottom: 0.75rem;
}
.jornada-header p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.modulos-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem; max-width: 1000px; margin: 0 auto 3rem;
}
.modulo-card {
  background: var(--cream-lt); padding: 1.25rem 1rem;
  display: flex; align-items: center; gap: 0.85rem;
  border: 1px solid rgba(15,22,38,0.07);
  transition: border-color 0.2s, transform 0.2s;
}
.modulo-card:hover { border-color: var(--terra); transform: translateY(-2px); }
.modulo-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem; border-radius: 6px;
}
.modulo-card span { font-size: 0.85rem; font-weight: 500; color: var(--navy); }
.jornada-cta { text-align: center; }

/* ── DEPOIMENTOS ── */
#depoimentos { padding: 6rem 3rem; background: var(--navy); }
.depoimentos-header { text-align: center; margin-bottom: 3rem; }
.depoimentos-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400; color: var(--cream);
}
.depoimentos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.depoimento-video { position: relative; aspect-ratio: 16/9; background: var(--navy-lt); overflow: hidden; }
.depoimento-video iframe,
.depoimento-video video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; object-fit: cover; }
.depoimento-info { padding: 0.75rem 0; color: rgba(239,232,223,0.6); font-size: 0.8rem; }
.depoimento-info strong { color: var(--cream); display: block; margin-bottom: 0.1rem; }
/* Placeholder quando não há vídeos */
.depoimentos-placeholder {
  max-width: 600px; margin: 0 auto; text-align: center;
  padding: 4rem 2rem;
  border: 1px dashed rgba(156,93,72,0.3);
}
.depoimentos-placeholder p { color: rgba(239,232,223,0.4); font-size: 0.9rem; }

/* ── FUNDADOR ── */
#fundador { padding: 6rem 3rem; background: var(--cream-lt); }
.fundador-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: center;
}
.fundador-foto {
  position: relative;
}
.fundador-foto img {
  width: 100%; filter: grayscale(15%) contrast(1.05);
}
.fundador-foto::before {
  content: '';
  position: absolute; top: -1rem; right: -1rem;
  width: 60%; height: 60%;
  border: 2px solid rgba(156,93,72,0.25);
  z-index: -1;
}
.fundador-texto h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400; color: var(--navy); margin-bottom: 1.5rem;
}
.fundador-texto p {
  color: var(--muted); font-size: 0.95rem; line-height: 1.8;
  margin-bottom: 0.75rem;
}
.fundador-empresas {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.75rem 0;
}
.empresa-tag {
  padding: 0.35rem 0.9rem; font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--navy); color: var(--cream); font-weight: 500;
}

/* ── CTA FINAL ── */
#cta-final {
  padding: 7rem 3rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
}
.cta-final-inner { max-width: 720px; margin: 0 auto; }
.cta-final-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400; color: var(--cream);
  line-height: 1.15; margin-bottom: 2.5rem;
}
.cta-final-inner h2 em { font-style: italic; color: var(--terra-lt); display: block; }
.cta-selos {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin: 3rem 0;
}
.selo {
  background: rgba(239,232,223,0.05);
  border: 1px solid rgba(239,232,223,0.1);
  padding: 1.25rem 1.75rem; text-align: center; min-width: 140px;
}
.selo strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--terra-lt); display: block; margin-bottom: 0.3rem;
}
.selo span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(239,232,223,0.5); }
.cta-local {
  margin-top: 2rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(239,232,223,0.35);
}

/* ── FAQ ── */
#faq { padding: 6rem 3rem; background: var(--cream-lt); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400; color: var(--navy);
  text-align: center; margin-bottom: 3rem;
}
.faq-lista { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(15,22,38,0.08);
}
.faq-pergunta {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 500; color: var(--navy);
  transition: color 0.2s;
}
.faq-pergunta:hover { color: var(--terra); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1.5px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: transform 0.3s;
}
.faq-item.aberto .faq-icon { transform: rotate(45deg); color: var(--terra); }
.faq-resposta {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.aberto .faq-resposta { max-height: 400px; }
.faq-resposta p {
  padding: 0 0 1.4rem;
  color: var(--muted); font-size: 0.9rem; line-height: 1.75;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(156,93,72,0.15);
  padding: 3rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2rem;
}
.footer-logo-area .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--cream); margin-bottom: 0.5rem;
}
.footer-logo-area .logo-text em { font-style: italic; color: var(--terra-lt); }
.footer-info p {
  font-size: 0.72rem; color: rgba(239,232,223,0.35);
  line-height: 1.7; max-width: 380px;
}
.footer-links { display: flex; gap: 1.5rem; align-items: flex-start; }
.footer-links a {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(239,232,223,0.4); transition: color 0.2s;
}
.footer-links a:hover { color: var(--terra-lt); }

/* ── RESPONSIVO ── */
@media (max-width: 960px) {
  #navbar { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .filosofia-inner { grid-template-columns: 1fr; gap: 3rem; }
  .fundador-inner { grid-template-columns: 1fr; gap: 3rem; }
  .fundador-foto { max-width: 320px; margin: 0 auto; }
  .modulos-grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid { grid-template-columns: 1fr; }
  #hero, #video, #problema, #filosofia, #movimentos,
  #jornada, #depoimentos, #fundador, #cta-final, #faq { padding: 5rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
}

@media (max-width: 600px) {
  .modulos-grid { grid-template-columns: 1fr 1fr; }
  .cta-selos { gap: 1rem; }
  .selo { min-width: 120px; padding: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, .reveal {
    animation: none !important; transition: none !important;
    opacity: 1 !important; transform: none !important;
  }
}
