/* ==========================================
   ERICKA LEITE ADVOCACIA — STYLE.CSS
   VERSÃO FINAL RESPONSIVA
   ========================================== */

html, body { overflow-x: hidden; }

:root {
  --gold: #C9A84C;
  --gold-light: #E2C27A;
  --gold-dark: #9A7A2F;
  --black: #000000;
  --black-soft: #0A0A0A;
  --black-mid: #111111;
  --black-card: #141414;
  --white: #FFFFFF;
  --gray: #8A8A8A;
  --gray-light: #CCCCCC;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: #f3f3f3;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* UTILITY */
.gold { color: var(--gold); }
.serif { font-family: 'Cormorant Garamond', serif; }

/* TYPOGRAPHY */
p { color: #c7c7c7; font-size: 15px; line-height: 1.8; font-weight: 400; letter-spacing: 0.2px; }
a { font-weight: 400; letter-spacing: 0.3px; }
h1, h2, h3, h4, h5, h6 { color: #ffffff; font-weight: 500; text-rendering: optimizeLegibility; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* REVEAL SCROLL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ==========================================
   HEADER
   ========================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
header.scrolled {
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(12px);
  padding: 12px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

.logo-header { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo-mark img { width: 130px; height: auto; display: block; filter: drop-shadow(0 0 10px rgba(201,168,76,0.12)); }
.logo-mark { margin-top: -6px; }

nav { display: flex; gap: 32px; align-items: center; }
nav a {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gray-light); text-decoration: none; transition: color 0.3s;
  font-weight: 400; white-space: nowrap;
}
nav a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold) !important; padding: 10px 24px;
  color: var(--gold) !important; transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none; flex-shrink: 0;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold); transition: all 0.3s; }

/* ==========================================
   HERO
   — #hero ocupa 100% da largura (sem max-width)
   — .hero-inner centraliza o conteúdo
   ========================================== */
#hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;      /* deixa .hero-inner preencher altura */
  position: relative;
  overflow: hidden;
  background: var(--black);
}

/* fundo cobre toda a seção */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
    linear-gradient(180deg, #000 0%, #0A0A0A 100%);
}
.hero-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  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: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* inner: centraliza e define layout */
.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 80px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,168,76,0.3); padding: 8px 20px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
  animation: fadeIn 1s ease 0.2s both;
}
.hero-badge::before { content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.5px;
  animation: fadeUp 1s ease 0.4s both; margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  font-size: 12px; letter-spacing: 2px; color: var(--gray);
  text-transform: uppercase; margin-bottom: 44px;
  animation: fadeUp 1s ease 0.6s both; line-height: 2;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}

/* HERO IMAGEM */
.hero-image-wrap {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  align-self: flex-end;
}
.hero-image-bg { display: none !important; }

.hero-image-placeholder {
  width: 400px;
  height: 500px;
  overflow: hidden;
}
.hero-image-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
}

.hero-gold-line {
  position: absolute;
  left: -14px; bottom: 0; top: 50px;
  width: 2px; background: var(--gold); opacity: 0.4; z-index: 3;
}

/* limpa qualquer moldura residual */
.hero-image-wrap::before, .hero-image-wrap::after,
.hero-image-placeholder::before, .hero-image-placeholder::after {
  display: none !important; content: none !important;
}
.hero-image-wrap, .hero-image-placeholder {
  background: transparent !important; box-shadow: none !important; border: none !important;
}

/* ==========================================
   BOTÕES
   ========================================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--black);
  padding: 15px 32px; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600; text-decoration: none;
  font-family: 'Jost', sans-serif; transition: background 0.3s, transform 0.2s;
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  padding: 15px 32px; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none;
  font-family: 'Jost', sans-serif; font-weight: 400;
  transition: border-color 0.3s, color 0.3s; cursor: pointer; background: none; white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================
   SECTION BASE
   ========================================== */
section { padding: 100px 48px; }
.section-label {
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 58px); font-weight: 300; line-height: 1.1; margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.divider-gold { width: 60px; height: 1px; background: var(--gold); margin-bottom: 32px; }

/* ==========================================
   STATS
   ========================================== */
#stats {
  padding: 60px 48px;
  background: var(--black-mid);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1200px; margin: 0 auto; }
.stat-item { text-align: center; padding: 24px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(201,168,76,0.2);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 52px);
  font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gray); }

/* ==========================================
   SOBRE
   ========================================== */
#sobre { background: var(--black-soft); position: relative; overflow: hidden; }
#sobre::before {
  content: '"'; position: absolute; top: -20px; right: 48px;
  font-family: 'Cormorant Garamond', serif; font-size: 300px;
  color: rgba(201,168,76,0.03); line-height: 1; pointer-events: none;
}
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.sobre-image-wrap { position: relative; }
.sobre-image-frame {
  position: relative; width: 100%; aspect-ratio: 3/4;
  background: var(--black-card); border: 1px solid rgba(201,168,76,0.15); overflow: hidden;
}
.sobre-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.sobre-gold-corner {
  position: absolute; width: 60px; height: 60px;
  border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
  top: -12px; right: -12px;
}
.sobre-gold-corner-bl {
  position: absolute; width: 60px; height: 60px;
  border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold);
  bottom: -12px; left: -12px;
}
.sobre-oab-badge {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--gold); color: var(--black);
  padding: 14px 20px; font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; text-align: center; line-height: 1.4;
}
.sobre-text p { color: var(--gray-light); font-size: 15px; line-height: 1.9; margin-bottom: 20px; }
.sobre-text p strong { color: var(--gold); font-weight: 500; }
.sobre-signature {
  margin-top: 36px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 4px;
}
.sobre-signature .name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-style: italic; color: var(--gold); }
.sobre-signature .role { font-size: 10px; letter-spacing: 2.5px; color: var(--gray); text-transform: uppercase; }

/* ==========================================
   ÁREAS DE ATUAÇÃO
   ========================================== */
#areas { background: var(--black); position: relative; }
.areas-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.areas-header .section-label { justify-content: center; }
.areas-header .section-label::before { display: none; }
.areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(201,168,76,0.1);
  max-width: 1200px; margin: 0 auto;
  border: 1px solid rgba(201,168,76,0.1);
}
.area-card {
  background: var(--black-soft); padding: 48px 40px;
  position: relative; overflow: hidden; transition: background 0.4s; cursor: default;
}
.area-card:hover { background: var(--black-card); }
.area-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.area-card:hover::after { transform: scaleX(1); }
.area-icon {
  width: 52px; height: 52px; border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; transition: border-color 0.3s, background 0.3s;
}
.area-card:hover .area-icon { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.area-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.area-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.area-desc { font-size: 14px; line-height: 1.8; color: #bdbdbd; }
.area-number {
  position: absolute; top: 24px; right: 32px;
  font-family: 'Cormorant Garamond', serif; font-size: 60px;
  font-weight: 300; color: rgba(201,168,76,0.06); line-height: 1;
}

/* ==========================================
   PREVIDENCIÁRIO
   ========================================== */
#previdenciario {
  background: var(--black-mid);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.prev-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto;
}
.prev-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.prev-tag {
  border: 1px solid rgba(201,168,76,0.25); padding: 8px 18px;
  font-size: 11px; letter-spacing: 1.5px; color: var(--gold-light);
  text-transform: uppercase; transition: background 0.3s, border-color 0.3s; cursor: default;
}
.prev-tag:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.prev-items { display: flex; flex-direction: column; gap: 24px; }
.prev-item {
  display: flex; gap: 20px; padding: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.3); transition: border-color 0.3s;
}
.prev-item:hover { border-color: rgba(201,168,76,0.2); }
.prev-item-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: rgba(201,168,76,0.08); display: flex; align-items: center; justify-content: center;
}
.prev-item-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.prev-item-text strong { display: block; font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.prev-item-text p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ==========================================
   DIFERENCIAIS
   ========================================== */
#diferenciais { background: var(--black); position: relative; overflow: hidden; }
.dif-header { max-width: 600px; margin: 0 auto 64px; text-align: center; }
.dif-header .section-label { justify-content: center; }
.dif-header .section-label::before { display: none; }
.dif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1200px; margin: 0 auto; }
.dif-card {
  text-align: center; padding: 40px 24px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative; transition: border-color 0.4s, transform 0.4s;
}
.dif-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-6px); }
.dif-card-icon { width: 64px; height: 64px; margin: 0 auto 24px; }
.dif-card-icon-bg {
  width: 64px; height: 64px; border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
}
.dif-card-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.dif-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.dif-card p { font-size: 13px; color: #bdbdbd; line-height: 1.7; }

/* ==========================================
   CTA BANNER
   ========================================== */
#cta {
  padding: 80px 24px; background: var(--gold);
  text-align: center; position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.03) 20px, rgba(0,0,0,0.03) 40px);
}
.cta-content { position: relative; z-index: 1; }
#cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px); font-weight: 400;
  color: var(--black); margin-bottom: 16px; line-height: 1.1;
}
#cta p { font-size: 14px; color: rgba(0,0,0,0.6); margin-bottom: 36px; letter-spacing: 0.5px; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--black); color: var(--gold);
  padding: 18px 44px; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600; text-decoration: none;
  font-family: 'Jost', sans-serif; transition: transform 0.3s, background 0.3s;
  animation: pulse 2s infinite;
}
.btn-dark:hover { background: #111; transform: scale(1.03); }

/* ==========================================
   DEPOIMENTOS
   ========================================== */
#depoimentos { background: var(--black-soft); overflow: hidden; }
.dep-header { max-width: 600px; margin: 0 auto 64px; text-align: center; }
.dep-header .section-label { justify-content: center; }
.dep-header .section-label::before { display: none; }
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.dep-card {
  background: var(--black-card); border: 1px solid rgba(255,255,255,0.05);
  padding: 36px; position: relative; transition: border-color 0.3s;
}
.dep-card:hover { border-color: rgba(201,168,76,0.2); }
.dep-quote { font-family: 'Cormorant Garamond', serif; font-size: 60px; color: var(--gold); line-height: 0.6; margin-bottom: 20px; opacity: 0.4; }
.dep-text { font-size: 14px; line-height: 1.8; color: var(--gray-light); font-style: italic; margin-bottom: 28px; font-family: 'Cormorant Garamond', serif; }
.dep-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.dep-star { color: var(--gold); font-size: 13px; }
.dep-author strong { display: block; font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.dep-author span { font-size: 11px; color: var(--gold); letter-spacing: 1px; }

/* ==========================================
   RODAPÉ
   ========================================== */
footer { background: var(--black-mid); border-top: 1px solid rgba(201,168,76,0.15); }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px; align-items: start; padding: 64px 60px 48px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand .logo-mark img { width: 150px; height: auto; display: block; margin-bottom: 20px; }
.footer-brand p { max-width: 320px; line-height: 1.9; margin-bottom: 24px; color: #cfcfcf; font-size: 14px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); text-decoration: none; transition: background 0.3s, border-color 0.3s;
}
.footer-social a:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.footer-col h4 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 13px; color: var(--gray); }
.footer-col ul a { color: var(--gray); text-decoration: none; transition: color 0.3s; font-size: 13px; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: var(--gray); line-height: 1.5; }
.footer-contact-item a { color: var(--gray); text-decoration: none; transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 20px 60px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 1px; margin-bottom: 4px; }
.footer-bottom a { color: rgba(201,168,76,0.4); text-decoration: none; }

/* ==========================================
   WHATSAPP FIXO
   ========================================== */
.whatsapp-fixed {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.whatsapp-bubble {
  background: rgba(0,0,0,0.8); border: 1px solid rgba(201,168,76,0.3);
  padding: 10px 18px; font-size: 11px; letter-spacing: 1px; color: var(--gold);
  backdrop-filter: blur(8px); opacity: 0; transform: translateX(20px);
  transition: opacity 0.3s, transform 0.3s; white-space: nowrap; pointer-events: none;
}
.whatsapp-fixed:hover .whatsapp-bubble { opacity: 1; transform: translateX(0); }
.whatsapp-btn {
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; animation: pulse 2.5s infinite; transition: transform 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }

/* ==========================================
   MENU MOBILE
   ========================================== */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.97); z-index: 1100;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 36px; backdrop-filter: blur(10px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 300; color: var(--white); text-decoration: none;
  letter-spacing: 2px; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute; top: 28px; right: 32px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-menu-close span { display: block; width: 24px; height: 1.5px; background: var(--gold); margin: 5px 0; }
.mobile-menu-close span:first-child { transform: rotate(45deg) translate(4px, 4px); }
.mobile-menu-close span:last-child { transform: rotate(-45deg) translate(4px, -4px); }

/* ==========================================
   RESPONSIVO — TABLET (max 1100px)
   ========================================== */
@media (max-width: 1100px) {
  header { padding: 16px 32px; }
  header.scrolled { padding: 12px 32px; }
  nav { gap: 20px; }
  nav a { font-size: 10px; letter-spacing: 2px; }

  .hero-inner {
    padding: 120px 40px 80px;
    gap: 40px;
  }
  .hero-content { max-width: 460px; }
  .hero-image-placeholder { width: 300px; height: 380px; }

  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-image-wrap { max-width: 400px; margin: 0 auto; }
  .sobre-oab-badge { right: 0; }

  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dep-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid .dep-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .prev-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 20px 40px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}

/* ==========================================
   RESPONSIVO — MOBILE (max 768px)
   ========================================== */
@media (max-width: 768px) {
  header { padding: 14px 20px; }
  header.scrolled { padding: 12px 20px; }
  nav { display: none; }
  .hamburger { display: flex; }

  /* HERO MOBILE — empilha vertical */
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 24px 60px;
    gap: 0;
  }
  .hero-content { max-width: 100%; }
  .hero-badge { font-size: 9px; letter-spacing: 2px; padding: 7px 14px; margin-bottom: 28px; }
  .hero-title { font-size: clamp(36px, 10vw, 52px); margin-bottom: 20px; }
  .hero-subtitle { font-size: 11px; letter-spacing: 1.5px; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 16px 24px; }

  .hero-image-wrap {
    align-self: center;
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }
  .hero-image-placeholder {
    width: 100%; max-width: 300px;
    height: auto; aspect-ratio: 3/4;
  }
  .hero-gold-line { display: none; }

  /* SECTIONS */
  section { padding: 64px 24px; }
  #stats { padding: 48px 24px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .sobre-grid { gap: 40px; }
  .sobre-image-wrap { max-width: 100%; }
  .sobre-gold-corner, .sobre-gold-corner-bl { display: none; }
  .sobre-oab-badge { position: static; display: inline-block; margin-top: 16px; }

  .areas-header { margin-bottom: 40px; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-card { padding: 36px 28px; }

  .prev-grid { gap: 40px; }
  .prev-tags { gap: 8px; }
  .prev-tag { font-size: 10px; padding: 7px 14px; }

  .dif-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .dif-card { padding: 28px 16px; }
  .dif-card h3 { font-size: 17px; }
  .dif-card p { font-size: 12px; }

  #cta { padding: 60px 24px; }
  .btn-dark { padding: 16px 28px; font-size: 10px; letter-spacing: 2px; gap: 10px; }

  .dep-grid { grid-template-columns: 1fr; }
  .dep-grid .dep-card:last-child { grid-column: auto; max-width: 100%; }
  .dep-card { padding: 28px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 36px; }
  .footer-brand { grid-column: auto; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { padding: 20px 24px; }

  .whatsapp-fixed { bottom: 20px; right: 20px; }
  .whatsapp-btn { width: 54px; height: 54px; }
  .whatsapp-btn svg { width: 26px; height: 26px; }
}

/* ==========================================
   RESPONSIVO — MOBILE PEQUENO (max 480px)
   ========================================== */
@media (max-width: 480px) {
  header { padding: 12px 16px; }
  .hero-inner { padding: 100px 16px 48px; }
  section { padding: 56px 16px; }
  #stats { padding: 40px 16px; }
  .hero-title { font-size: clamp(32px, 9vw, 44px); }
  .dif-grid { grid-template-columns: 1fr; }
  .dif-card { padding: 28px 20px; }
  .footer-grid { padding: 40px 16px 32px; }
  .footer-bottom { padding: 16px; }
  .area-card { padding: 28px 20px; }
  .dep-card { padding: 24px 20px; }
  .prev-item { padding: 18px; gap: 14px; }
}
