/* ═══════════════════════════════════════════════════
   RSR Advocacia — Global Styles
   Fonte: Inter (todos os elementos)
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&display=swap');

:root {
  --azul:        #14314F;
  --azul-escuro: #0d2236;
  --azul-mid:    #1a3d60;
  --cinza:       #cccccc;
  --cinza-claro: #f5f5f5;
  --cinza-mid:   #e8e8e8;
  --branco:      #ffffff;
  --dourado:     #b8963e;
  --dourado-claro: #d4b060;
  --texto:       #1a1a1a;
  --texto-claro: #5a5a5a;

  --ff-body:  'Inter', sans-serif;
  --ff-title: 'Inter', sans-serif;

  --nav-h: 76px;
  --max-w: 1180px;
  --pad-x: 5%;
  --radius: 2px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══ TIPOGRAFIA INTER — TÍTULOS ══ */
.section-title,
.hero-title,
.artigo-titulo,
.destaque-content h2,
.page-hero .section-title {
  font-weight: 600;
  letter-spacing: -0.02em;
}
.section-title em,
.hero-title em,
.artigo-titulo em {
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
}
/* Títulos de cards e elementos menores */
.area-card-home h3,
.news-card-home h3,
.news-card-lista .card-body h3,
.membro-info h3,
.valor-card h3,
.tl-item h4,
.faq-header h4,
.artigo-nav-btn h4,
.sb-post-titulo,
.rel-item h4,
.area-sidebar h2,
.form-float h3,
.form-box h3,
.sidebar-block h3,
.contato-hero-text h1 {
  font-weight: 600;
  letter-spacing: -0.01em;
}
/* Números grandes estilo display */
.stat-num,
.area-num-big,
.valor-num,
.badge-num,
.sobre-img-badge span:first-child,
.sobre-photo-badge span:first-child {
  font-weight: 300;
  letter-spacing: -0.03em;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--branco);
  color: var(--texto);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(13, 34, 54, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow .3s var(--ease);
}
#navbar.scrolled { box-shadow: 0 6px 40px rgba(0,0,0,0.35); }

.nav-logo img {
  height: 40px;
  transition: opacity .2s;
}
.nav-logo img:hover { opacity: .8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(204,204,204,.85);
  position: relative;
  padding-bottom: 3px;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--dourado);
  transition: width .3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--dourado) !important;
  color: var(--dourado) !important;
  padding: 7px 18px;
  border-radius: var(--radius);
  transition: background .25s, color .25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--dourado) !important; color: var(--azul-escuro) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cinza);
  transition: all .3s;
  border-radius: 1px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE TOP PADDING ── */
.page-body { padding-top: var(--nav-h); }

/* ── SECTION WRAPPER ── */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── LABELS & TITLES ── */
.label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--dourado);
  display: flex;
  align-items: center;
  gap: 10px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--dourado);
}

.section-title {
  font-family: var(--ff-title);
  font-weight: 400;
  color: var(--azul);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--dourado); }

.divider {
  width: 48px; height: 2px;
  background: var(--dourado);
  margin: 1.2rem 0 1.8rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: transform .2s, background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--azul); color: #fff; }
.btn-primary:hover { background: var(--azul-mid); }
.btn-gold { background: var(--dourado); color: var(--azul-escuro); }
.btn-gold:hover { background: var(--dourado-claro); }
.btn-outline { background: transparent; color: var(--branco); border: 1px solid rgba(255,255,255,.35); }
.btn-outline:hover { border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--azul); border: 1px solid var(--azul); }
.btn-outline-dark:hover { background: var(--azul); color: #fff; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── FOOTER ── */
footer {
  background: var(--azul-escuro);
  color: rgba(204,204,204,.45);
  padding: 3rem var(--pad-x);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}
footer p { font-size: .72rem; letter-spacing: .04em; text-align: left; margin: 0; }
.footer-social { display: flex; gap: 12px; align-items: center; }
.footer-social a { color: #b8963e; transition: color .25s, transform .25s; display: inline-flex; align-items: center; }
.footer-social a:hover { color: #fff; transform: translateY(-2px); }
.footer-credit { text-align: right; }
.footer-credit p { font-size: .72rem; letter-spacing: .04em; margin: 0; color: rgba(204,204,204,.45); text-align: right; }
.footer-credit a { color: #b8963e; text-decoration: none; transition: color .25s; }
.footer-credit a:hover { color: #fff; text-decoration: underline; }

/* ── HERO PHOTO (SVG procedural) ── */
.hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-photo-wrap svg { width: 100%; height: 100%; }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: var(--azul);
  padding: 80px var(--pad-x) 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,150,62,.07) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero .label { margin-bottom: 1.2rem; }
.page-hero .section-title { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: .5rem; }
.page-hero p { font-size: .9rem; color: rgba(204,204,204,.7); max-width: 520px; margin-top: .8rem; }
.page-hero-grid {
  display: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  opacity: .08;
  pointer-events: none;
}

/* ── SHARED CARD ── */
.card {
  background: var(--branco);
  border: 1px solid var(--cinza-mid);
  transition: box-shadow .3s, transform .3s;
}
.card:hover { box-shadow: 0 8px 32px rgba(20,49,79,.1); transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; background: var(--azul-escuro); padding: 1.5rem var(--pad-x); gap: 1.4rem; border-top: 1px solid rgba(255,255,255,.08); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  footer p { text-align: center; }
  .footer-credit { text-align: center; }
  .footer-credit p { text-align: center; }
}
@media (max-width: 600px) {
  :root { --pad-x: 6%; }
}

/* ==========================================================================
   HOME PAGE STYLES
   ========================================================================== */
#hero {
  min-height: 100vh;
  background: var(--azul);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 60px;
  padding-left: max(var(--pad-x), calc((100vw - var(--max-w)) / 2 + 20px));
  position: relative;
  z-index: 2;
}
.hero-tag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--dourado);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.6rem;
}
.hero-tag::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--dourado); }
.hero-title {
  font-family: var(--ff-title);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: var(--dourado-claro); }
.hero-desc {
  font-size: .88rem;
  line-height: 1.85;
  color: rgba(204,204,204,.8);
  max-width: 420px;
  margin-bottom: 2.4rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-num {
  display: block;
  font-family: var(--ff-title);
  font-size: 2rem;
  color: var(--dourado);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(204,204,204,.5); }

/* HERO PHOTO — SVG escritório procedural */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--azul) 0%, transparent 25%);
  z-index: 1;
}
.hero-office-photo {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-office-photo svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* HOME — SOBRE (SUCINTO) */
#sobre-home {
  padding: 100px 0;
  background: var(--cinza-claro);
}
.sobre-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.sobre-img {
  position: relative;
  height: 420px;
  background: var(--azul);
  overflow: hidden;
}
.sobre-img svg { width: 100%; height: 100%; }
.sobre-img img { width: 100%; height: 100%; object-fit: cover; }
.sobre-img-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--dourado);
  padding: 18px 24px;
  text-align: center;
}
.sobre-img-badge span:first-child {
  font-family: var(--ff-title);
  font-size: 2rem;
  color: var(--azul-escuro);
  display: block;
  line-height: 1;
}
.sobre-img-badge span:last-child {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--azul-escuro);
  opacity: .8;
}

.sobre-text .section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 0; }
.sobre-text p { font-size: .9rem; line-height: 1.85; color: var(--texto-claro); margin-bottom: 1rem; }
.sobre-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azul);
  margin-top: 1.2rem;
  border-bottom: 1px solid var(--dourado);
  padding-bottom: 3px;
  transition: color .25s, gap .25s;
}
.sobre-link:hover { color: var(--dourado); gap: 14px; }

/* HOME — ÁREAS (PREVIEW) */
#areas-home {
  padding: 100px 0;
  background: var(--branco);
}
.areas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.areas-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cinza-mid);
  border: 1px solid var(--cinza-mid);
}
.area-card-home {
  background: var(--branco);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: pointer;
}
.area-card-home::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--dourado);
  transition: width .35s var(--ease);
}
.area-card-home:hover { background: #fafafa; }
.area-card-home:hover::after { width: 100%; }
.area-icon-home {
  width: 48px; height: 48px;
  background: var(--azul);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  padding: 10px;
  box-sizing: border-box;
}
.area-icon-home svg { width: 28px !important; height: 28px !important; max-width: 28px !important; max-height: 28px !important; stroke: var(--dourado); fill: none; stroke-width: 1.5; display: block; }
.area-card-home h3 { font-family: var(--ff-title); font-size: 1.1rem; font-weight: 400; color: var(--azul); margin-bottom: .5rem; }
.area-card-home p { font-size: .8rem; color: var(--texto-claro); line-height: 1.6; }

/* HOME — NOVIDADES (PREVIEW) */
#novidades-home {
  padding: 100px 0;
  background: var(--azul);
}
#novidades-home .section-title { color: #fff; }
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.news-grid-home {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.07);
}
.news-card-home {
  background: rgba(255,255,255,.03);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: background .3s;
  cursor: pointer;
}
.news-card-home:hover { background: rgba(255,255,255,.07); }
.news-pill {
  display: inline-block;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dourado);
  border: 1px solid rgba(184,150,62,.35);
  padding: 3px 10px;
  width: fit-content;
}
.news-date-home { font-size: .68rem; color: rgba(204,204,204,.4); letter-spacing: .06em; }
.news-card-home h3 { font-family: var(--ff-title); font-weight: 400; color: #fff; line-height: 1.3; }
.news-card-home.featured h3 { font-size: 1.45rem; }
.news-card-home:not(.featured) h3 { font-size: 1rem; }
.news-card-home p { font-size: .78rem; color: rgba(204,204,204,.6); line-height: 1.7; }
.news-leia {
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dourado);
  display: flex; align-items: center; gap: 7px;
  margin-top: auto;
  transition: gap .2s;
}
.news-card-home:hover .news-leia { gap: 12px; }
.news-leia::after { content: '→'; }

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: calc(var(--nav-h) + 40px) var(--pad-x) 40px; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .sobre-home-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-img { height: 280px; }
  .areas-grid-home { grid-template-columns: 1fr 1fr; }
  .news-grid-home { grid-template-columns: 1fr; }
  .areas-header, .news-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .areas-grid-home { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SOBRE (ABOUT) PAGE STYLES
   ========================================================================== */
.sobre-intro {
  padding: 80px 0;
  background: var(--branco);
}
.sobre-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-intro-text .section-title { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 0; }
.sobre-intro-text p { font-size: .9rem; line-height: 1.9; color: var(--texto-claro); margin-bottom: 1rem; }
.sobre-intro-text p:last-of-type { margin-bottom: 0; }

.sobre-photo {
  position: relative;
  height: 500px;
}
.sobre-photo svg { width: 100%; height: 100%; display: block; }
.sobre-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sobre-photo-badge {
  position: absolute;
  bottom: 24px; left: -16px;
  background: var(--azul);
  border: 2px solid var(--dourado);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sobre-photo-badge span:first-child {
  font-family: var(--ff-title);
  font-size: 1.8rem;
  color: var(--dourado);
  line-height: 1;
}
.sobre-photo-badge span:last-child {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cinza);
  opacity: .8;
}

/* VALORES */
.valores-section {
  padding: 80px 0;
  background: var(--azul);
}
.valores-section .section-title { color: #fff; }
.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  margin-top: 3rem;
}
.valor-card {
  background: rgba(255,255,255,.03);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: background .3s;
}
.valor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--dourado);
  transition: height .4s var(--ease);
}
.valor-card:hover { background: rgba(255,255,255,.06); }
.valor-card:hover::before { height: 100%; }
.valor-num {
  font-family: var(--ff-title);
  font-size: 3rem;
  color: rgba(184,150,62,.12);
  line-height: 1;
  margin-bottom: .8rem;
}
.valor-card h3 { font-family: var(--ff-title); font-size: 1.2rem; font-weight: 400; color: var(--dourado); margin-bottom: .6rem; }
.valor-card p { font-size: .82rem; line-height: 1.7; color: rgba(204,204,204,.6); }

/* EQUIPE */
.equipe-section {
  padding: 80px 0;
  background: var(--cinza-claro);
}
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.membro-card {
  background: var(--branco);
  overflow: hidden;
  border: 1px solid var(--cinza-mid);
  transition: box-shadow .3s, transform .3s;
}
.membro-card:hover { box-shadow: 0 8px 32px rgba(20,49,79,.1); transform: translateY(-4px); }
.membro-foto {
  height: 260px;
  background: var(--azul);
  position: relative;
  overflow: hidden;
}
.membro-foto svg { width: 100%; height: 100%; }
.membro-info { padding: 1.5rem 1.6rem; }
.membro-info h3 { font-family: var(--ff-title); font-size: 1.15rem; font-weight: 400; color: var(--azul); margin-bottom: 3px; }
.membro-cargo { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dourado); display: block; margin-bottom: .7rem; }
.membro-info p { font-size: .8rem; line-height: 1.65; color: var(--texto-claro); }

/* HISTORIA LINHA DO TEMPO */
.historia-section {
  padding: 80px 0;
  background: var(--branco);
}
.timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 120px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--dourado), rgba(184,150,62,.15));
}
.tl-item {
  position: relative;
  margin-bottom: 2.8rem;
  padding-left: 2rem;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-year {
  position: absolute;
  left: -120px;
  top: 0;
  font-family: var(--ff-title);
  font-size: 1.3rem;
  color: var(--dourado);
  line-height: 1.3;
  text-align: right;
  width: 80px;
}
.tl-dot {
  position: absolute;
  left: -36px; top: 6px;
  width: 10px; height: 10px;
  background: var(--dourado);
  border-radius: 50%;
  border: 2px solid var(--branco);
  box-shadow: 0 0 0 2px var(--dourado);
}
.tl-item h4 { font-family: var(--ff-title); font-size: 1.05rem; font-weight: 400; color: var(--azul); margin-bottom: .4rem; }
.tl-item p { font-size: .83rem; line-height: 1.75; color: var(--texto-claro); max-width: 560px; }

@media (max-width: 900px) {
  .sobre-intro-grid { grid-template-columns: 1fr; }
  .sobre-photo { height: 300px; }
  .sobre-photo-badge { left: 0; }
  .valores-grid { grid-template-columns: 1fr 1fr; }
  .equipe-grid { grid-template-columns: 1fr 1fr; }
  .timeline { padding-left: 80px; }
  .tl-year { font-size: 1rem; }
}
@media (max-width: 600px) {
  .valores-grid { grid-template-columns: 1fr; }
  .equipe-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 0; padding-top: 40px; }
  .timeline::before { left: 0; }
  .tl-year { left: 0; top: -28px; text-align: left; }
  .tl-dot { left: -10px; }
  .tl-item { padding-left: 1.5rem; }
}

/* ==========================================================================
   ATUAÇÃO (EXPERTISE) PAGE STYLES
   ========================================================================== */
.areas-nav {
  background: var(--branco);
  border-bottom: 1px solid var(--cinza-mid);
  position: sticky;
  top: var(--nav-h);
  z-index: 500;
}
.areas-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.areas-nav-inner::-webkit-scrollbar { display: none; }
.area-nav-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--texto-claro);
  border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
  cursor: pointer;
  white-space: nowrap;
}
.area-nav-link:hover { color: var(--azul); }
.area-nav-link.active { color: var(--azul); border-bottom-color: var(--dourado); }
.area-nav-link span { font-size: .6rem; color: var(--dourado); }

/* Cards de área */
.area-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--cinza-mid);
}
.area-section:nth-child(even) { background: var(--cinza-claro); }
.area-section:nth-child(odd) { background: var(--branco); }

.area-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.area-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 56px);
}
.area-num-big {
  font-family: var(--ff-title);
  font-size: 5rem;
  color: rgba(20,49,79,.06);
  line-height: 1;
  margin-bottom: -.5rem;
}
.area-icon-big {
  width: 52px; height: 52px;
  background: var(--azul);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  padding: 10px;
  box-sizing: border-box;
}
.area-icon-big svg { width: 32px !important; height: 32px !important; max-width: 32px !important; max-height: 32px !important; stroke: var(--dourado); fill: none; stroke-width: 1.5; display: block; }
.area-sidebar h2 { font-family: var(--ff-title); font-size: 2rem; font-weight: 400; color: var(--azul); margin-bottom: .8rem; }
.area-sidebar .resumo-txt { font-size: .88rem; color: var(--texto-claro); line-height: 1.8; }

.area-content p { font-size: .9rem; line-height: 1.9; color: var(--texto-claro); margin-bottom: 1.2rem; }
.area-content p:last-of-type { margin-bottom: 2rem; }

.servicos-titulo {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.servicos-titulo::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--dourado); }

.servicos-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  list-style: none;
}
.servicos-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: var(--texto);
  line-height: 1.5;
}
.servicos-list li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 5px; height: 5px;
  background: var(--dourado);
  border-radius: 50%;
  margin-top: 7px;
}

.area-cta {
  margin-top: 2.5rem;
  padding: 1.5rem 1.8rem;
  background: var(--azul);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.area-cta p { font-size: .82rem; color: rgba(204,204,204,.7); margin: 0; }
.area-cta strong { display: block; font-size: .9rem; color: #fff; margin-bottom: 2px; }

@media (max-width: 900px) {
  .area-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .area-sidebar { position: static; }
  .area-num-big { font-size: 3rem; }
  .servicos-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   NOVIDADES (NEWS LIST) PAGE STYLES
   ========================================================================== */
.filtros-bar {
  background: var(--branco);
  border-bottom: 1px solid var(--cinza-mid);
  position: sticky;
  top: var(--nav-h);
  z-index: 500;
}
.filtros-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filtros-inner::-webkit-scrollbar { display: none; }

/* DESTAQUE */
.news-destaque {
  padding: 60px 0;
  background: var(--azul);
}
.destaque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.destaque-img {
  height: 360px;
  background: #0a1a28;
  overflow: hidden;
  position: relative;
}
.destaque-img svg { width: 100%; height: 100%; }
.destaque-pill {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dourado);
  border: 1px solid rgba(184,150,62,.35);
  padding: 4px 12px;
  margin-bottom: 1.2rem;
}
.destaque-date {
  font-size: .7rem;
  color: rgba(204,204,204,.4);
  letter-spacing: .06em;
  margin-bottom: .8rem;
  display: block;
}
.destaque-content h2 {
  font-family: var(--ff-title);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.destaque-content p {
  font-size: .88rem;
  line-height: 1.85;
  color: rgba(204,204,204,.65);
  margin-bottom: 1.8rem;
}
.destaque-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.tag-chip {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(204,204,204,.5);
  border: 1px solid rgba(255,255,255,.1);
  padding: 3px 10px;
}

/* GRADE DE NOTÍCIAS */
.news-lista {
  padding: 60px 0;
  background: var(--cinza-claro);
}
.lista-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.lista-count {
  font-size: .75rem;
  color: var(--texto-claro);
  letter-spacing: .05em;
}
.lista-count strong { color: var(--azul); }

.news-grid-lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.news-card-lista {
  background: var(--branco);
  border: 1px solid var(--cinza-mid);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .3s, transform .3s;
}
.news-card-lista:hover {
  box-shadow: 0 8px 32px rgba(20,49,79,.1);
  transform: translateY(-4px);
}
.card-thumb {
  height: 180px;
  background: var(--azul);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.card-thumb svg { width: 100%; height: 100%; }
.card-categoria {
  position: absolute;
  top: 14px; left: 14px;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--dourado);
  color: var(--azul-escuro);
  padding: 3px 10px;
}
.card-body {
  padding: 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.card-data { font-size: .67rem; color: rgba(0,0,0,.35); letter-spacing: .06em; }
.card-body h3 {
  font-family: var(--ff-title);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--azul);
  line-height: 1.3;
}
.card-body p {
  font-size: .8rem;
  color: var(--texto-claro);
  line-height: 1.65;
  flex: 1;
}
.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--cinza-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-tags-sm { display: flex; gap: .4rem; flex-wrap: wrap; }
.card-tag-sm {
  font-size: .55rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--texto-claro);
  border: 1px solid var(--cinza-mid);
  padding: 2px 7px;
}
.card-leia {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dourado);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.news-card-lista:hover .card-leia { gap: 10px; }
.card-leia::after { content: '→'; }

.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 0;
  color: var(--texto-claro);
}
.empty-state p { font-size: .9rem; }

/* PAGINAÇÃO */
select option {
  color: #0d2236 !important;
  background-color: #ffffff !important;
}
.paginacao {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 3rem;
}
.pag-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  font-weight: 600;
  border: 1px solid var(--cinza-mid);
  background: var(--branco);
  color: var(--texto-claro);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  font-family: var(--ff-body);
}
.pag-btn:hover, .pag-btn.active {
  background: var(--azul);
  color: #fff;
  border-color: var(--azul);
}

/* NEWSLETTER */
.newsletter {
  padding: 70px 0;
  background: var(--branco);
  text-align: center;
  border-top: 1px solid var(--cinza-mid);
}
.newsletter h2 {
  font-family: var(--ff-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--azul);
  margin-bottom: .7rem;
}
.newsletter p { font-size: .88rem; color: var(--texto-claro); margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  border: 1px solid var(--cinza-mid);
  border-right: none;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: .85rem;
  outline: none;
  transition: border-color .25s;
}
.newsletter-form input:focus { border-color: var(--azul); }
.newsletter-form button {
  background: var(--azul);
  color: #fff;
  border: 1px solid var(--azul);
  padding: 12px 22px;
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s;
}
.newsletter-form button:hover { background: var(--azul-mid); }

/* LAYOUT COM SIDEBAR */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
.sb-block {
  background: var(--branco);
  border: 1px solid var(--cinza-mid);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sb-block:last-child { margin-bottom: 0; }
.sb-titulo {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sb-titulo::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--dourado);
}
.sb-categorias,
#sidebarAreas,
#sbCategorias {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  width: 100% !important;
}
.sb-categorias a,
.sb-cat-btn,
.cat-link,
.sb-area-link,
#sidebarAreas a {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0.75rem 0.5rem !important;
  border: none !important;
  border-bottom: 1px solid var(--cinza-mid) !important;
  background: transparent;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 0.85rem !important;
  color: var(--texto-claro) !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  text-align: left;
  line-height: 1.4 !important;
}
.sb-categorias a:last-child,
.sb-cat-btn:last-child,
.cat-link:last-child,
.sb-area-link:last-child,
#sidebarAreas a:last-child {
  border-bottom: none !important;
}
.sb-categorias a:hover,
.sb-cat-btn:hover,
.cat-link:hover,
.sb-area-link:hover,
#sidebarAreas a:hover,
.sb-categorias a.active,
.sb-cat-btn.active,
.cat-link.active,
.sb-area-link.active {
  color: var(--dourado) !important;
  background: rgba(184, 150, 62, 0.06) !important;
  padding-left: 0.85rem !important;
}
.sb-post {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--cinza-mid);
  cursor: pointer;
}
.sb-post:last-child { border-bottom: none; padding-bottom: 0; }
.sb-post:hover .sb-post-titulo { color: var(--dourado); }
.sb-post-cat { font-size: .57rem; letter-spacing: .15em; text-transform: uppercase; color: var(--dourado); }
.sb-post-titulo { font-family: var(--ff-title); font-size: .88rem; font-weight: 400; color: var(--azul); line-height: 1.3; transition: color .2s; }
.sb-post-data { font-size: .65rem; color: rgba(0,0,0,.35); }
.sb-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.sb-tag {
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--cinza-mid);
  padding: 4px 10px;
  color: var(--texto-claro);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.sb-tag:hover { border-color: var(--dourado); color: var(--dourado); }
.sb-contato {
  background: var(--azul);
  border-color: var(--azul);
}
.sb-contato .sb-titulo { color: var(--dourado); }
.sb-contato p { font-size: .82rem; color: rgba(204,204,204,.65); line-height: 1.7; margin-bottom: 1.2rem; }
.sb-nl input {
  width: 100%;
  border: 1px solid var(--cinza-mid);
  padding: 10px 12px;
  font-family: var(--ff-body);
  font-size: .82rem;
  outline: none;
  transition: border-color .25s;
  margin-bottom: .6rem;
}
.sb-nl input:focus { border-color: var(--azul); }
.sb-nl button {
  width: 100%;
  background: var(--azul);
  color: #fff;
  border: none;
  padding: 10px;
  font-family: var(--ff-body);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
}
.sb-nl button:hover { background: var(--azul-mid); }

@media (max-width: 900px) {
  .destaque-grid { grid-template-columns: 1fr; }
  .destaque-img { height: 220px; }
  .news-layout { grid-template-columns: 1fr; }
  .news-sidebar { position: static; }
  .news-grid-lista { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .news-grid-lista { grid-template-columns: 1fr; }
}

/* ==========================================================================
   NOTICIA (NEWS DETAIL) PAGE STYLES
   ========================================================================== */
.artigo-wrap {
  padding: 60px 0 90px;
  background: var(--branco);
}
.artigo-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  color: var(--texto-claro);
  margin-bottom: 1.8rem;
}
.breadcrumb a { color: var(--texto-claro); transition: color .2s; }
.breadcrumb a:hover { color: var(--dourado); }
.breadcrumb span { opacity: .4; }

.artigo-cat {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--dourado);
  color: var(--azul-escuro);
  padding: 4px 12px;
  margin-bottom: 1.2rem;
}
.artigo-titulo {
  font-family: var(--ff-title);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--azul);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.artigo-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid var(--cinza-mid);
  border-bottom: 1px solid var(--cinza-mid);
  margin-bottom: 2rem;
}
.artigo-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: var(--texto-claro);
}
.artigo-meta-item svg { width: 14px; height: 14px; stroke: var(--dourado); fill: none; stroke-width: 1.8; }

.artigo-capa {
  width: 100%;
  height: 380px;
  background: var(--azul);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.artigo-capa svg { width: 100%; height: 100%; }

.artigo-texto,
.artigo-corpo {
  font-size: .92rem;
  line-height: 1.9;
  color: #3a3a3a;
}
.artigo-texto p,
.artigo-corpo p {
  margin-bottom: 0 !important;
}
.artigo-texto ul,
.artigo-corpo ul {
  list-style-type: disc !important;
  padding-left: 2.2rem !important;
  margin-top: 1rem !important;
  margin-bottom: 1.5rem !important;
}
.artigo-texto ol,
.artigo-corpo ol {
  list-style-type: decimal !important;
  padding-left: 2.2rem !important;
  margin-top: 1rem !important;
  margin-bottom: 1.5rem !important;
}
.artigo-texto li,
.artigo-corpo li {
  margin-bottom: 0.6rem !important;
  line-height: 1.7 !important;
}
.artigo-texto h2, .artigo-texto h3, .artigo-texto h4,
.artigo-corpo h2, .artigo-corpo h3, .artigo-corpo h4 {
  color: var(--azul);
  margin-top: 1.8rem;
  margin-bottom: 1rem;
  font-family: var(--ff-title);
}

.artigo-quote {
  border-left: 3px solid var(--dourado);
  padding: 1.2rem 1.6rem;
  background: var(--cinza-claro);
  margin: 2rem 0;
  font-family: var(--ff-title);
  font-size: 1.15rem;
  color: var(--azul);
  line-height: 1.5;
  font-style: italic;
}

.artigo-tags-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  font-style: italic;
  font-size: 0.78rem;
  color: #888888;
}
.artigo-tags-container .tags-label {
  font-weight: 600;
  font-style: normal;
  color: #a0a0a0;
  font-size: 0.75rem;
}
.artigo-tags-container .tag-item {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 2px 8px;
  color: #777777;
  font-style: italic;
  font-size: 0.75rem;
  transition: all 0.2s;
}
.artigo-tags-container .tag-item:hover {
  color: var(--dourado);
  border-color: var(--dourado);
}

.artigo-footer-nav {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cinza-mid);
}

.cat-link {
  display: block;
  padding: 0.65rem 0.75rem;
  font-size: 0.8rem;
  color: var(--texto-claro);
  text-decoration: none;
  border-bottom: 1px solid var(--cinza-mid);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  width: 100%;
}
.cat-link:hover, .cat-link.active {
  color: var(--dourado);
  border-bottom-color: var(--dourado);
  background: rgba(184, 150, 62, 0.05);
}

.artigo-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.share-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--texto-claro); }
.share-btn {
  width: 34px; height: 34px;
  background: var(--azul);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.share-btn:hover { background: var(--dourado); }
.share-btn svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 1.8; }

.artigo-cta {
  background: var(--azul);
  padding: 2rem 2.2rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.artigo-cta-txt strong { display: block; font-size: .95rem; color: #fff; margin-bottom: 4px; }
.artigo-cta-txt p { font-size: .82rem; color: rgba(204,204,204,.65); margin: 0; }

.artigo-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sidebar-block {
  background: var(--cinza-claro);
  padding: 1.6rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--cinza-mid);
}
.sidebar-block:last-child { margin-bottom: 0; }
.sidebar-titulo {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 8px;
}
.sidebar-titulo::before { content: ''; display: inline-block; width: 18px; height: 1px; background: var(--dourado); }

.rel-item {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--cinza-mid);
  cursor: pointer;
  transition: color .2s;
}
.rel-item:last-child { border-bottom: none; padding-bottom: 0; }
.rel-item:hover h4 { color: var(--dourado); }
.rel-cat { font-size: .57rem; letter-spacing: .15em; text-transform: uppercase; color: var(--dourado); }
.rel-item h4 { font-family: var(--ff-title); font-size: .92rem; font-weight: 400; color: var(--azul); line-height: 1.3; transition: color .2s; }
.rel-item span { font-size: .67rem; color: rgba(0,0,0,.35); }

.sidebar-contato {
  background: var(--azul);
  border-color: var(--azul);
}
.sidebar-contato .sidebar-titulo { color: var(--dourado); }
.sidebar-contato p { font-size: .82rem; color: rgba(204,204,204,.65); line-height: 1.7; margin-bottom: 1.2rem; }

.artigo-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cinza-mid);
  margin-top: 3rem;
  border: 1px solid var(--cinza-mid);
}
.artigo-nav-btn {
  background: var(--branco);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.artigo-nav-btn:hover { background: var(--cinza-claro); }
.artigo-nav-btn.next { text-align: right; }
.nav-dir {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dourado);
}
.artigo-nav-btn h4 {
  font-family: var(--ff-title);
  font-size: .95rem;
  font-weight: 400;
  color: var(--azul);
  line-height: 1.25;
}

@media (max-width: 900px) {
  .artigo-layout { grid-template-columns: 1fr; }
  .artigo-sidebar { position: static; }
  .artigo-capa { height: 220px; }
}
@media (max-width: 600px) {
  .artigo-nav { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTATO (CONTACT) PAGE STYLES
   ========================================================================== */
.contato-hero-strip {
  background: var(--azul);
  padding: 80px var(--pad-x) 0;
  position: relative;
  overflow: hidden;
}
.contato-hero-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,150,62,.07) 0%, transparent 60%);
  pointer-events: none;
}
.contato-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
}
.contato-hero-text { padding-bottom: 60px; }
.contato-hero-text .label { margin-bottom: 1rem; }
.contato-hero-text h1 {
  font-family: var(--ff-title);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.contato-hero-text h1 em { font-style: italic; color: var(--dourado-claro); }
.contato-hero-text p {
  font-size: .9rem;
  color: rgba(204,204,204,.7);
  line-height: 1.8;
  max-width: 400px;
}
.form-float {
  position: relative;
  top: 40px;
  background: var(--branco);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 2.6rem;
  z-index: 10;
}
.form-float h3 {
  font-family: var(--ff-title);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--azul);
  margin-bottom: 1.6rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1rem; }
.fg label { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--texto-claro); }
.fg input, .fg select, .fg textarea {
  border: 1px solid var(--cinza-mid);
  background: var(--cinza-claro);
  padding: 11px 13px;
  font-family: var(--ff-body);
  font-size: .85rem;
  color: var(--texto);
  outline: none;
  transition: border-color .25s, background .25s;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--azul);
  background: var(--branco);
}
.fg textarea { resize: vertical; min-height: 110px; }
.form-btn {
  width: 100%;
  padding: 14px;
  background: var(--azul);
  color: #fff;
  border: none;
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.form-btn:hover { background: var(--azul-mid); transform: translateY(-2px); }
.form-note {
  font-size: .7rem;
  color: var(--texto-claro);
  text-align: center;
  margin-top: .8rem;
  line-height: 1.5;
}

.contato-spacer {
  height: 80px;
  background: var(--cinza-claro);
}

.contato-info-section {
  padding: 70px 0 80px;
  background: var(--cinza-claro);
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cinza-mid);
  border: 1px solid var(--cinza-mid);
  margin-bottom: 60px;
}
.info-card {
  background: var(--branco);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: background .3s;
}
.info-card:hover { background: #fafafa; }
.info-card-ico {
  width: 44px; height: 44px;
  background: var(--azul);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-card-ico svg { width: 20px; height: 20px; stroke: var(--dourado); fill: none; stroke-width: 1.5; }
.info-card-lbl {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dourado);
}
.info-card-val {
  font-size: .9rem;
  color: var(--texto);
  font-weight: 500;
  line-height: 1.4;
}
.info-card-sub {
  font-size: .78rem;
  color: var(--texto-claro);
  line-height: 1.5;
}

.mapa-wrap {
  width: 100%;
  height: 320px;
  background: var(--azul);
  position: relative;
  overflow: hidden;
}
.mapa-wrap svg { width: 100%; height: 100%; }
.mapa-overlay {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--branco);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.mapa-overlay strong { font-size: .82rem; color: var(--azul); }
.mapa-overlay span { font-size: .74rem; color: var(--texto-claro); }

.faq-section {
  padding: 80px 0;
  background: var(--branco);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--cinza-mid);
  border: 1px solid var(--cinza-mid);
  margin: 3rem auto 0;
  max-width: 920px;
}
.faq-item {
  background: var(--branco);
  padding: 0;
  border: none;
  cursor: pointer;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  gap: 1rem;
  transition: background .25s;
}
.faq-item:hover .faq-header { background: var(--cinza-claro); }
.faq-item.open .faq-header { background: var(--azul); }
.faq-header h4 {
  font-family: var(--ff-title);
  font-size: 1rem;
  font-weight: 400;
  color: var(--azul);
  line-height: 1.3;
}
.faq-item.open .faq-header h4 { color: #fff; }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--cinza-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .25s, border-color .25s;
}
.faq-item.open .faq-icon { background: var(--dourado); border-color: var(--dourado); }
.faq-icon svg { width: 12px; height: 12px; stroke: var(--texto-claro); fill: none; stroke-width: 2; transition: stroke .25s, transform .3s; }
.faq-item.open .faq-icon svg { stroke: var(--azul); transform: rotate(45deg); }
.faq-body {
  display: none;
  padding: 0 1.8rem 1.4rem;
  font-size: .85rem;
  line-height: 1.8;
  color: var(--texto-claro);
}
.faq-item.open .faq-body { 
  display: block; 
  margin-top: 10px;
}

@media (max-width: 900px) {
  .contato-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contato-hero-text { padding-bottom: 0; }
  .form-float { top: 0; box-shadow: 0 8px 32px rgba(0,0,0,.12); }
  .contato-spacer { height: 24px; }
  .info-cards { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .info-cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   FLOATING BUTTONS (WhatsApp & Back to Top)
   ═══════════════════════════════════════════════════ */
.btn-float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none !important;
}

.btn-float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.65);
}

.btn-float-backtotop {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  background-color: #0d2236;
  color: #b8963e !important;
  border: 1px solid rgba(184, 150, 62, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-float-backtotop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-float-backtotop:hover {
  background-color: #b8963e;
  color: #0d2236 !important;
  border-color: #b8963e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(184, 150, 62, 0.4);
}

@media (max-width: 768px) {
  .btn-float-whatsapp {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
  .btn-float-whatsapp svg {
    width: 25px;
    height: 25px;
  }
  .btn-float-backtotop {
    bottom: 18px;
    left: 18px;
    width: 40px;
    height: 40px;
  }
}
