/* ============================================================
   INSTITUTO ATIVAÇÃO INTEGRAL — styles.css
   ============================================================ */

/* ─── TOKENS ─── */
:root {
  --brown-dark:    #714017;
  --brown-mid:     #86552c;
  --brown-warm:    #9a5f38;
  --bronze:        #c8905a;
  --bronze-light:  #dba87a;
  --sand:          #e8d5b7;
  --sand-light:    #f2e8d9;
  --cream:         #faf6f0;
  --areia:         #cebeb0;
  --off-white:     #fdf9f5;
  --text-dark:     #1e140d;
  --text-mid:      #5a3e2b;
  --text-light:    #9a7a65;
  --accent-line:   rgba(168,110,60,0.25);
  --nav-height:    80px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
strong { font-weight:500; }

body {
  font-family: 'Noto Serif', serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1;
}

/* grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ──────────────────────────────────────────────
   NAV
   ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  height: var(--nav-height);
}

/* ── backdrop panel ── */
.nav-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}
#navbar.scrolled .nav-backdrop {
  background: linear-gradient(to right, rgba(253,249,245,0.97) 0%, rgba(253,249,245,0) 100%);
  backdrop-filter: blur(16px);
  border-color: var(--accent-line);
}

/* ── inner layout ── */
.nav-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 0px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* ── logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-self: start;
}
/* símbolo — maior ao abrir, encolhe ao rolar */
.nav-logo-symbol {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
  transition: width 0.9s cubic-bezier(0.4,0,0.2,1),
              height 0.9s cubic-bezier(0.4,0,0.2,1);
}
#navbar.scrolled .nav-logo-symbol {
  width: 35px;
  height: 35px;
}
/* imagem do nome — tamanho fixo, não muda ao rolar */
.nav-logo-name {
  height: 37px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── pill menu (centre) ── */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--accent-line);
  border-radius: 100px;
  padding: 6px 8px;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled .nav-pill {
  box-shadow: 0 4px 20px rgba(46,31,20,0.08);
}
.nav-pill-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 9px 18px;
  border-radius: 100px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-pill-link:hover,
.nav-pill-link.active {
  background: var(--brown-dark);
  color: var(--sand);
}

/* ── right side ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}
.nav-tel {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.nav-tel:hover { color: var(--brown-warm); }
.nav-tel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  animation: blink 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
.nav-cta-btn {
  background: var(--brown-dark);
  color: var(--sand) !important;
  padding: 11px 26px;
  border-radius: 100px;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition), transform 0.2s;
}
.nav-cta-btn:hover {
  background: var(--bronze);
  transform: translateY(-1px);
}

/* ── hamburger (mobile) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  justify-self: end;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── mobile drawer ── */
.nav-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: var(--cream);
  border-bottom: 1px solid var(--accent-line);
  padding: 32px 40px 40px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  z-index: 490;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
}
.nav-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.nav-drawer ul a {
  font-size: 20px;
  font-family: 'Noto Serif', serif;
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
}
.nav-drawer-cta {
  display: inline-block;
  background: var(--brown-dark);
  color: var(--sand) !important;
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────────
   SHARED LAYOUT HELPERS
   ────────────────────────────────────────────── */

/* largura máxima do conteúdo em todas as seções */
:root {
  --content-max: 1280px;
  --content-pad: 0px;  /* padding lateral mínimo */
}

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--bronze);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 4.2vw, 59px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--brown-dark);
  letter-spacing: -0.01em;
}
.section-title strong {
  font-weight: 600;
  color: var(--bronze);
}

.section-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
}

.btn-primary {
  font-family: 'Montserrat', sans-serif;  
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brown-dark);
  color: var(--sand);
  padding: 18px 40px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition), transform 0.2s;
}
.btn-primary:hover { background: var(--bronze); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 400;
  transition: color var(--transition);
  border-bottom: 1px solid var(--accent-line);
  padding-bottom: 4px;
}
.btn-ghost::after { content: '→'; transition: transform 0.25s; }
.btn-ghost:hover  { color: var(--brown-warm); }
.btn-ghost:hover::after { transform: translateX(5px); }

/* scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1),
              transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ──────────────────────────────────────────────
   SECTION 1 · HERO
   ────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── slideshow: ocupa TODO o fundo ── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }

/* overlay escuro sobre o slide para legibilidade do texto */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(20,10,5,0.72) 0%,
    rgba(20,10,5,0.45) 55%,
    rgba(20,10,5,0.1)  100%
  );
}

/* ── painel esquerdo de texto — sobre o slide ── */
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 72px 100px max(var(--content-pad), calc((100% - var(--content-max)) / 2 + var(--content-pad)));
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,213,183,0.85);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--bronze);
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 4.8vw, 62px);
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.hero-headline strong {
  font-weight: 700;
  color: var(--bronze-light);
  display: block;
}
.hero-sub {
  font-family: 'Noto Serif', serif;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-badge {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(200,144,90,0.35);
  display: flex;
  gap: 48px;
}
.hero-badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-badge-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,213,183,0.6);
}

/* ──────────────────────────────────────────────
   SECTION 2 · STATS BAR
   ────────────────────────────────────────────── */
#stats {
  background: var(--brown-dark);
  padding: 0 max(var(--content-pad), calc((100% - var(--content-max)) / 2 + var(--content-pad)));
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  margin: 40px 30px 0px;
  border-radius: 20px 20px 0 0;
  padding: 22px 28px 30px;
  border: 1px solid rgba(255,255,255,0.2);
  background: linear-gradient(0deg, #512b0b, transparent);

}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--sand);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stat-label {
  font-family: 'Noto Serif', serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(232,213,183,0.6);
  font-weight: 300;
}
/* bloco ecossistema centralizado abaixo */
.stats-ecosystem {
  padding: 55px 48px 59px 0px;
  text-align: left;
}
.stats-ecosystem-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
}
.stats-ecosystem-body {
  font-family: 'Noto Serif', serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(232,213,183,0.65);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────────
   SECTION 3 · ABOUT
   ────────────────────────────────────────────── */
#about {
  background: linear-gradient(45deg, var(--areia), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: var(--content-max);
  height: 85vh;
  align-items: center;
  margin: 0 auto;
}

/* visual */
.about-visual { position: relative; height: 500px; }

.about-img-main {
  position: absolute;
  right: 0;
  top: -40px;
  width: 70%;
  height: 120%;
  border-radius: 10px;
  overflow: hidden;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 58%;
  height: 47%;
  background: #373533;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.about-img-accent img {
  position: absolute;
  inset: 0;
  margin-right: -2px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.about-accent-quote {
  position: relative;
  z-index: 1;
  font-family: 'Noto Serif', serif;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: #dfdfdf;
  line-height: 1.5;
}

/* content */
.about-content .section-title { margin-bottom: 32px; }
.about-content .section-body { margin-bottom: 20px; max-width: 480px; }
.about-content .btn-ghost { margin-top: 32px; }

/* ──────────────────────────────────────────────
   SECTION 4 · PILLARS
   ────────────────────────────────────────────── */
#pillars {
  padding: 120px max(var(--content-pad), calc((100% - var(--content-max)) / 2 + var(--content-pad))) 100px;
  background: var(--off-white);
}
.pillars-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 50px;
}
.pillars-header .section-title { margin-bottom: 0; }
.pillars-header-right {
  font-size: 16px;
  line-height: 1.8;
  text-wrap: balance;
  color: var(--text-mid);
  font-weight: 300;
  padding: 50px 0 27px;
  border-left: 2px solid var(--bronze);
  padding-left: 32px;
}
.pillars-header-right strong { color: var(--brown-dark); font-weight: 500; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.pillar-card {
  position: relative;
  padding: 0 0 28px 0;
  overflow: hidden;
  cursor: default;
  transition: background var(--transition);
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 0 0 28px 0;
}
.pillar-card:nth-child(1) { background: #373533; }
.pillar-card:nth-child(2) { background: #5c361e; }
.pillar-card:nth-child(3) { background: #373533; }
.pillar-card:nth-child(4) { background: #5c361e; }
.pillar-card:nth-child(5) { background: #373533; }
.pillar-card:hover { background: var(--bronze) !important; }

.pillar-card:hover .pillar-bg-num { color: rgba(255,255,255,0.12); }

.pillar-line {
  width: 28px;
  height: 1px;
  background: var(--bronze);
  transition: width var(--transition);
  margin: 0 24px 10px;
}
.pillar-card:hover .pillar-line { width: 48px; background: white; }

.pillar-name {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  padding: 0 24px;
}

.pillar-img {
  position: relative;
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 1;
  margin-bottom: 20px;
}

/* ──────────────────────────────────────────────
   SECTION 5 · AUDIENCE
   ────────────────────────────────────────────── */
#audience {
  background: var(--sand-light);
}
.audience-header {
  padding: 70px max(var(--content-pad), calc((100% - var(--content-max)) / 2 + var(--content-pad))) 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  font-weight: 500;
  align-items: end;
}
.audience-header .section-title { margin-bottom: 20px; }
.audience-header .section-body  { max-width: 420px; }
.audience-quote {
  font-family: 'Noto Serif', serif;
  font-size: 23px;
  font-weight: 300;
  font-style: italic;
  text-wrap: balance;
  color: var(--text-mid);
  line-height: 1.5;
  padding-bottom: 20px;
}
.audience-quote strong{
  font-weight: 600;
}

/* ── audience-cartelas ── */
.audience-cartelas {
  position: relative;
  height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}


/* cada linha de tags ocupa sua faixa horizontal */
.cartelas-row {
  overflow: hidden;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* o track é a fita que se move — tem conteúdo duplicado para loop sem salto */
.cartelas-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;       /* deixa o conteúdo definir a largura */
  will-change: transform;
}

/* direção esquerda: começa em 0, vai até -50% (onde começa a cópia) */
.cartelas-track--left {
  animation: scrollLeft var(--dur, 30s) linear infinite;
}
/* direção direita: começa em -50%, vai até 0 */
.cartelas-track--right {
  animation: scrollRight var(--dur, 30s) linear infinite;
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* tag sem fundo */
.tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--bronze);
  white-space: nowrap;
  vertical-align: middle;
  flex-shrink: 0;
}
.tag--pill {
  color: var(--brown-warm);
  border: 1px solid rgba(200,144,90,0.7);
  border-radius: 100px;
  padding: 5px 18px;
  margin: 0 20px;
}

/* overlay cartelas */
.cartelas-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      #f2e8d900 0%,
      #f2e8d973 30%,
      #f2e8d9f2 100%
    );
  pointer-events: none;
}

/* foto na frente */
.cartelas-foto {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  margin-top: -67px;
}
.cartelas-foto img {
  height: 100%;
  width: auto;
  /*max-width: 380px;*/
  object-fit: cover;
  object-position: top center;
  mix-blend-mode: luminosity;
  filter: contrast(1.05) brightness(1.05);
}
.audience-cards {
  display: grid;
  padding: 0px max(var(--content-pad), calc((100% - var(--content-max)) / 2 + var(--content-pad))) 140px;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.audience-card:last-child {
  background: var(--sand);
  display: flow;
  align-content: center;
}
.audience-card:last-child .cta-btn {
  padding: 18px 33px;
}
.audience-card {
  position: relative;
  background: white;
  padding: 44px 36px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(46,31,20,0.1);
  z-index: 2;
}
.audience-card-bar {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--bronze), var(--brown-warm));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.audience-card:hover .audience-card-bar { transform: scaleX(1); }
.audience-card-icon {
  font-size: 28px;
  margin-bottom: 11px;
  display: block;
}
.audience-card h3 {
  font-family: 'Noto Serif', serif;
  font-size: 23px;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.audience-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
}
.diviser {
  margin: -10px 0 -20px;
}
.diviser img{
  width: 100%;
}
/* ──────────────────────────────────────────────
   SECTION 7 · MIND-BODY
   ────────────────────────────────────────────── */
/* ──────────────────────────────────────────────
   SECTION 7 · DEPOIMENTOS
   ────────────────────────────────────────────── */
#depoimentos {
  background: #803f0b;
  padding: 0px max(var(--content-pad), calc((100% - var(--content-max)) / 2 + var(--content-pad))) 150px;
  position: relative;
}

.depo-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.depo-header .section-label { color: var(--bronze-light); }
.depo-header .section-title { color: var(--sand); }
.depo-header-sub { color: var(--sand); font-size: 16px; max-width: 420px; }

/* ── grade de vídeos ── */
/* Layout:
   [ destaque (2 linhas) ] [ 2 ] [ 3 ]
   [ destaque (2 linhas) ] [ 4 ] [ 5 ]
                           [ 6      ]    ← linha extra caso queira
   Proporção dos vídeos: 4:5 (1080x1350)
*/
.depo-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

/* destaque ocupa 2 linhas */
.depo-item--featured {
  grid-row: 1 / 3;
}

/* item genérico */
.depo-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

/* wrapper do vídeo — mantém proporção 4:5 */
.depo-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #1a0f09;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.depo-item--featured .depo-video-wrap {
  aspect-ratio: 4 / 5;
  height: 100%;
  width: 100%;
}

/* o vídeo cobre todo o wrap */
.depo-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.depo-video-wrap:hover video { transform: scale(1.04); }

/* overlay gradiente no rodapé para legibilidade do label */
.depo-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(to top, rgba(30,15,8,0.88) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* botão play centralizado */
.depo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  background: rgba(253,249,245,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,144,90,0.5);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.depo-item--featured .depo-play {
  width: 72px;
  height: 72px;
}
.depo-play svg { width: 28px; height: 28px; }
.depo-item--featured .depo-play svg { width: 36px; height: 36px; }
.depo-video-wrap:hover .depo-play {
  background: rgba(200,144,90,0.25);
  border-color: var(--bronze);
  transform: translate(-50%, -50%) scale(1.1);
}

/* label no rodapé do card */
.depo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.depo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: 0.04em;
}
.depo-tag {
  font-size: 17px;
  color: var(--bronze);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Modal lightbox ── */
.depo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,5,2,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.depo-modal.open {
  opacity: 1;
  pointer-events: all;
}
.depo-modal-inner {
  width: min(420px, 90vw);
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.depo-modal-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.depo-modal-close {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: 1px solid rgba(232,213,183,0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: var(--sand);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.depo-modal-close:hover {
  background: rgba(200,144,90,0.2);
  border-color: var(--bronze);
}

/* ──────────────────────────────────────────────
   SECTION 8 · ACCESSIBLE
   ────────────────────────────────────────────── */
#accessible {
  padding: 140px max(var(--content-pad), calc((100% - var(--content-max)) / 2 + var(--content-pad)));
  background: var(--off-white);
}
.accessible-grid {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 70px;
  align-items: center;
}
.accessible-content .section-title { margin-bottom: 28px; }
.accessible-content .section-body  { margin-bottom: 16px;}
.accessible-content .btn-primary   { margin-top: 40px; }

.accessible-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accessible-feature {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--accent-line);
  transition: padding-left var(--transition);
  transition: transform 0.1s ease; 
}
.accessible-feature:first-child { border-top: 1px solid var(--accent-line); }
.accessible-feature:hover {   transform: scale(1.04); }
.accessible-feature-icon {
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 50%;
  background: #d5cfc9;
  border: 1px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background var(--transition);
}
.accessible-feature:hover .accessible-feature-icon {
  background: #9f9c99;
}
.accessible-feature-text h4 {
  font-family: 'Noto Serif', serif;
  font-size: 22px;
  font-weight: 400;
  color: #3e3c3a;
  margin-bottom: 8px;
}
.accessible-feature-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}

/* ──────────────────────────────────────────────
   SECTION 9 · CTA
   ────────────────────────────────────────────── */
#cta {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px max(var(--content-pad), calc((100% - var(--content-max)) / 2 + var(--content-pad)));
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(46,31,20,0.5) 10%,
    rgba(107,62,38,0.9) 60%,
    rgba(154,95,56,0.5) 100%
  );
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.cta-content .section-label { color: #c3bab1; }
.cta-content  .section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--bronze);
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.cta-title strong {
  font-weight:700;
  color: #c3bab1;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 56px;
  text-wrap: balance  ;
  font-weight: 300;
  line-height: 1.75;
}
.cta-btn {
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--brown-dark);
  padding: 22px 56px;
  border-radius: 20px;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), transform 0.2s;
  margin-bottom: 28px;
}
.cta-btn:hover {
  background: var(--bronze);
  color: white;
  transform: translateY(-2px);
}
.cta-note {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

/* ──────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────── */
#footer {
  background: #1a0f09;
  padding: 80px max(var(--content-pad), calc((100% - var(--content-max)) / 2 + var(--content-pad))) 48px;
  color: var(--sand);
}
.logo-rodape img {
  height: 70px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}
.footer-brand-text {
  font-size: 16px;
  color: rgba(232,213,183,0.5);
  line-height: 1.75;
  font-weight: 300;
  text-wrap: balance;
  /* max-width: 300px;*/
  margin-top: 20px;
}
.footer-brand-text strong {
  font-weight: 500;
  color: var(--bronze-light);
}
.footer-col svg {
  height: 20px;
  margin: 0 2px -5px 0;
}
.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(232,213,183,0.55);
  font-weight: 300;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--sand); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(232,213,183,0.3);
  letter-spacing: 0.05em;
}
.footer-bottom-tagline {
  font-family: 'Noto Serif', serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(200,144,90,0.5);
}
.footer-middle p {
  margin-bottom: 50px;
  font-size: 10px;
  line-height: 14px;
  font-weight: 300;
  color: rgba(232,213,183,0.3);
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root {
    --content-pad: 40px;
  }
  .container, .nav-inner { padding: 0 40px; }
  .about-grid, .pillars-header, .audience-header,
  .process-header, .depo-header, .accessible-grid { grid-template-columns: 1fr; }

  .depo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .depo-item--featured { grid-row: auto; }

  .nav-pill, .nav-tel { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }

  .hero-left { padding: 120px 40px 80px 40px; max-width: 100%; }

  .stats-inner { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .audience-cards { grid-template-columns: 1fr 1fr; }
  .audience-img-row { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-visual { height: 360px; }
}

@media (max-width: 640px) {
  :root { --content-pad: 24px; }
  .pillars-grid  { grid-template-columns: 1fr 1fr; }
  .audience-cards { grid-template-columns: 1fr; }
  .stats-inner   { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; }
  .hero-badge    { flex-direction: column; gap: 24px; }
}
