/* =============================================
   CONSTANTINO ADVOCACIA — LANDING PAGE
   Paleta: #16313A | #CE9569 | #FFFFFF
   ============================================= */

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

:root {
  --bg:      #16313A;
  --bg-mid:  #1c3d48;
  --bg-lite: #1f4455;
  --gold:    #CE9569;
  --gold-dk: #b87d52;
  --white:   #FFFFFF;
  --text-muted: rgba(255,255,255,0.65);
  --border:  rgba(206,149,105,0.2);
  --radius:  12px;
  --shadow:  0 4px 32px rgba(0,0,0,0.35);
  --transition: 0.25s ease;
  --max-w:   1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text-muted); }

/* ---- UTILS ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .25rem .85rem;
  margin-bottom: 1rem;
}
.section-title { color: var(--white); margin-bottom: .75rem; }
.section-desc  { color: var(--text-muted); max-width: 54ch; margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  padding: .7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(206,149,105,0.35); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: rgba(206,149,105,0.1); transform: translateY(-2px); }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: border-color .35s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
}
/* backdrop no pseudo-elemento para não criar containing block para position:fixed filhos */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 49, 58, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
  opacity: 0;
  transition: opacity .35s ease;
}
.site-header.scrolled::before {
  opacity: 1;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 64px; width: auto; display: block; }
.main-nav  { display: flex; gap: 1.75rem; margin-left: auto; }
.main-nav a { color: var(--text-muted); text-decoration: none; font-size: .875rem; font-weight: 500; transition: color var(--transition); }
.main-nav a:hover { color: var(--gold); }
.header-cta { margin-left: 1rem; font-size: .82rem; padding: .55rem 1.25rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .25rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  padding-top: 5rem;
}
.hero-bg-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; padding: 4rem 1.5rem 8rem; }
.hero-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .3rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== NUMBERS BAR ===== */
.numbers-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.number-item { display: flex; flex-direction: column; gap: .25rem; }
.number-item .number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.number-item .label  { font-size: .8rem; color: var(--text-muted); letter-spacing: .04em; }

/* ===== AREAS ===== */
.areas { padding: 6rem 0; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.area-card {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(206,149,105,0.5); }
.area-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-mid) 0%, rgba(206,149,105,0.07) 100%);
}
.area-icon {
  width: 56px; height: 56px;
  background: rgba(206,149,105,0.12);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.area-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 99px;
  padding: .15rem .6rem;
}
.area-card h3 { color: var(--white); font-size: 1.3rem; }
.area-card p  { color: var(--text-muted); font-size: .92rem; flex: 1; }
.area-list {
  list-style: none;
  display: flex; flex-direction: column; gap: .4rem;
}
.area-list li {
  font-size: .85rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.area-list li::before {
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== SOBRE ===== */
.sobre {
  padding: 6rem 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sobre-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}
.sobre-image-wrap { position: relative; }
.sobre-foto {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.sobre-content { display: flex; flex-direction: column; gap: 1.5rem; }
.sobre-bio {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}
.sobre-details { display: flex; flex-direction: column; gap: .75rem; }
.sobre-detail-item { display: flex; align-items: flex-start; gap: .75rem; }
.sobre-detail-item svg { width: 20px; height: 20px; min-width: 20px; min-height: 20px; flex-shrink: 0; }
.sobre-detail-item span { color: var(--text-muted); font-size: .9rem; }
.tribunais { display: flex; flex-direction: column; gap: .5rem; }
.tribunais-label { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.tribunais-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tribunais-tags span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .2rem .6rem;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais { padding: 6rem 0; }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.diferencial-card {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform var(--transition), border-color var(--transition);
}
.diferencial-card:hover { transform: translateY(-4px); border-color: rgba(206,149,105,0.5); }
.diferencial-icon {
  width: 52px; height: 52px;
  background: rgba(206,149,105,0.12);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--gold);
}
.diferencial-card h3 { color: var(--white); font-size: 1.05rem; }
.diferencial-card p  { font-size: .875rem; }

/* ===== ASSOCIAÇÕES ===== */
.associacoes {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}
.associacoes-label { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.75rem; }
.associacoes-logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.assoc-item { display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.assoc-item span { font-size: .78rem; font-weight: 600; letter-spacing: .05em; color: var(--text-muted); text-align: center; line-height: 1.3; }
.assoc-divider { width: 1px; height: 60px; background: var(--border); }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(206,149,105,0.1) 0%, transparent 100%);
  border-top: 1px solid var(--border);
}
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner-text h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .5rem; }
.cta-banner-text p  { font-size: .95rem; }

/* ===== CONTATO ===== */
.contato { padding: 6rem 0; }
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contato-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contato-info .section-title { text-align: left; }
.contato-info p { font-size: .95rem; }
.contato-options { display: flex; flex-direction: column; gap: .85rem; margin-top: .5rem; }
.contato-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}
.contato-option:hover { border-color: var(--gold); transform: translateX(4px); }
.contato-option div { display: flex; flex-direction: column; gap: .1rem; }
.contato-option strong { color: var(--white); font-size: .9rem; }
.contato-option span   { color: var(--text-muted); font-size: .8rem; }

/* FORM */
.contato-form {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text-muted); letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23CE9569' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--bg-mid); color: var(--white); }
.form-msg {
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .875rem;
  line-height: 1.5;
}
.form-msg--success {
  background: rgba(39,174,96,0.1);
  border: 1px solid #2ecc71;
  color: #2ecc71;
}
.form-msg--error {
  background: rgba(192,57,43,0.12);
  border: 1px solid #c0392b;
  color: #e74c3c;
}

.form-disclaimer { font-size: .75rem; color: var(--text-muted); text-align: center; }

/* ===== SITE FOOTER ===== */
.site-footer {
  background: #0f2029;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: .85rem; }
.footer-logo-img { height: 88px; width: auto; max-width: 560px; object-fit: contain; object-position: left center; display: block; }
.footer-brand p { font-size: .8rem; color: var(--text-muted); }
.footer-registros { display: flex; flex-direction: column; gap: .2rem; }
.footer-registros p { font-size: .78rem; color: var(--text-muted); }
.footer-comissoes { display: flex; flex-direction: column; gap: .35rem; }
.footer-comissoes-title { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold) !important; }
.footer-comissoes ul { list-style: none; display: flex; flex-direction: column; gap: .2rem; }
.footer-comissoes ul li { font-size: .78rem; color: var(--text-muted); padding-left: .85rem; position: relative; }
.footer-comissoes ul li::before { content: '·'; position: absolute; left: 0; color: var(--gold); }
.footer-disclaimer { font-size: .7rem; line-height: 1.55; margin-top: .25rem; border-top: 1px solid var(--border); padding-top: .75rem; color: var(--text-muted); }
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .25rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: .85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p { font-size: .75rem; color: var(--text-muted); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .85rem;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== MEMBROS / COMISSÕES ===== */
.membros {
  padding: 5rem 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.membros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.membro-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.membro-card:hover { border-color: rgba(206,149,105,0.5); transform: translateY(-3px); }
.membro-icon {
  width: 56px; height: 56px;
  background: rgba(206,149,105,0.12);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.membro-info { display: flex; flex-direction: column; gap: .5rem; }
.membro-info strong { color: var(--white); font-size: 1.1rem; font-family: 'Playfair Display', serif; }
.membro-info > span { font-size: .85rem; color: var(--text-muted); }
.membro-sub { list-style: none; display: flex; flex-direction: column; gap: .4rem; margin-top: .25rem; }
.membro-sub li { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-muted); }
.membro-sub li svg { color: var(--gold); flex-shrink: 0; }

/* ===== MAPA ===== */
.contato-mapa {
  opacity: .8;
  transition: opacity var(--transition);
}
.contato-mapa:hover { opacity: 1; }
.contato-mapa img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: #0f2029;
  border-top: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.45);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: .35rem; }
.cookie-text p { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-actions .btn { padding: .6rem 1.25rem; font-size: .85rem; }

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-box {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cookie-modal-box h3 { color: var(--white); font-size: 1.2rem; }
.cookie-modal-box > p { font-size: .88rem; }
.cookie-toggle-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.cookie-toggle-item div { display: flex; flex-direction: column; gap: .25rem; }
.cookie-toggle-item strong { color: var(--white); font-size: .9rem; }
.cookie-toggle-item span { font-size: .78rem; color: var(--text-muted); }
.cookie-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; cursor: pointer; }
.cookie-switch--disabled { cursor: not-allowed; opacity: .5; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 24px;
  transition: background var(--transition);
}
.cookie-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}
.cookie-switch input:checked + .cookie-slider { background: var(--gold); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}
.cookie-policy-link { font-size: .8rem; color: var(--gold); text-decoration: underline; }

/* ===== HERO STATS ===== */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .03em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== SOBRE AFILIAÇÕES ===== */
.sobre-afiliações {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.sobre-afil-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.sobre-afil-tag {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(206,149,105,0.08);
  border: 1px solid rgba(206,149,105,0.25);
  border-radius: 6px;
  padding: .25rem .75rem;
}

/* ===== BLOG STRIP (landing page) ===== */
.blog-strip {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.blog-strip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.blog-strip-header .section-title { margin-bottom: 0; }
.blog-strip-controls {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.blog-arrow {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.blog-arrow:hover:not(:disabled) { background: rgba(206,149,105,0.1); border-color: var(--gold); }
.blog-arrow:disabled { opacity: .3; cursor: default; }
.blog-strip-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.blog-strip-grid {
  display: flex;
  transition: transform .35s ease;
}
.blog-strip-item {
  width: calc(100% / 3);   /* sobrescrito por JS com valor em px */
  min-width: 200px;
  flex-shrink: 0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.blog-strip-item:last-child { border-right: none; }
.blog-strip-item:hover { background: rgba(206,149,105,0.04); }
.blog-strip-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-strip-item h3 {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.4;
  flex: 1;
}
.blog-strip-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: .25rem;
  transition: gap var(--transition);
}
.blog-strip-link:hover { gap: .6rem; text-decoration: none; }

/* ===== RESPONSIVE ===== */

/* Tablet largo (≤1024px) */
@media (max-width: 1024px) {
  .sobre-inner { grid-template-columns: 280px 1fr; gap: 2.5rem; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .membros-grid { grid-template-columns: 1fr; }
  .blog-strip-item { min-width: calc(100% / 2); }
  .hero-stat-divider { display: none; }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  /* Header */
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .logo-img { height: 50px; }

  /* Mobile nav aberto */
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: #16313A;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1001;
  }
  .main-nav.open a { font-size: 1.25rem; color: var(--white); }
  .main-nav.open a:hover { color: var(--gold); }

  /* Hero */
  .hero { min-height: 90vh; padding-top: 6rem; }
  .hero-content { padding: 2.5rem 1.5rem 7rem; }
  .hero-bg-logo { width: 95%; top: 630px !important; }
  .hero-title { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll-hint { display: none; }

  /* Numbers */
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Áreas */
  .areas-grid { grid-template-columns: 1fr; }
  .areas { padding: 4rem 0; }

  /* Sobre */
  .sobre-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sobre-image-wrap { max-width: 260px; margin: 0 auto; }
  .sobre { padding: 4rem 0; }

  /* Diferenciais */
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais { padding: 4rem 0; }

  /* Associações */
  .assoc-divider { display: none; }
  .associacoes-logos { gap: 2rem; flex-wrap: wrap; }

  /* CTA banner */
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner { padding: 3.5rem 0; }

  /* Contato */
  .contato-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contato-form { padding: 1.5rem; }
  .contato { padding: 4rem 0; }

  /* Cookie */
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-actions { width: 100%; justify-content: flex-end; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-logo-img { height: 38px; }

  /* Blog strip */
  .blog-strip-item { min-width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .blog-strip-item:last-child { border-bottom: none; }
  .blog-strip-header { flex-direction: column; align-items: flex-start; }

  /* Hero stats */
  .hero-stats { gap: 1.25rem; }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  /* Header */
  .logo-img { height: 42px; }
  .header-inner { gap: 1rem; }

  /* Hero */
  .hero { min-height: auto; padding: 5.5rem 0 3rem; }
  .hero-bg-logo { width: 98%; top: 530px !important; }
  .hero-title { font-size: clamp(1.35rem, 7vw, 1.8rem); }
  .hero-sub { font-size: .9rem; }
  .btn-lg { padding: .85rem 1.25rem; font-size: .88rem; }

  /* Numbers */
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .number-item .number { font-size: 2rem; }

  /* Diferenciais: 1 coluna no celular pequeno */
  .diferenciais-grid { grid-template-columns: 1fr; }

  /* Sobre */
  .sobre-image-wrap { max-width: 220px; }

  /* Associações */
  .associacoes-logos { flex-direction: column; align-items: center; gap: 1.5rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom p { font-size: .68rem; }
  .whatsapp-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
  .whatsapp-tooltip { display: none; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp .6s ease forwards; }
.fade-up:nth-child(2) { animation-delay: .1s; }
.fade-up:nth-child(3) { animation-delay: .2s; }

/* ===== PÁGINAS DE SERVIÇO ===== */
.service-hero {
  padding: 9rem 0 4rem;
  background: var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.service-hero .section-tag { margin-bottom: 1rem; }
.service-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.2;
}
.service-hero p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.service-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.service-content p {
  color: rgba(255,255,255,.80);
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.service-services {
  margin: 2.5rem 0;
}
.service-services h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: .75rem 2rem;
}
.service-list li {
  padding-left: 1.4rem;
  position: relative;
  color: rgba(255,255,255,.82);
  font-size: .97rem;
  line-height: 1.5;
}
.service-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}
.service-cta-box {
  background: rgba(206,149,105,.07);
  border: 1px solid rgba(206,149,105,.25);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 3rem;
}
.service-cta-box p {
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .service-list { grid-template-columns: 1fr; }
  .service-hero { padding: 8rem 1rem 3rem; }
  .service-content { padding: 3rem 1.25rem; }
}
.fade-up:nth-child(4) { animation-delay: .3s; }

/* ===== ÁREA DO CLIENTE — NAV ===== */
.nav-cliente {
  font-size: .875rem !important;
  font-weight: 500 !important;
  border: 1px solid rgba(206,149,105,.35) !important;
  padding: .28rem .7rem !important;
  border-radius: 6px;
  color: #CE9569 !important;
  white-space: nowrap;
}
.nav-cliente:hover { background: rgba(206,149,105,.1) !important; }

/* ===== FOOTER SOCIAL ===== */
.footer-social { display: flex; gap: 1rem; margin-top: .25rem; flex-wrap: wrap; }
.footer-social a {
  display: flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.45); font-size: .78rem;
  text-decoration: none; transition: color .2s;
}
.footer-social a:hover { color: #CE9569; }

