/* ============================================================
   CAMPOS FREIRE ADVOCACIA — style.css
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

abbr { text-decoration: none; color: var(--cor-dourado); }

/* ── TIPOGRAFIA ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

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

.dourado { color: var(--cor-dourado); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cor-dourado);
  margin-bottom: 12px;
}

.section-titulo {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cor-texto);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--cor-texto-suave);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ── BOTÕES ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  min-height: 48px;
  white-space: nowrap;
}

.btn-dourado {
  background: var(--cor-dourado);
  color: #0a0a0f;
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn-dourado:hover {
  background: var(--cor-dourado-luz);
  box-shadow: 0 6px 28px rgba(201,168,76,0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cor-dourado);
  border: 1px solid var(--cor-dourado);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--cor-dourado-luz);
  transform: translateY(-1px);
}

.btn-header {
  background: transparent;
  color: var(--cor-dourado);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-header:hover {
  background: var(--cor-dourado);
  color: #0a0a0f;
  border-color: var(--cor-dourado);
}

.btn-cta-grande {
  background: transparent;
  color: #0a0a0f;
  background: var(--cor-dourado);
  font-size: 1rem;
  padding: 18px 40px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
.btn-cta-grande:hover {
  background: var(--cor-dourado-luz);
  box-shadow: 0 12px 40px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

.btn-submit-wpp {
  width: 100%;
  background: var(--cor-whatsapp);
  color: #fff;
  font-size: 1rem;
  padding: 16px 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-submit-wpp:hover {
  background: #20bc5a;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transform: translateY(-1px);
}

.btn-whatsapp-full {
  width: 100%;
  background: var(--cor-whatsapp);
  color: #fff;
  padding: 14px 24px;
}
.btn-whatsapp-full:hover { background: #20bc5a; }

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HEADER ───────────────────────────────────────────────── */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo-link {
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo-link:hover { opacity: 0.85; }

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-monogram {
  width: 44px;
  height: 44px;
  background: var(--cor-dourado);
  color: #0a0a0f;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cor-texto);
  white-space: nowrap;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cor-dourado);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--cor-texto-suave);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cor-dourado);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.ativo { color: var(--cor-texto); }
.nav-link:hover::after,
.nav-link.ativo::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cor-dourado);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.ativo span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.ativo span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.ativo span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav mobile */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(9,9,14,0.98);
  border-top: 1px solid var(--cor-borda);
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.nav-mobile.aberto {
  display: flex;
  max-height: 400px;
  padding: 16px 0;
}
.nav-link-mobile {
  display: block;
  padding: 14px 24px;
  font-size: 0.95rem;
  color: var(--cor-texto-suave);
  border-bottom: 1px solid rgba(42,42,58,0.5);
  transition: color 0.2s, background 0.2s;
}
.nav-link-mobile:hover {
  color: var(--cor-dourado);
  background: rgba(201,168,76,0.05);
}
.nav-mobile-cta { margin: 16px 24px 0; }

/* Header scrolled */
header.scrolled {
  box-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 30%, var(--cor-fundo) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hero-linha-dourada {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--cor-dourado), transparent);
  margin-bottom: 28px;
}

.hero-titulo {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--cor-texto);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.15;
}
.hero-titulo em {
  font-style: italic;
  color: var(--cor-dourado);
}

.hero-subtitulo {
  font-size: 1.05rem;
  color: var(--cor-texto-suave);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-botoes {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--cor-texto-suave);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.badge-sep {
  color: var(--cor-dourado);
  opacity: 0.5;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}

.hero-img-frame img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(10,10,15,0.4) 100%
  );
  pointer-events: none;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cor-dourado), transparent);
  z-index: 1;
}

.hero-stats {
  display: flex;
  gap: 0;
  background: var(--cor-card);
  border: 1px solid var(--cor-borda);
  border-radius: 3px;
  overflow: hidden;
}

.hero-stat {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--cor-dourado);
  font-weight: 700;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--cor-texto-suave);
  margin-top: 2px;
}
.hero-stat-sep {
  width: 1px;
  background: var(--cor-borda);
  margin: 16px 0;
}

/* ── CREDIBILIDADE STRIP ──────────────────────────────────── */
.credibilidade {
  background: var(--cor-fundo-alt);
  border-top: 1px solid var(--cor-borda);
  border-bottom: 1px solid var(--cor-borda);
  padding: 28px 0;
}

.cred-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}
.cred-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cor-dourado);
  line-height: 1;
}
.cred-item span {
  font-size: 0.8rem;
  color: var(--cor-texto-suave);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.cred-sep {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.3);
  flex-shrink: 0;
}

/* ── SOBRE ────────────────────────────────────────────────── */
.sobre {
  padding: 120px 0;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-content .section-tag { margin-bottom: 8px; }

.sobre-content .section-titulo {
  margin-bottom: 24px;
}

.sobre-texto {
  font-size: 1.02rem;
  color: var(--cor-texto-suave);
  line-height: 1.85;
  margin-bottom: 32px;
}

.sobre-lista {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sobre-lista li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--cor-texto-suave);
  padding-left: 0;
  line-height: 1.5;
}
.sobre-lista li::before {
  content: '';
  flex-shrink: 0;
  width: 3px;
  height: 18px;
  background: var(--cor-dourado);
  border-radius: 2px;
  margin-top: 2px;
}

.sobre-visual { position: relative; }

.sobre-img-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: visible;
}

.sobre-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.sobre-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--cor-dourado);
  color: #0a0a0f;
  padding: 20px 24px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(201,168,76,0.35);
}
.sobre-badge .badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.sobre-badge .badge-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  line-height: 1.4;
}

/* ── ÁREAS DE ATUAÇÃO ─────────────────────────────────────── */
.areas {
  padding: 120px 0;
  background: var(--cor-fundo-alt);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.area-card {
  background: var(--cor-card);
  border: 1px solid var(--cor-borda);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.area-card:last-child {
  grid-column: 2 / 3;
}

.area-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.area-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.area-card:hover .area-card-img img { transform: scale(1.04); }

.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.1) 0%,
    rgba(10,10,15,0.6) 100%
  );
  transition: background 0.3s ease;
}
.area-card:hover .area-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.05) 0%,
    rgba(10,10,15,0.5) 100%
  );
}

.area-card-body {
  padding: 28px 28px 32px;
}

.area-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cor-dourado);
  margin-bottom: 12px;
  font-weight: 700;
}

.area-linha {
  width: 32px;
  height: 2px;
  background: var(--cor-dourado);
  margin-bottom: 16px;
  transition: width 0.3s ease;
  opacity: 0.6;
}
.area-card:hover .area-linha {
  width: 48px;
  opacity: 1;
}

.area-desc {
  font-size: 0.9rem;
  color: var(--cor-texto-suave);
  line-height: 1.75;
  margin-bottom: 20px;
}

.area-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cor-dourado);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.area-link:hover { color: var(--cor-dourado-luz); }

/* ── CTA INTERMEDIÁRIO ────────────────────────────────────── */
.cta-medio {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.cta-medio-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 70%),
    var(--cor-fundo);
}

.cta-medio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cor-dourado), transparent);
}
.cta-medio::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cor-dourado), transparent);
}

.cta-medio-inner {
  position: relative;
  z-index: 1;
}

.cta-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cor-texto);
  margin-bottom: 16px;
  font-weight: 700;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--cor-texto-suave);
  margin-bottom: 40px;
}

/* ── FORMULÁRIO DE CONTATO ────────────────────────────────── */
.contato {
  padding: 120px 0;
  background: var(--cor-fundo-alt);
}

.form-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--cor-card);
  border: 1px solid var(--cor-borda);
  border-radius: 4px;
  padding: 48px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cor-texto);
  letter-spacing: 0.02em;
}

.label-opcional {
  font-size: 0.75rem;
  color: var(--cor-texto-suave);
  font-weight: 300;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cor-borda);
  border-radius: 3px;
  color: var(--cor-texto);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  padding: 13px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cor-texto-suave); opacity: 0.6; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cor-dourado);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group select { cursor: pointer; appearance: none; }
.form-group select option { background: #1a1a2e; color: var(--cor-texto); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group.erro input,
.form-group.erro select,
.form-group.erro textarea {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.12);
}

.form-erro {
  font-size: 0.78rem;
  color: #e74c3c;
  min-height: 16px;
  display: block;
}

.btn-submit-wpp { margin-top: 28px; }

.form-privacidade {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--cor-texto-suave);
  justify-content: center;
}

/* ── MAPA + CONTATO ───────────────────────────────────────── */
.mapa-sec {
  padding: 120px 0;
}

.mapa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.info-contato .section-titulo { margin-bottom: 32px; }

.contato-lista {
  display: flex;
  flex-direction: column;
  gap: 28px;
  list-style: none;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contato-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-dourado);
  flex-shrink: 0;
}

.contato-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cor-dourado);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contato-item p,
.contato-item a {
  font-size: 0.92rem;
  color: var(--cor-texto-suave);
  line-height: 1.6;
  transition: color 0.2s;
}
.contato-item a:hover { color: var(--cor-dourado); }

.mapa-wrapper {
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--cor-borda);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.mapa-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%) brightness(0.85);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #050508;
}

.footer-linha {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cor-dourado), transparent);
}

.footer-top { padding: 72px 0 56px; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .logo-wrapper { margin-bottom: 20px; }

.footer-desc {
  font-size: 0.88rem;
  color: var(--cor-texto-suave);
  line-height: 1.75;
  max-width: 260px;
}

.footer-nav,
.footer-areas-list,
.footer-contato {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-titulo {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cor-dourado);
  margin-bottom: 6px;
}

.footer-nav a,
.footer-areas-list a,
.footer-contato a,
.footer-contato p {
  font-size: 0.88rem;
  color: var(--cor-texto-suave);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-nav a:hover,
.footer-areas-list a:hover,
.footer-contato a:hover { color: var(--cor-dourado); }

.footer-bottom {
  border-top: 1px solid var(--cor-borda);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--cor-texto-suave);
}

.nexia-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.nexia-credit:hover { opacity: 1; }
.nexia-credit span {
  font-size: 0.78rem;
  color: var(--cor-texto-suave);
}
.nexia-logo { height: 28px; width: auto; }

/* ── RESPONSIVIDADE ──────────────────────────────────────── */

/* Tablet L — 768–1024px */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-linha-dourada { margin: 0 auto 28px; }
  .hero-subtitulo { max-width: 100%; }
  .hero-botoes { justify-content: center; }
  .hero-badge { justify-content: center; }
  .hero-img-frame img { height: 440px; }
  .hero-stats { justify-content: center; }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sobre-visual { order: -1; }
  .sobre-img-wrapper img { height: 360px; }
  .sobre-badge { bottom: -16px; right: 16px; }

  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .area-card:last-child { grid-column: auto; }

  .mapa-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mapa-wrapper { height: 360px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .nav-desktop { display: none; }
  .btn-header { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: none; }
  .nav-mobile.aberto { display: flex; }
}

/* Tablet P / Mobile L — 480–768px */
@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: 72px; }
  .hero-inner { padding-top: 48px; padding-bottom: 48px; }
  .hero-titulo { font-size: 1.85rem; }
  .hero-subtitulo { font-size: 0.95rem; }
  .hero-img-frame img { height: 360px; }

  .areas-grid { grid-template-columns: 1fr 1fr; }

  .cred-item { padding: 0 20px; }

  .sobre { padding: 80px 0; }
  .areas { padding: 80px 0; }
  .cta-medio { padding: 72px 0; }
  .contato { padding: 80px 0; }
  .mapa-sec { padding: 80px 0; }
  .footer-top { padding: 56px 0 40px; }

  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* Mobile S — até 480px */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .logo-name { font-size: 0.88rem; }
  .logo-monogram { width: 38px; height: 38px; font-size: 0.95rem; }

  .hero-titulo { font-size: 1.6rem; }
  .hero-botoes { flex-direction: column; }
  .hero-botoes .btn { width: 100%; }
  .hero-img-frame img { height: 300px; }
  .hero-stats { flex-direction: column; }
  .hero-stat-sep { width: 100%; height: 1px; margin: 0 16px; }

  .areas-grid { grid-template-columns: 1fr; }
  .area-card:last-child { grid-column: auto; }

  .cred-inner {
    flex-direction: column;
    gap: 20px;
  }
  .cred-sep {
    width: 40px;
    height: 1px;
  }
  .cred-item { padding: 0; }

  .sobre-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 20px;
  }
  .sobre-badge .badge-num { font-size: 1.5rem; }

  .cta-titulo { font-size: 1.5rem; }
  .btn-cta-grande { width: 100%; padding: 16px 24px; }

  .form-card { padding: 24px 16px; }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  .section-titulo { font-size: 1.6rem; }
}
