/* ═══════════════════════════════════════════════════
   CONSULADO DA PORTELA SP — main.css
   ═══════════════════════════════════════════════════ */

/* RESET & TOKENS */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy:        #071832;
  --blue:        #0D3B8E;
  --blue-mid:    #1255C1;
  --blue-bright: #2176E8;
  --gold:        #B8922A;
  --gold-light:  #D4AE5A;
  --gold-pale:   #F0E0AA;
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --gray-100:    #F0EFEB;
  --gray-200:    #E2E0DA;
  --gray-400:    #9B9890;
  --gray-600:    #5C5A55;
  --gray-800:    #2D2C29;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Plus Jakarta Sans', system-ui, sans-serif;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--gray-800); background: var(--white); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* UTILITÁRIOS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 56px; }

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 72px;
  background: rgba(7,24,50,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,146,42,0.14);
  transition: box-shadow 0.3s;
  overflow: visible;
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.hg {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 100%; padding: 0 28px;
  position: relative;
}

/* ── LOGO — círculo que sobe do header ─────────── */
.hlogo {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Padding horizontal para separar dos menus */
  padding: 0 20px;
  /* Altura total incluindo o círculo que sobe */
  height: 100%;
  position: relative;
  z-index: 10;
  border-left:  1px solid rgba(184,146,42,0.12);
  border-right: 1px solid rgba(184,146,42,0.12);
  text-decoration: none;
}

/* Círculo do logo — posicionado subindo acima da linha do header */
.hlogo-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -32%);
  /* +10%: 88px → 97px */
  width: 97px;
  height: 97px;
  border-radius: 50%;
  background: rgba(7,24,50,0.98);
  border: 1.5px solid rgba(184,146,42,0.4);
  box-shadow:
    0 -6px 20px rgba(0,0,0,0.3),
    0  4px 14px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;      /* logo preenche até a borda */
  transition: transform .25s, box-shadow .25s;
}

.hlogo:hover .hlogo-circle {
  transform: translate(-50%, -36%);
  box-shadow:
    0 -10px 28px rgba(0,0,0,0.35),
    0  6px 18px rgba(0,0,0,0.25),
    0 0 0 1.5px rgba(184,146,42,0.6);
}

/* Logo preenche o círculo por completo */
.hlogo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* preenche todo o círculo */
  object-position: center;
  border-radius: 50%;
  display: block;
}

/* Espaço reservado */
.hlogo-spacer {
  width: 106px;
  height: 72px;
  display: block;
}
.hnl { display: flex; align-items: center; justify-content: flex-end; }
.hnr { display: flex; align-items: center; gap: 6px; justify-content: flex-start; }

/* Nav items */
.ni { position: relative; display: flex; align-items: center; }
.nl {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.58);
  height: 72px; padding: 0 12px;
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  transition: color .2s; white-space: nowrap; position: relative;
  text-decoration: none;
}
.nl:hover, .ni.is-open > .nl { color: #fff; }
.nl::after {
  content: ''; position: absolute;
  bottom: 0; left: 12px; right: 12px; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transition: transform .25s; transform-origin: left;
}
.nl:hover::after, .ni.is-open > .nl::after { transform: scaleX(1); }
.ch { font-size: 8px; opacity: .45; transition: transform .25s; display: inline-block; }
.ni.is-open > .nl > .ch { transform: rotate(180deg); opacity: .9; }

/* Dropdown */
.dd {
  position: absolute; top: 72px; right: 0;
  min-width: 210px;
  background: rgba(7,24,50,0.98);
  border: 1px solid rgba(184,146,42,0.14);
  border-top: 2px solid var(--gold);
  padding: 6px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  z-index: 1000;
}
.hnr .ni .dd { right: auto; left: 0; }
.ni.is-open > .dd { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.di {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.55);
  transition: color .18s, background .18s, padding .18s, border-color .18s;
  text-decoration: none; white-space: nowrap;
  border-left: 2px solid transparent;
}
.di:hover { color: #fff; background: rgba(255,255,255,.05); border-left-color: var(--gold); padding-left: 22px; }
.di .d { width: 4px; height: 4px; border-radius: 50%; background: rgba(184,146,42,.4); flex-shrink: 0; transition: background .18s; }
.di:hover .d { background: var(--gold); }

/* Sociais header */
.hsoc-wrap { display: flex; gap: 5px; align-items: center; }
.hsoc {
  width: 28px; height: 28px; border-radius: 3px;
  border: 1px solid rgba(184,146,42,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 10px; font-weight: 700;
  font-family: var(--sans); transition: all .2s;
}
.hsoc:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.hsep { width: 1px; height: 24px; background: rgba(184,146,42,.15); flex-shrink: 0; }
.hcta {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: #fff;
  border: none; padding: 9px 16px; border-radius: 3px;
  cursor: pointer; transition: all .22s; white-space: nowrap;
  display: inline-block;
}
.hcta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─── BANNER ROTATIVO ─────────────────────────────── */
.banner-rotativo {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  padding-top: 72px;     /* altura do header fixo */
  background: var(--navy);
}

/* Fotos de fundo dos slides */
.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-slide.ativo {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  position: relative;
}
/* Overlay escuro sobre a foto para o texto ficar legível */
.banner-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,24,50,0.88) 0%,
    rgba(7,24,50,0.72) 45%,
    rgba(7,24,50,0.35) 100%
  );
  z-index: 1;
}

/* Textura de penas */
.banner-feathers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.feather { position: absolute; background: linear-gradient(to bottom, rgba(184,146,42,.18), transparent); border-radius: 50%; transform-origin: center top; }
.f1  { width:3px; height:220px; top:8%;  left:18%; transform:rotate(-8deg) }
.f2  { width:2px; height:180px; top:5%;  left:24%; transform:rotate(3deg) }
.f3  { width:2px; height:260px; top:3%;  left:31%; transform:rotate(-5deg) }
.f4  { width:3px; height:200px; top:10%; left:38%; transform:rotate(7deg) }
.f5  { width:2px; height:150px; top:6%;  left:45%; transform:rotate(-3deg) }
.f6  { width:3px; height:240px; top:4%;  left:52%; transform:rotate(5deg) }
.f7  { width:2px; height:190px; top:8%;  left:59%; transform:rotate(-6deg) }
.f8  { width:3px; height:170px; top:5%;  left:66%; transform:rotate(4deg) }
.f9  { width:2px; height:210px; top:7%;  left:73%; transform:rotate(-4deg) }
.f10 { width:3px; height:155px; top:9%;  left:80%; transform:rotate(6deg) }

/* Marca d'água */
.banner-watermark {
  position: absolute;
  right: -5%; top: 50%; transform: translateY(-55%);
  width: 55%; opacity: .06; pointer-events: none; z-index: 1;
}
.banner-watermark img { width: 100%; filter: brightness(10) saturate(0); }

/* Conteúdo do slide */
.banner-inner {
  position: relative; z-index: 3;
  padding: 40px 80px;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;        /* centraliza verticalmente */
}

/* Limitar largura do texto para não disputar com a marca d'água */
.banner-content {
  max-width: 580px;
}

/* ── CONTROLES ─────────────────────────────────────── */
/* Setas */
.banner-prev,
.banner-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all .25s;
  display: flex; align-items: center; justify-content: center;
}
.banner-prev { left: 28px; }
.banner-next { right: 28px; }
.banner-prev:hover, .banner-next:hover {
  background: rgba(184,146,42,.35);
  border-color: var(--gold);
}

/* Dots */
.banner-dots-wrap {
  position: absolute;
  bottom: 36px; right: 80px; z-index: 10;
  display: flex; gap: 7px;
}
.hdot {
  width: 6px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.22);
  border: none; cursor: pointer;
  transition: all .3s; padding: 0;
}
.hdot.on { width: 24px; background: var(--gold); }

/* Barra de progresso */
.banner-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.08);
  z-index: 10;
}
.banner-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width linear;
}

/* ─── TEXTOS DO BANNER ────────────────────────────── */
.hero-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.kicker-bar  { width: 36px; height: 1.5px; background: var(--gold); flex-shrink: 0; }
.kicker-txt  { font-size: 11px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-light); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);   /* ligeiramente menor para caber sem corte */
  font-weight: 900; line-height: .9; color: #fff; max-width: 580px;
}
.hero-h1 .gold   { color: var(--gold-light); }
.hero-h1 .italic { font-style: italic; font-weight: 400; font-size: .62em; color: rgba(255,255,255,.45); display: block; margin-top: 10px; }
.hero-desc {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.6); max-width: 520px; margin: 28px 0 36px;
}
.hero-desc strong { color: #fff; font-weight: 500; }
.hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .05em; padding: 14px 28px; border-radius: 2px;
  transition: all .25s var(--ease); cursor: pointer; border: none;
  text-decoration: none;
}
.btn-gold  { background: var(--gold); color: #fff; }
.btn-gold:hover  { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184,146,42,.3); }
.btn-blue  { background: var(--blue); color: #fff; }
.btn-blue:hover  { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(13,59,142,.35); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.7); border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.7); }

/* ─── STATS BAR ───────────────────────────────────── */
.stats-bar { background: var(--blue); display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 32px 36px; border-right: 1px solid rgba(255,255,255,.08); transition: background .25s; }
.stat-item:last-child { border: none; }
.stat-item:hover { background: rgba(255,255,255,.05); }
.stat-num  { font-family: var(--serif); font-size: 42px; font-weight: 900; color: var(--gold-pale); line-height: 1; margin-bottom: 6px; }
.stat-lbl  { font-size: 12px; color: rgba(255,255,255,.48); line-height: 1.45; }

/* ─── SOBRE ───────────────────────────────────────── */
.sobre { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.sobre-visual { position: relative; overflow: hidden; min-height: 0; }
.sobre-foto { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; min-height: 400px; }
.sobre-foto-credito {
  position: absolute; bottom: 10px; right: 12px; z-index: 2;
  font-size: 10px; color: rgba(255,255,255,.7);
  font-family: var(--sans); letter-spacing: .04em;
  background: rgba(0,0,0,.55); padding: 3px 8px; border-radius: 2px;
}
.sobre-content { padding: 80px 64px; background: var(--off-white); display: flex; flex-direction: column; justify-content: center; }
.eyebrow { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; display: block; }
.sobre-content .eyebrow { color: var(--blue-mid); margin-bottom: 14px; }
.sobre-content h2 { font-family: var(--serif); font-size: 40px; font-weight: 700; color: var(--navy); line-height: 1.12; margin-bottom: 22px; }
.sobre-content h2 em { font-style: italic; color: var(--blue); }
.sobre-content p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.pilares { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 32px; }
.pilar { padding: 16px 18px; border-left: 3px solid var(--gold); background: #fff; }
.pilar-n    { font-size: 10px; letter-spacing: .12em; color: var(--gold); margin-bottom: 4px; }
.pilar-nome { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.pilar-desc { font-size: 12px; color: var(--gray-400); line-height: 1.5; }

/* ─── PROJETOS ────────────────────────────────────── */
.projetos { background: var(--off-white); }
.projetos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* Sidebar esquerda: título + texto + lista */
.proj-sidebar {
  padding: 80px 64px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proj-sidebar h2 { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--navy); line-height: 1.05; margin: 12px 0 20px; }
.proj-sidebar h2 em { font-style: italic; color: var(--blue); }
.proj-sidebar p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 32px; }

/* Lista de projetos */
.proj-lista { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.proj-lista-item a {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 18px 10px 10px;
  border-left: 3px solid transparent;
  background: transparent;
  text-decoration: none;
  transition: all .22s;
  border-radius: 0 2px 2px 0;
}
.proj-lista-item a:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
}
.proj-lista-thumb {
  width: 52px; height: 42px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.proj-lista-thumb--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #e8f0fb;
}
.proj-lista-nome { font-size: 14px; font-weight: 600; color: var(--navy); flex: 1; }
.proj-lista-arrow { font-size: 13px; color: var(--gold); opacity: 0; transition: opacity .2s; }
.proj-lista-item a:hover .proj-lista-arrow { opacity: 1; }

/* Grade direita: 2x2 com fotos */
.proj-grade {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  background: var(--off-white);
}
.proj-foto-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 280px;
}
.proj-foto-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}
.proj-foto-card:hover img { transform: scale(1.06); }
.proj-foto-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,24,50,.88) 0%, rgba(7,24,50,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 24px;
  transition: background .3s;
}
.proj-foto-card:hover .proj-foto-overlay { background: linear-gradient(to top, rgba(7,24,50,.95) 0%, rgba(7,24,50,.35) 60%, transparent 100%); }
.proj-foto-tag { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 5px; }
.proj-foto-nome { font-family: var(--serif); font-size: 20px; font-weight: 700; color: #fff; line-height: 1.2; }


/* ─── DOAÇÃO CTA ──────────────────────────────────── */
.doe-cta { padding: 88px 0; background: var(--navy); position: relative; overflow: hidden; }
.doe-cta::before { content: ''; position: absolute; top: -250px; right: -250px; width: 750px; height: 750px; border-radius: 50%; background: radial-gradient(circle, rgba(18,85,193,.22), transparent 68%); }
.doe-inner { display: flex; align-items: center; justify-content: space-between; gap: 64px; position: relative; z-index: 2; }
.doe-txt .eyebrow { color: var(--gold-light); margin-bottom: 14px; }
.doe-txt h2 { font-family: var(--serif); font-size: 44px; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 18px; }
.doe-txt h2 em { font-style: italic; color: var(--gold-light); }
.doe-txt p { font-size: 15px; color: rgba(255,255,255,.52); line-height: 1.75; max-width: 500px; }
.doe-aside { flex-shrink: 0; }
.doe-pix-wrap { display: flex; align-items: flex-start; gap: 20px; }

/* QR Code com moldura */
.doe-qr {
  flex-shrink: 0;
  background: #fff;
  border: 2px solid rgba(184,146,42,.4);
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.3), 0 0 0 1px rgba(184,146,42,.15);
}
.doe-qr img { width: 130px; height: 130px; display: block; }

/* Info + botões */
.doe-pix-info { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.doe-btns { display: flex; gap: 10px; }
.doe-btns .btn { flex: 1; justify-content: center; }
.pix-box { background: rgba(255,255,255,.05); border: 1px solid rgba(184,146,42,.2); border-radius: 3px; padding: 16px 20px; }
.pix-row { margin-bottom: 10px; }
.pix-row:last-child { margin-bottom: 0; }
.pix-lbl { display: block; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 3px; }
.pix-val { font-size: 12px; color: rgba(255,255,255,.75); font-weight: 500; }

/* ─── IMPACTO ─────────────────────────────────────── */
.impacto { padding: 96px 0; background: var(--off-white); position: relative; overflow: hidden; }
.impacto::before { content: 'IMPACTO'; position: absolute; left: -20px; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 220px; font-weight: 900; color: rgba(7,24,50,.025); pointer-events: none; white-space: nowrap; letter-spacing: -.02em; }
.impacto-head { margin-bottom: 56px; position: relative; z-index: 2; }
.impacto-head .eyebrow { color: var(--blue-mid); margin-bottom: 14px; }
.impacto-head h2 { font-family: var(--serif); font-size: 48px; font-weight: 700; color: var(--navy); line-height: 1.05; }
.impacto-head h2 em { font-style: italic; color: var(--blue); }
.num-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--gray-200); position: relative; z-index: 2; }
.num-cell { padding: 48px 40px; border-right: 1px solid var(--gray-200); position: relative; transition: background .3s; }
.num-cell:nth-child(3n)  { border-right: none; }
.num-cell:nth-child(n+4) { border-top: 1px solid var(--gray-200); }
.num-cell:hover { background: #fff; }
.num-cell::before { content: ''; position: absolute; top: 0; left: 40px; width: 28px; height: 2px; background: var(--gold); }
.num-val { font-family: var(--serif); font-size: 66px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 8px; display: block; }
.num-lbl { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ─── EDITORIAL: BLOG + AGENDA ────────────────────── */
.editorial { display: grid; grid-template-columns: 1.15fr .85fr; background: #fff; }
.blog-col  { padding: 88px 64px; border-right: 1px solid var(--gray-200); }
.col-eyebrow { color: var(--blue-mid); margin-bottom: 12px; }
.col-titulo  { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 36px; }
.post { display: grid; grid-template-columns: 96px 1fr; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--gray-200); cursor: pointer; }
.post:first-child { padding-top: 0; }
.post:last-child  { border: none; padding-bottom: 0; }
.post:hover .post-tit { color: var(--blue); }
.post-thumb { width: 96px; height: 96px; border-radius: 2px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pt1 { background: linear-gradient(135deg, #0D3B8E, #071832); }
.pt2 { background: linear-gradient(135deg, #1255C1, #0D3B8E); }
.pt3 { background: linear-gradient(135deg, #2176E8, #1255C1); }
.post-cat  { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 5px; }
.post-tit  { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 6px; transition: color .22s; }
.post-resumo { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.post-date { font-size: 11px; color: var(--gray-400); margin-top: 7px; }
.agenda-col { padding: 88px 48px; background: var(--navy); }
.agenda-col .col-eyebrow { color: var(--gold-light); }
.agenda-col .col-titulo  { color: #fff; }
.ev { display: flex; gap: 16px; padding: 16px; margin-bottom: 7px; border-radius: 2px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); cursor: pointer; transition: all .22s; }
.ev:hover { background: rgba(255,255,255,.08); border-color: rgba(184,146,42,.2); transform: translateX(4px); }
.ev-date  { min-width: 52px; height: 52px; border-radius: 2px; background: rgba(184,146,42,.1); border: 1px solid rgba(184,146,42,.22); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.ev-day   { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.ev-month { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 2px; }
.ev-nome  { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 3px; line-height: 1.3; }
.ev-local { font-size: 11px; color: rgba(255,255,255,.38); }

/* ─── DEPOIMENTOS ─────────────────────────────────── */
.dep { padding: 96px 0; background: var(--off-white); }
.dep-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.dep-head h2 { font-family: var(--serif); font-size: 48px; font-weight: 700; color: var(--navy); }
.dep-head h2 em { font-style: italic; color: var(--blue); }

/* Botões de navegação */
.dep-nav { display: flex; gap: 8px; }
.dep-prev, .dep-next {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: #fff; color: var(--navy);
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .22s;
}
.dep-prev:hover, .dep-next:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Carrossel */
.dep-carrossel { overflow: hidden; }
.dep-track {
  display: flex;
  gap: 20px;
  transition: transform .45s var(--ease);
}
.dep-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 36px 28px;
  transition: all .3s var(--ease);
  cursor: pointer;
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}
.dep-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 20px 48px rgba(7,24,50,.1); }
.dep-mark   { font-family: var(--serif); font-size: 54px; font-weight: 900; color: var(--gold); opacity: .18; line-height: .8; margin-bottom: 14px; }
.dep-txt    { font-family: var(--serif); font-size: 16px; font-style: italic; color: var(--gray-600); line-height: 1.7; margin-bottom: 26px; }
.dep-author { display: flex; align-items: center; gap: 12px; }
.dep-av     { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--blue), var(--blue-mid)); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 15px; font-weight: 700; color: #fff; }
.dep-av--foto { width: 56px; height: 56px; padding: 0; overflow: hidden; background: none; }
.dep-av--foto img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }
.dep-name   { font-size: 14px; font-weight: 600; color: var(--navy); }
.dep-role   { font-size: 11px; color: var(--gray-400); margin-top: 2px; }

/* Dots */
.dep-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.dep-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: var(--gray-200); border: none; cursor: pointer;
  transition: all .3s;
}
.dep-dot.on { width: 24px; background: var(--navy); }

/* Barra de progresso */
.dep-progress { height: 2px; background: var(--gray-200); margin-top: 16px; border-radius: 2px; overflow: hidden; }
.dep-progress-bar { height: 100%; background: var(--navy); width: 0%; transition: width linear; }

/* ─── PARCEIROS ───────────────────────────────────── */
.parceiros { padding: 72px 0; background: #fff; border-top: 1px solid var(--gray-200); }
.par-head  { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.par-head h3 { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--navy); }
.par-head p  { font-size: 13px; color: var(--gray-400); max-width: 280px; text-align: right; line-height: 1.6; }
.logos-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--gray-200); }
.logo-cell   { background: #fff; height: 88px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; color: var(--gray-400); letter-spacing: .06em; transition: all .22s; cursor: pointer; }
.logo-cell:hover { background: var(--off-white); color: var(--blue); }

/* ─── RODAPÉ ──────────────────────────────────────── */
.footer { background: var(--navy); padding: 80px 0 32px; }
.footer-top { display: grid; grid-template-columns: 220px repeat(4,1fr); gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 28px; align-items: start; }
.footer-top > div { display: flex; flex-direction: column; height: 100%; }
.footer-links-wrap { flex: 1; }
.footer-brand img { height: 72px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-slogan { font-family: var(--serif); font-style: italic; font-size: 14px; color: rgba(255,255,255,.32); line-height: 1.65; padding-left: 16px; border-left: 2px solid rgba(184,146,42,.18); margin-top: 14px; }
.footer-socs { display: flex; gap: 7px; margin-top: 16px; }
.fsoc { width: 30px; height: 30px; border-radius: 3px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.35); transition: all .22s; }
.fsoc:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.fl { display: block; font-size: 13px; color: rgba(255,255,255,.36); margin-bottom: 9px; transition: color .2s; line-height: 1.4; text-decoration: none; }
.fl:hover { color: #fff; }
.fc { font-size: 13px; color: rgba(255,255,255,.36); margin-bottom: 12px; line-height: 1.55; display: flex; align-items: flex-start; gap: 8px; }
.fc--link { text-decoration: none; transition: color .2s; }
.fc--link:hover { color: rgba(255,255,255,.75); }
.footer-addr-sub { font-size: 10px; color: rgba(255,255,255,.22); letter-spacing: .06em; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.16); letter-spacing: .04em; }

/* ─── ANIMAÇÕES ───────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* Indicador de countdown do banner */
.banner-countdown {
  position: absolute;
  bottom: 56px; right: 80px; z-index: 10;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.28); font-family: var(--sans);
}

/* ── LINKS RÁPIDOS DO BANNER ──────────────────────── */
.banner-quicklinks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.bql-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  font-family: var(--sans);
  font-weight: 500;
}
.bql-pills {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.bql-pill {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 40px;
  padding: 7px 18px;
  text-decoration: none;
  transition: all .22s;
  white-space: nowrap;
}
.bql-pill:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-1px);
}
