/* ============================================
   BALONECKER ADVOCACIA – CSS Principal
   Paleta: Azul Marinho + Dourado + Branco
============================================ */

:root {
  --navy: #0d1f3c;
  --navy-mid: #162d52;
  --navy-light: #1e3a6e;
  --gold: #c9a84c;
  --gold-light: #e4c76b;
  --gold-dark: #a88730;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --gray-light: #f2f4f7;
  --gray: #9aa3b0;
  --gray-dark: #4a5568;
  --text: #2d3748;
  --shadow: 0 4px 24px rgba(13, 31, 60, 0.10);
  --shadow-md: 0 8px 40px rgba(13, 31, 60, 0.15);
  --shadow-lg: 0 16px 60px rgba(13, 31, 60, 0.20);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.gold { color: var(--gold); }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-dark);
  max-width: 580px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.40);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================
   NAVBAR
============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(13,31,60,0.25);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}
.logo-sub {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://www.genspark.ai/api/files/s/Eyy2UKOJ') center center / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 31, 60, 0.92) 0%,
    rgba(13, 31, 60, 0.80) 55%,
    rgba(13, 31, 60, 0.55) 100%
  );
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  pointer-events: none;
}
.hero-overlay {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  /* acima do overlay */
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 700px;
  padding-left: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 30px;
  background: rgba(201,168,76,0.05);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-desc strong { color: var(--gold); }
.hero-atendimento {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 30px;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.hero-atendimento i {
  color: var(--gold);
  font-size: 1rem;
}
.hero-atendimento strong { color: var(--gold); }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ============================================
   SOBRE
============================================ */
.sobre {
  padding: 100px 0;
  background: var(--white);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.sobre-img-wrap {
  position: relative;
}
.sobre-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.sobre-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold);
}
.sobre-badge i {
  font-size: 1.8rem;
  color: var(--gold);
}
.sobre-badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}
.sobre-badge span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
}
.sobre-text { padding-right: 8px; }
.sobre-text p {
  color: var(--gray-dark);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1rem;
}
.sobre-online {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white) !important;
  padding: 14px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  font-size: 0.95rem !important;
  margin-top: 8px;
}
.sobre-online i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.sobre-online strong { color: var(--gold); }
.sobre-diferenciais {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}
.diferencial {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}
.diferencial i { color: var(--gold); font-size: 1rem; }

/* OAB SELO */
.oab-selo {
  margin-top: 8px;
}
.oab-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.oab-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oab-icon i { color: var(--navy); font-size: 1.3rem; }
.oab-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.oab-text strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}
.oab-text span {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
}
.oab-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 0.65rem !important;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  margin-top: 2px;
}

/* ============================================
   ÁREAS DE ATUAÇÃO
============================================ */
.areas {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}
.areas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.area-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.area-card:hover::before { transform: scaleX(1); }
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.area-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.area-card:hover .area-icon {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}
.area-icon i { color: var(--gold); font-size: 1.35rem; transition: var(--transition); }
.area-card:hover .area-icon i { color: var(--navy); }
.area-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.area-card p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

/* ============================================
   EQUIPE
============================================ */
.equipe {
  padding: 100px 0;
  background: var(--white);
}
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.membro-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(13,31,60,0.07);
}
.membro-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.membro-card.destaque {
  border: 2px solid var(--gold);
  position: relative;
}

.membro-foto-wrap {
  height: 420px;
  overflow: hidden;
  background: var(--gray-light);
}
.membro-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
}
.membro-card:hover .membro-foto { transform: scale(1.04); }
.membro-info {
  padding: 24px;
}
.membro-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.membro-cargo {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.membro-info p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin-bottom: 16px;
}
.btn-whatsapp-mini {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: #25D366;
  color: var(--white);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-whatsapp-mini:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}
.btn-whatsapp-mini.btn-navy {
  background: var(--navy);
}
.btn-whatsapp-mini.btn-navy:hover {
  background: var(--navy-light);
}

/* ============================================
   CTA BANNER
============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.10) 0%, transparent 70%);
}
.cta-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}
.cta-content .btn {
  margin-left: auto;
}

/* ============================================
   CONTATO
============================================ */
.contato {
  padding: 100px 0;
  background: var(--off-white);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

/* FORMULÁRIO */
.contato-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde3ec;
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,31,60,0.08);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }
.form-msg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-msg.success {
  background: #f0fff4;
  color: #276749;
  border: 1px solid #c6f6d5;
}
.form-msg.error {
  background: #fff5f5;
  color: #c53030;
  border: 1px solid #fed7d7;
}

/* INFO CARDS */
.contato-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.info-icon {
  font-size: 1.5rem;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-icon.whatsapp { color: #25D366; }
.info-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.info-card span,
.info-card a {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.5;
  display: block;
}
.info-card a:hover { color: var(--gold); }

/* MAPA */
.mapa-wrap {
  background: var(--white);
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mapa-wrap h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mapa-wrap h4 i { color: var(--gold); }
.mapa-container { border-radius: 12px; overflow: hidden; }
.btn-map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 7px 16px;
  border-radius: 6px;
  transition: var(--transition);
}
.btn-map-link:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-oab {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}
.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul li,
.footer-areas ul li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-links a:hover { color: var(--gold); }
.footer-areas li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  padding-left: 12px;
  position: relative;
}
.footer-areas li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.footer-contato p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contato i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contato a { color: rgba(255,255,255,0.6); }
.footer-contato a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   WHATSAPP FLUTUANTE
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-wpp 2.5s infinite;
}
.whatsapp-float i { color: var(--white); font-size: 1.7rem; }
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.wpp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wpp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--navy);
}
.whatsapp-float:hover .wpp-tooltip { opacity: 1; }

@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.70), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* ============================================
   ANIMATIONS
============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-img { height: 360px; }
  .sobre-badge { left: 0; }
  .equipe-grid { grid-template-columns: 1fr 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .hero-content { padding-left: 24px; }
  .cta-content .btn { margin-left: 0; }
}

@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { display: block; padding: 14px 0; font-size: 1rem; }
  .hamburger { display: flex; }

  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-stats { gap: 16px; }
  .equipe-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .sobre-diferenciais { grid-template-columns: 1fr; }
  .contato-form-wrap { padding: 24px; }
  .cta-content { flex-direction: column; text-align: center; }
  .cta-content .btn { margin-left: 0; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.9rem; }
}
