/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background-color: #0e0e0e;
  color: #eaeaea;
  line-height: 1.6;
}

/* =========================
   HERO (HOME)
========================= */
.hero-modern{
  min-height: 76vh;
  max-height: 820px;
  background-position: center 20%;
}

.hero-slide{
  background-position: center 20%;
}


/* ===== HERO CAROUSEL (fade) ===== */
.hero-carousel {
  position: relative;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0; /* abaixo de tudo */
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

/* overlay principal */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* camada tribal à esquerda (substitui o "preto do lado") */
.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/tribal-lado.png');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.38;
  z-index: 1;

  /* máscara: só esquerda */
  mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.9) 32%,
    rgba(0,0,0,0.45) 52%,
    rgba(0,0,0,0) 70%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.9) 32%,
    rgba(0,0,0,0.45) 52%,
    rgba(0,0,0,0) 70%
  );
}

/* escurecimento local (garante leitura no texto sem "preto chapado") */
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.60) 40%,
    rgba(0,0,0,0.18) 100%
  );
}

/* glow vindo da direita (fogo) */
.hero-modern::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at 78% 48%,
    rgba(122,63,22,0.35) 0%,
    rgba(122,63,22,0.10) 35%,
    rgba(0,0,0,0) 60%
  );
  z-index: 1;
  pointer-events: none;
}

/* vinheta geral (cinema) */
.hero-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,0.15), rgba(0,0,0,0.75)),
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.75));
  z-index: 1;
  pointer-events: none;
}

/* fumaça/mist bem sutil */
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    circle at 70% 40%,
    rgba(255,255,255,0.07) 0%,
    rgba(255,255,255,0) 55%
  );
  filter: blur(18px);
  opacity: 0.55;
  animation: mistMove 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes mistMove {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(2%, 1%, 0) scale(1.03); }
}

/* =========================
   NAVBAR
========================= */
.top-nav {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 90px;
  font-family: 'Poppins', sans-serif;
}

.logo {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.2;
}

.logo span {
  font-size: 11px;
  opacity: 0.7;
}

.top-nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
}

.top-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.top-nav a:hover,
.top-nav a.active {
  opacity: 1;
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 150px 90px;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -80px -40px -80px -80px;
  background-image: url('../images/tribal-bg.png');
  background-repeat: repeat;
  opacity: 0.06;
  z-index: -1;
  mask-image: radial-gradient(circle at 30% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(circle at 30% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  text-shadow: 0 12px 40px rgba(0,0,0,0.55);
}

.hero-content .highlight {
  background-color: #7a3f16;
  padding: 6px 14px;
  display: inline-block;
}

.hero-content p {
  margin-top: 28px;
  font-size: 17px;
  opacity: 0.85;
  max-width: 520px;
  text-shadow: 0 10px 26px rgba(0,0,0,0.55);
}

/* Kicker */
.kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 14px;
}

/* =========================
   BOTÕES
========================= */
.btn-dark {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 34px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-dark:hover {
  background-color: #1a1a1a;
}

.btn-dark::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 40%;
  height: 180%;
  background: rgba(255,255,255,0.12);
  transform: rotate(18deg);
  filter: blur(1px);
  transition: transform .8s ease, left .8s ease, opacity .8s ease;
  opacity: 0;
}

.btn-dark:hover::after {
  left: 120%;
  opacity: 1;
}

.btn-outline {
  display: inline-block;
  margin-top: 26px;
  padding: 12px 30px;
  border: 1px solid #7a3f16;
  color: #eaeaea;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-outline:hover {
  background: rgba(122, 63, 22, 0.12);
  border-color: rgba(122, 63, 22, 0.85);
}

/* =========================
   PILARES / CARDS (HOME)
========================= */
.cards {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 120px 90px;
  background-color: #0b0b0b;
  overflow: hidden;
}

/* TRIBAL (CAMADA ANIMADA) */
.cards::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/tribal-bg.png');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.8;
  animation: tribalBreath 50s ease-in-out infinite,
             tribalPulse 70s ease-in-out infinite;
  transform-origin: center;
  z-index: 1;
}

/* CAMADA ESCURA PARA LEITURA */
.cards::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.55) 65%,
    rgba(0,0,0,0.75) 80%,
    rgba(0,0,0,0.95) 100%
  );
  z-index: 2;
}

/* CARD */
.card {
  position: relative;
  z-index: 3;
  background-color: rgba(0,0,0,0.7);
  padding: 40px 32px;
  width: 320px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #7a3f16;
}

.card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.card p {
  font-size: 15px;
  opacity: 0.82;
}

/* =========================
   MANIFESTO
========================= */
.manifesto {
  text-align: center;
  padding: 100px 20%;
  background-color: #080808;
}

.manifesto p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  opacity: 0.85;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 40px;
  font-size: 12px;
  opacity: 0.6;
  background-color: #050505;
}

/* =========================
   ANIMAÇÕES (TRIBAL)
========================= */
@keyframes tribalBreath {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 4% 4%; }
  100% { background-position: 0% 0%; }
}

@keyframes tribalPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* ==========================================================
   PÁGINAS INTERNAS (ESSÊNCIA / QUIMBANDA / HIERARQUIA / ETC)
========================================================== */

/* HERO menor nas páginas internas */
.hero-internal {
  height: 70vh;
  min-height: 520px;
  background-image: url('../images/hero-essencia.png');
  background-position: center top;
}

.hero-quimbanda{
  background-image: url('../images/hero-quimbanda.png');
}

.hero-hierarquia{
  background-image: url('../images/hero-hierarquia.png');
}

/* conteúdo do hero interno */
.hero-content-internal {
  padding: 170px 90px 0;
  max-width: 720px;
}

/* SEÇÃO SPLIT */
.section {
  padding: 110px 0;
  background: #0b0b0b;
}

.split-section {
  position: relative;
  overflow: hidden;
}

/* tribal sutil */
.split-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/tribal-bg.png');
  background-repeat: repeat;
  opacity: 0.06;
  z-index: 1;
}

/* escurece para leitura */
.split-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 2;
}

.split-wrap {
  position: relative;
  z-index: 3;
  width: min(1140px, calc(100% - 180px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.split-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.split-text p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.9;
  max-width: 520px;
}

/* mini cards (alinhados e mesma altura) */
.mini-values{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;

  width: 100%;
  max-width: 100%;
}

.mini-value{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 18px 16px;

  display: flex;
  flex-direction: column;
  min-height: 150px;
}

.mini-value h3{
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mini-value p{
  font-size: 13px;
  opacity: 0.86;
  line-height: 1.7;
  margin-top: auto;
}

/* responsivo */
@media (max-width: 900px){
  .mini-values{
    grid-template-columns: 1fr;
  }
  .mini-value{
    min-height: unset;
  }
}

/* imagem à direita */
.split-media {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.35);
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 900px) {
  .top-nav {
    padding: 24px 40px;
  }

  .hero-content {
    padding: 120px 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  /* Home cards */
  .cards {
    flex-direction: column;
    align-items: center;
    padding: 80px 40px;
  }

  .cards::after {
    animation: none;
  }

  .card {
    width: 100%;
    max-width: 380px;
  }

  /* manifesto */
  .manifesto {
    padding: 80px 40px;
  }

  /* internas */
  .hero-content-internal {
    padding: 140px 40px 0;
  }

  .split-wrap{
    align-items: start;
  }

  .mini-values {
    grid-template-columns: 1fr;
  }

  .split-media img {
    height: 360px;
  }
}

/* =========================
   ESSÊNCIA — SEÇÕES NOVAS
========================= */

.hero-actions{
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.container-narrow{
  max-width: 1100px;
  margin: 0 auto;
}

/* garante respiro lateral nas seções */
.intro-values,
.rituals,
.gallery,
.faq{
  padding: 110px 0;
}

.section-head{
  margin-bottom: 34px;
  max-width: 760px;
}

.section-head h2{
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-head p{
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.9;
}

/* Intro cards */
.intro-values{
  background: #0b0b0b;
}

.values-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 22px 18px;
  transition: transform .25s ease, border-color .25s ease;
}

.value-card:hover{
  transform: translateY(-4px);
  border-color: rgba(122,63,22,0.75);
}

.value-icon{
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.value-card h3{
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.value-card p{
  font-size: 13px;
  opacity: 0.86;
  line-height: 1.7;
}

/* Split CTA */
.split-actions{
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Ritos / passos */
.rituals{
  background: #090909;
}

.ritual-steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ritual-step{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 22px 18px;
}

.step-num{
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: 10px;
}

.ritual-step h3{
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

.ritual-step p{
  font-size: 13px;
  opacity: 0.86;
  line-height: 1.8;
}

/* Quote band */
.quote-band{
  background: #070707;
  padding: 80px 0;
}

.quote-text{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  letter-spacing: 0.2px;
  line-height: 1.9;
  opacity: 0.9;
  border-left: 3px solid rgba(122,63,22,0.85);
  padding-left: 18px;
}

/* Galeria */
.gallery{
  background: #0b0b0b;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item{
  display: block;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  background: rgba(0,0,0,0.35);
}

.gallery-item img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .35s ease, opacity .35s ease;
  opacity: 0.92;
}

.gallery-item:hover img{
  transform: scale(1.06);
  opacity: 1;
}

/* FAQ */
.faq{
  background: #090909;
}

.faq-list{
  display: grid;
  gap: 10px;
}

.faq-item{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 14px 16px;
}

.faq-item summary{
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 0.6px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-item summary::after{
  content: "+";
  float: right;
  opacity: 0.85;
}

.faq-item[open] summary::after{
  content: "–";
}

.faq-item p{
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.88;
  line-height: 1.8;
}

/* CTA */
.cta-row{
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Responsivo */
@media (max-width: 900px){
  .container-narrow{
    width: min(1100px, calc(100% - 80px));
  }

  .values-grid{
    grid-template-columns: 1fr;
  }

  .ritual-steps{
    grid-template-columns: 1fr;
  }

  .gallery-grid{
    grid-template-columns: 1fr 1fr;
  }

  .section-head h2{
    font-size: 30px;
  }

  .quote-band{
    padding: 60px 0;
  }
}

/* =========================
   FADE GLOBAL (SOMBRA SUAVE)
   Aplicável em HERO e SEÇÕES
========================= */

.fade-soft {
  position: relative;
  overflow: hidden;
}

.fade-soft::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;

  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0) 45%,
      rgba(0,0,0,0.35) 70%,
      rgba(0,0,0,0.65) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.15) 30%,
      rgba(0,0,0,0.15) 70%,
      rgba(0,0,0,0.65) 100%
    );
}

/* =========================
   HIERARQUIA COMPLETA
========================= */

.hierarchy-full {
  background: #0b0b0b;
}

.hierarchy-list {
  margin-top: 60px;
  display: grid;
  gap: 22px;
}

.hierarchy-item {
  position: relative;
  padding: 28px 28px 28px 70px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.06);
}

.hierarchy-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.hierarchy-item p {
  font-size: 14.5px;
  opacity: 0.88;
  line-height: 1.7;
}

.hierarchy-level {
  position: absolute;
  top: 28px;
  left: 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.5;
}

/* ==========================================================
   PATCH MINIMO — CONTAINER + HIERARQUIA (cole no FINAL)
========================================================== */

.container-narrow{
  width: min(1100px, calc(100% - 180px));
  margin: 0 auto;
}

@media (max-width: 900px){
  .container-narrow{
    width: min(1100px, calc(100% - 80px));
  }
}

.split-wrap{
  width: min(1140px, calc(100% - 180px));
}

@media (max-width: 900px){
  .split-wrap{
    width: min(1140px, calc(100% - 80px));
  }
}

/* hierarquia alinhada */
.hierarchy-list{
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.hierarchy-item{
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;

  padding: 20px 22px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.06);
}

.hierarchy-level{
  position: static;
  display: inline-flex;
  height: 34px;
  width: 56px;
  align-items: center;
  justify-content: center;

  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.55;

  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.35);
}

.hierarchy-item h3{
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.hierarchy-item p{
  font-size: 14.5px;
  opacity: 0.88;
  line-height: 1.75;
  max-width: 860px;
}

@media (max-width: 700px){
  .hierarchy-item{
    grid-template-columns: 1fr;
  }
  .hierarchy-level{
    width: 64px;
  }
}

/* =========================
   FIX — ALINHAMENTO DE BOTÕES
========================= */

.hero-actions,
.split-actions,
.cta-row{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-dark,
.btn-outline{
  margin-top: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  padding: 14px 34px;
  vertical-align: middle;
  white-space: nowrap;
}

.btn-outline{
  padding: 12px 30px;
}
/* ==========================================================
   THEME V2 — MENOS TREVOSO (cole no FINAL)
========================================================== */

/* Paleta / base */
:root{
  --bg-0: #111111;
  --bg-1: #151515;
  --bg-2: #1b1b1b;

  --card: rgba(255,255,255,0.04);
  --card2: rgba(255,255,255,0.06);
  --stroke: rgba(255,255,255,0.09);

  --text: rgba(255,255,255,0.90);
  --muted: rgba(255,255,255,0.70);

  --accent: #a4682a;      /* bronze mais “chique” */
  --accentSoft: rgba(164,104,42,0.18);

  --shadow: 0 18px 60px rgba(0,0,0,0.45);
}

body{
  background: radial-gradient(circle at 20% 0%, #1a1a1a 0%, var(--bg-0) 46%, #0f0f0f 100%);
  color: var(--text);
}

/* Links */
a{ color: var(--text); }
a:hover{ color: #fff; }

/* Topbar mais clean */
.topbar{
  background: rgba(10,10,10,0.30);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Botões: menos preto, mais “glass” */
.btn-dark{
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
.btn-dark:hover{
  background: rgba(255,255,255,0.10);
}

.btn-outline{
  border-color: rgba(164,104,42,0.70);
  background: rgba(164,104,42,0.10);
}
.btn-outline:hover{
  background: rgba(164,104,42,0.16);
  border-color: rgba(164,104,42,0.95);
}

/* Highlight do hero menos “tijolo” */
.hero-content .highlight{
  background: linear-gradient(90deg, rgba(164,104,42,0.95), rgba(164,104,42,0.65));
}

/* HERO: menos vinheta/escuro chapado, mais suave */
.hero-overlay{
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.36) 44%,
    rgba(0,0,0,0.10) 100%
  );
}

.hero-modern::after{
  /* substitui o “cinema pesado” por um leve */
  background:
    radial-gradient(circle at 25% 18%, rgba(0,0,0,0.10), rgba(0,0,0,0.55)),
    linear-gradient(180deg, rgba(0,0,0,0.20), rgba(0,0,0,0.58));
}

/* Cards gerais mais claros */
.card,
.value-card,
.ritual-step,
.gallery-item,
.faq-item,
.mini-value,
.hierarchy-item,
.split-media{
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

/* Hover mais elegante */
.card:hover,
.value-card:hover{
  border-color: rgba(164,104,42,0.65);
}

/* Seções: troca fundos “preto puro” por camadas */
.section,
.cards,
.intro-values,
.gallery{
  background: var(--bg-1);
}

.manifesto,
.rituals,
.faq,
.quote-band{
  background: var(--bg-2);
}

/* Textos: melhora contraste sem estourar */
.hero-content p,
.split-text p,
.section-head p,
.value-card p,
.ritual-step p,
.faq-item p,
.hierarchy-item p{
  color: var(--muted);
}

/* Tribal: MUITO mais sutil (evita “ruído pesado”) */
.cards::after,
.split-section::before,
.hero-content::before{
  opacity: 0.035 !important;
  filter: blur(0.2px);
}

/* Vinheta global (fade-soft) menos agressiva */
.fade-soft::after{
  opacity: 0.35;
}

/* Inputs (se tiver) */
input, textarea{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

/* Pequeno “glow” de acento em títulos (opcional) */
.hero-content h1,
.split-text h2,
.section-head h2{
  text-shadow: 0 10px 38px rgba(0,0,0,0.40);
}
/* ==========================================================
   DESLIGAR EFEITOS DE ILUMINAÇÃO / VINHETA / FUMAÇA
   (cole no FINAL do style.css)
========================================================== */

/* 1) Desliga glow/vinheta do HERO */
.hero-modern::before,
.hero-modern::after{
  content: none !important;
}

/* 2) Desliga overlay do hero (inclui tribal do lado + fumaça) */
.hero-overlay,
.hero-overlay::before,
.hero-overlay::after{
  content: none !important;
  background: none !important;
}

/* 3) Desliga fade global (vinheta suave) */
.fade-soft::after{
  content: none !important;
  background: none !important;
}

/* 4) Desliga overlays das seções internas (tribal + escurecimento) */
.split-section::before,
.split-section::after,
.cards::before,
.cards::after{
  content: none !important;
  background: none !important;
  animation: none !important;
}

/* 5) Garante que nada fique “lavado” por camadas invisíveis */
.hero-carousel,
.hero-slides,
.hero-slide{
  filter: none !important;
}

/* 6) (Opcional) deixa o site mais “limpo” no fundo */
body{
  background-color: #121212 !important;
}

/* =========================================
   FIX HERO — IMAGEM CORTANDO
   (COLE NO FINAL DO CSS)
========================================= */

.hero-modern{
  height: min(78vh, 820px);   /* diminui altura exagerada */
  min-height: 520px;
}

/* controla o enquadramento do background */
.hero-slide,
.hero-modern{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 30% 5%; /* AJUSTE AQUI se precisar */
}

/* mobile */
@media (max-width: 900px){
  .hero-modern{
    height: 72vh;
    min-height: 520px;
  }

  .hero-slide,
  .hero-modern{
    background-position: 50% 12%;
  }
}
/* =====================================
   NAV NOVO — ESTILO PREMIUM
===================================== */

.top-nav{
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;

  width: min(1200px, calc(100% - 60px));
  padding: 14px 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(15,15,15,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 20px 70px rgba(0,0,0,0.35);
}

/* Logo */
.top-nav .logo{
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.top-nav .logo span{
  font-size: 10px;
  opacity: 0.65;
  letter-spacing: 2.5px;
}

/* Lista */
.top-nav ul{
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Links */
.top-nav a{
  position: relative;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  letter-spacing: 1px;

  color: rgba(255,255,255,0.85);
  padding: 10px 14px;
  border-radius: 999px;

  transition: all .25s ease;
}

/* Hover */
.top-nav a:hover{
  background: rgba(255,255,255,0.06);
  color: #fff;
  transform: translateY(-1px);
}

/* Linha animada */
.top-nav a::after{
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: rgba(122,63,22,0.9);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.top-nav a:hover::after{
  transform: scaleX(1);
}

/* Ativo */
.top-nav a.active{
  background: rgba(122,63,22,0.14);
  border: 1px solid rgba(122,63,22,0.4);
  color: #fff;
}

.top-nav a.active::after{
  transform: scaleX(1);
}

/* Empurra o hero pra baixo (menu é fixo) */
.hero-modern{
  padding-top: 110px;
}

/* Mobile */
@media (max-width: 900px){
  .top-nav{
    top: 12px;
    padding: 10px 16px;
  }

  .top-nav ul{
    gap: 4px;
  }

  .top-nav a{
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-modern{
    padding-top: 95px;
  }
}
/* =========================
   HOME — UPGRADE PREMIUM
========================= */

/* HERO: menos alto e mais “cinema clean” */
.hero-modern{
  height: 82vh;
  min-height: 640px;
}

.hero-overlay{
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.44) 42%,
    rgba(0,0,0,0.18) 100%
  );
}

/* título com mais “respiro” */
.hero-content{
  max-width: 720px;
  padding: 150px 90px 110px;
}

.hero-content p{
  max-width: 560px;
}

/* CTA alinhadas e mais “premium” */
.hero-actions{
  margin-top: 28px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-dark{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-dark:hover{
  background: rgba(0,0,0,0.72);
}

.btn-outline{
  background: rgba(255,255,255,0.03);
}

/* =========================
   SEÇÃO: DESTAQUES (novo)
========================= */

.home-highlights{
  background: #0b0b0b;
  padding: 90px 0;
}

.home-head{
  width: min(1100px, calc(100% - 180px));
  margin: 0 auto 26px;
}

@media (max-width: 900px){
  .home-head{
    width: min(1100px, calc(100% - 80px));
  }
}

.home-head h2{
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.home-head p{
  font-size: 16px;
  opacity: .88;
  line-height: 1.9;
  max-width: 820px;
}

/* grid “premium”: 1 card grande + 3 menores */
.highlights-grid{
  width: min(1100px, calc(100% - 180px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

@media (max-width: 900px){
  .highlights-grid{
    width: min(1100px, calc(100% - 80px));
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.highlight-card{
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.40);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  text-decoration: none;
  color: inherit;
}

.highlight-card:hover{
  transform: translateY(-4px);
  border-color: rgba(122,63,22,0.55);
  background: rgba(0,0,0,0.52);
}

.highlight-kicker{
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 10px;
}

.highlight-card h3{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  letter-spacing: .6px;
  margin-bottom: 10px;
}

.highlight-card p{
  font-size: 14px;
  opacity: .88;
  line-height: 1.85;
  max-width: 52ch;
}

.highlight-go{
  margin-top: 18px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  opacity: .9;
}

/* card grande com “faixa” sutil */
.highlight-card.is-featured{
  grid-column: 1 / 2;
  grid-row: 1 / span 2;
  padding: 28px;
}

@media (max-width: 900px){
  .highlight-card.is-featured{
    grid-column: auto;
    grid-row: auto;
  }
}

.highlight-card.is-featured::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 20%, rgba(122,63,22,0.16), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0));
  opacity: .9;
}

/* =========================
   FAIXA MANIFESTO + CTA
========================= */

.home-manifest{
  background: #090909;
  padding: 80px 0;
}

.manifest-wrap{
  width: min(1100px, calc(100% - 180px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
}

@media (max-width: 900px){
  .manifest-wrap{
    width: min(1100px, calc(100% - 80px));
    grid-template-columns: 1fr;
  }
}

.manifest-box{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.40);
  padding: 22px;
}

.manifest-box p{
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  opacity: .9;
  letter-spacing: .2px;
}

.manifest-cta{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.40);
  padding: 22px;
}

.manifest-cta h3{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.manifest-cta p{
  font-size: 14px;
  opacity: .88;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* =========================
   HERO TITLE SYSTEM
========================= */

.hero-title-pattern{
  max-width: 760px;
}

.hero-title{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-highlight{
  background: #7a3f16;
  padding: 8px 18px;
  display: inline-block;
}

.hero-sub{
  font-size: 18px;
  opacity: 0.85;
  line-height: 1.8;
  max-width: 560px;
}

/* melhora leitura sobre imagem */
.hero-title,
.hero-sub{
  text-shadow: 0 12px 40px rgba(0,0,0,0.55);
}
/* =========================
   HISTÓRIA — TIMELINE
========================= */

.history-page{
  padding: 110px 0 120px;
  background: var(--bg-1, #151515);
}

.history-head{
  width: min(1100px, calc(100% - 180px));
  margin: 0 auto 44px;
}

@media (max-width: 900px){
  .history-head{ width: min(1100px, calc(100% - 80px)); }
}

.history-title{
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

@media (max-width: 900px){
  .history-title{ font-size: 30px; }
}

.history-sub{
  font-size: 16px;
  opacity: .86;
  line-height: 1.9;
  max-width: 820px;
}

/* Linha central */
.timeline{
  width: min(1100px, calc(100% - 180px));
  margin: 0 auto;
  position: relative;
  padding-left: 34px;
}

@media (max-width: 900px){
  .timeline{
    width: min(1100px, calc(100% - 80px));
    padding-left: 26px;
  }
}

.timeline::before{
  content:"";
  position:absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.10);
}

/* Item */
.timeline-item{
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 0;
  margin-bottom: 18px;
}

@media (max-width: 900px){
  .timeline-item{
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Bolinha */
.timeline-item::before{
  content:"";
  position:absolute;
  left: 3px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 0 6px rgba(164,104,42,0.08);
}

/* Meta */
.timeline-meta{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 10px;
}

.timeline-year{
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  opacity: .95;
}

.timeline-tag{
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: .92;

  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}

/* Card */
.timeline-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.30);
  padding: 22px;
}

.timeline-card h3{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: .4px;
}

.timeline-card p{
  font-size: 14.5px;
  opacity: .86;
  line-height: 1.9;
  max-width: 78ch;
}

/* Mini fotos */
.timeline-media{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 900px){
  .timeline-media{ grid-template-columns: 1fr; }
}

.timeline-media img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  opacity: .96;
}

/* Final */
.timeline-end{
  margin-top: 14px;
  padding: 14px 0 0;
}

.timeline-end-card{
  background: rgba(164,104,42,0.10);
  border: 1px solid rgba(164,104,42,0.22);
  padding: 22px;
}

.timeline-end-card h3{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.timeline-end-card p{
  font-size: 14.5px;
  opacity: .88;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* Scroll reveal */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.courses-hero{
  text-align:center;
  padding:120px 20px 60px;
  background:#111;
}

.courses-hero h1{
  font-family:'Poppins', sans-serif;
  font-size:42px;
}

.courses-grid{
  width:min(1100px, calc(100% - 120px));
  margin:60px auto 120px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.course-card{
  background:rgba(0,0,0,0.55);
  border:1px solid rgba(255,255,255,0.1);
  padding:60px 20px;
  text-align:center;
  font-family:'Poppins';
  font-size:20px;
  letter-spacing:2px;
  text-decoration:none;
  color:white;
  transition:.3s;
}

.course-card:hover{
  transform:translateY(-6px);
  border-color:#7a3f16;
}
/* =========================
   HERO — PÁGINA CURSOS
========================= */

.hero-cursos{
  background-image: url('../images/hero-cursos.png');
  background-position: center 15%;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Ajuste fino para não cortar imagem */
@media (max-width: 900px){
  .hero-cursos{
    background-position: center 25%;
  }
}

/* =========================================
   FIX — TEXTO DO HERO INTERNO IGUAL AO DA HOME
   (cole no FINAL do style.css)
========================================= */

.hero-content-internal .kicker{
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 14px;
}

.hero-content-internal h1{
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  text-shadow: 0 12px 40px rgba(0,0,0,0.55);
  margin: 0;
}

.hero-content-internal .highlight{
  background: linear-gradient(90deg, rgba(164,104,42,0.95), rgba(164,104,42,0.65));
  padding: 6px 14px;
  display: inline-block;
}

.hero-content-internal p{
  margin-top: 28px;
  font-size: 17px;
  opacity: 0.85;
  max-width: 560px;
  text-shadow: 0 10px 26px rgba(0,0,0,0.55);
}

@media (max-width: 900px){
  .hero-content-internal h1{
    font-size: 42px;
  }
  .hero-content-internal p{
    font-size: 16px;
  }
}
/* =========================
   CURSOS — GRID ESTILO HOME
========================= */
.hero-cursos{
  background-position: center top;
}

.courses-grid{
  width: min(1100px, calc(100% - 180px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 900px){
  .courses-grid{
    width: min(1100px, calc(100% - 80px));
    grid-template-columns: 1fr;
  }
}

.course-card{
  background: rgba(0,0,0,0.40);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.course-card h3{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin-top: 6px;
}

.course-card p{
  opacity: 0.88;
  line-height: 1.85;
}

.course-actions{
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   CURSOS — GRID CENTRALIZADO + BOTÕES ALINHADOS
   (cole no FINAL do style.css)
========================= */

/* 1) Centraliza o container do grid (funciona com várias classes possíveis) */
.courses-grid,
.cursos-grid,
.course-grid,
.cursos-cards,
.cards.courses,
.section-courses .cards,
.section-courses .grid,
.courses .grid {
  width: min(1100px, calc(100% - 180px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  justify-items: stretch;
  align-items: stretch;
}

@media (max-width: 900px){
  .courses-grid,
  .cursos-grid,
  .course-grid,
  .cursos-cards,
  .cards.courses,
  .section-courses .cards,
  .section-courses .grid,
  .courses .grid {
    width: min(1100px, calc(100% - 80px));
    grid-template-columns: 1fr;
  }
}

/* 2) Faz CADA CARD virar “coluna” e ter altura consistente */
.course-card,
.curso-card,
.courses-card,
.card.course,
.cards .card,
.courses-grid > a,
.courses-grid > div,
.cursos-grid > a,
.cursos-grid > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px 22px;
}

/* 3) Garante que o texto não “encolha” o card e que o espaço fique igual */
.course-card p,
.curso-card p,
.courses-card p,
.cards .card p,
.courses-grid p,
.cursos-grid p {
  margin-top: 10px;
  line-height: 1.9;
  min-height: 90px;   /* ajuste fino: 80-120 */
}

/* 4) ALINHA os botões: empurra pro fundo e centraliza */
.course-actions,
.curso-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* 5) Se você NÃO tiver .course-actions no HTML, força os últimos botões do card pro rodapé */
.course-card .btn-dark,
.course-card .btn-outline,
.curso-card .btn-dark,
.curso-card .btn-outline,
.cards .card .btn-dark,
.cards .card .btn-outline {
  align-self: center;
}

/* truque: dá “auto” no primeiro botão da dupla para empurrar os dois pro final */
.course-card .btn-dark:first-of-type,
.curso-card .btn-dark:first-of-type,
.cards .card .btn-dark:first-of-type {
  margin-top: auto !important;
}
