/* ============================================================
   SCHERRER CARNEIRO ADVOCACIA — STYLESHEET
   ============================================================ */

:root {
  --green:      #063831;
  --navy:       #1A2E4A;
  --accent:     #b1c5cd;
  --gold:       #F39C12;
  --white:      #ffffff;
  --light:      #F5F5F5;
  --text:       #333333;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 28px rgba(0,0,0,0.13);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.18);
  --tr:         all 0.3s ease;
  --sans:       'Montserrat', sans-serif;
  --serif:      'Cormorant Garamond', serif;
  --radius:     4px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body { font-family: var(--sans); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--tr); }
ul   { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
p  { font-size: 0.97rem; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5.5rem 0; }
.bg-light  { background: var(--light); }
.bg-dark   { background: var(--green); }
.bg-navy   { background: var(--navy); }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.sec-head        { text-align: center; margin-bottom: 3.5rem; }
.sec-head h2     { color: var(--green); margin-bottom: .6rem; }
.sec-head.light h2 { color: var(--white); }
.sec-head p      { color: #666; max-width: 580px; margin: .6rem auto 0; font-size: 1rem; }
.sec-head.light p  { color: var(--accent); }

.divider       { width: 52px; height: 3px; background: var(--green); margin: .7rem auto; border-radius: 2px; }
.divider.gold  { background: var(--gold); }
.divider.white { background: var(--white); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .78rem 2rem; border-radius: var(--radius);
  font-size: .85rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; border: 2px solid transparent;
  transition: var(--tr); white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-gold:hover { background: #d68910; border-color: #d68910; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(243,156,18,.35); }

.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: var(--white); color: var(--green); }

.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: transparent; color: var(--green); }

.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* ── HEADER ──────────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,.18);
  transition: var(--tr);
}
#header.scrolled { background: rgba(6,56,49,.97); backdrop-filter: blur(12px); }

.nav-wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 82px;
}

.logo img { height: 54px; width: auto; }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: .1rem;
}
.nav-links > li > a {
  color: var(--accent); font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .5rem .8rem; border-radius: var(--radius);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); background: rgba(255,255,255,.09); }

/* Dropdown */
.has-drop { position: relative; }
.drop-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--green); min-width: 230px;
  box-shadow: var(--shadow-md); border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius); z-index: 200;
}
.has-drop:hover .drop-menu { display: block; }
.drop-menu li a {
  display: block; padding: .7rem 1.2rem; color: var(--accent);
  font-size: .8rem; font-weight: 500; letter-spacing: .04em;
  border-bottom: 1px solid rgba(177,197,205,.1);
  transition: var(--tr);
}
.drop-menu li a:hover { color: var(--white); padding-left: 1.5rem; }

/* Social in nav */
.nav-social {
  display: flex; gap: .4rem; margin-left: .6rem;
  padding-left: .8rem; border-left: 1px solid rgba(177,197,205,.25);
}
.nav-social a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  color: var(--accent); transition: var(--tr);
}
.nav-social a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-social svg { width: 16px; height: 16px; fill: currentColor; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--tr);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 55%, #0d1f35 100%);
  display: flex; align-items: center;
  padding: 6rem 1.5rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: repeating-linear-gradient(
    45deg, var(--white) 0, var(--white) 1px, transparent 0, transparent 50%
  );
  background-size: 28px 28px;
}
.hero-content { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }

.hero-badge {
  display: inline-block; background: rgba(243,156,18,.15); color: var(--gold);
  border: 1px solid rgba(243,156,18,.35); border-radius: 30px;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .4rem 1.2rem; margin-bottom: 1.75rem;
}
.hero-content h1 { color: var(--white); font-weight: 400; margin-bottom: 1rem; }
.hero-content h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  color: var(--accent); font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 1.5rem;
}
.hero-desc {
  color: rgba(255,255,255,.75); font-size: 1rem;
  max-width: 600px; margin: 0 auto 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 3rem; justify-content: center;
  margin-top: 4rem; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold); font-weight: 700; line-height: 1;
}
.stat-label { color: var(--accent); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-top: .3rem; }

/* ── SOBRE ───────────────────────────────────────────────────── */
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.75rem;
}
.vmv-card {
  background: var(--white); border: 1px solid #e2e8ec;
  border-radius: var(--radius); padding: 2.5rem 2rem;
  text-align: center; transition: var(--tr);
  border-top: 4px solid transparent;
}
.vmv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-top-color: var(--green); }
.vmv-card.featured { background: var(--green); border-top-color: var(--gold); }
.vmv-card.featured h3 { color: var(--gold); }
.vmv-card.featured p, .vmv-card.featured ul li { color: var(--accent); }

.vmv-icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(6,56,49,.08); margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.vmv-card.featured .vmv-icon { background: rgba(255,255,255,.1); }
.vmv-icon svg { width: 30px; height: 30px; fill: var(--green); }
.vmv-card.featured .vmv-icon svg { fill: var(--gold); }

.vmv-card h3 { color: var(--green); margin-bottom: 1rem; }
.vmv-card p  { color: #666; font-size: .93rem; line-height: 1.75; }

.vmv-card ul { text-align: left; display: inline-block; margin-top: .25rem; }
.vmv-card ul li {
  padding: .38rem 0 .38rem 1.4rem; position: relative;
  color: #666; font-size: .9rem;
}
.vmv-card ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}

/* ── AREAS OVERVIEW ──────────────────────────────────────────── */
.areas-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.area-ov-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem 2.25rem; box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--green); transition: var(--tr);
  display: flex; flex-direction: column;
}
.area-ov-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-left-color: var(--gold); }

.area-ov-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.area-ov-card h3 { color: var(--green); margin-bottom: 1.25rem; }
.area-ov-card ul  { flex: 1; margin-bottom: 2rem; }
.area-ov-card ul li {
  padding: .42rem 0 .42rem 1.3rem; position: relative;
  color: #555; font-size: .88rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.area-ov-card ul li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--gold); font-size: 1.2rem; line-height: 1.1; font-weight: 700;
}

/* ── DIFERENCIAIS ────────────────────────────────────────────── */
.dif-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.dif-card {
  border: 1px solid rgba(177,197,205,.2); border-radius: var(--radius);
  padding: 2.25rem 2rem; text-align: center; transition: var(--tr);
}
.dif-card:hover { border-color: var(--gold); background: rgba(255,255,255,.04); }
.dif-num {
  font-family: var(--serif); font-size: 3.5rem; color: rgba(243,156,18,.2);
  line-height: 1; margin-bottom: .5rem; font-weight: 700;
}
.dif-card h3 { color: var(--gold); margin-bottom: .9rem; font-size: 1.25rem; }
.dif-card p  { color: var(--accent); font-size: .9rem; line-height: 1.75; }

/* ── PARA QUEM ───────────────────────────────────────────────── */
.pq-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.pq-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.25rem 2rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--tr);
  display: flex; flex-direction: column;
}
.pq-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pq-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(6,56,49,.07); margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.pq-icon svg { width: 34px; height: 34px; fill: var(--green); }
.pq-card h3 { color: var(--green); margin-bottom: .85rem; font-size: 1.2rem; }
.pq-card p  { color: #666; font-size: .88rem; line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }

/* ── ARTIGOS ─────────────────────────────────────────────────── */
.artigos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.artigo-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--tr);
}
.artigo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.artigo-thumb {
  height: 190px;
  background: linear-gradient(135deg, var(--green), var(--navy));
  display: flex; align-items: center; justify-content: center;
}
.artigo-thumb span {
  font-family: var(--serif); font-size: 1.2rem; letter-spacing: .2em;
  color: rgba(255,255,255,.2); text-transform: uppercase;
}
.artigo-body { padding: 1.5rem; }
.artigo-tag {
  display: inline-block; background: rgba(6,56,49,.1); color: var(--green);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .2rem .6rem; border-radius: 2px;
  margin-bottom: .75rem;
}
.artigo-body h3 { color: var(--green); font-size: 1.05rem; margin-bottom: .5rem; }
.artigo-body p  { color: #777; font-size: .85rem; margin-bottom: 1rem; }
.artigo-link { color: var(--gold); font-size: .82rem; font-weight: 700; }
.artigo-link:hover { color: var(--green); }

.artigos-empty {
  text-align: center; padding: 4rem 2rem; color: var(--accent);
}
.artigos-empty p { font-size: 1rem; margin-top: .5rem; }

/* ── CONTATO ─────────────────────────────────────────────────── */
.contato-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3.5rem; margin-bottom: 3rem; }

.contato-info h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 1.75rem; }
.info-item { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.4rem; }
.info-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 50%;
  background: rgba(243,156,18,.15); border: 1px solid rgba(243,156,18,.3);
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.info-text strong { display: block; color: var(--white); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .2rem; }
.info-text a, .info-text span { color: var(--accent); font-size: .93rem; }
.info-text a:hover { color: var(--white); }

.form-wrap { background: rgba(255,255,255,.05); border: 1px solid rgba(177,197,205,.1); border-radius: var(--radius); padding: 2.5rem; }
.form-wrap h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { color: var(--accent); font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(177,197,205,.2);
  border-radius: var(--radius); color: var(--white);
  font-family: var(--sans); font-size: .9rem; transition: var(--tr);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(177,197,205,.45); }
.form-group select option { background: var(--green); color: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,.1);
}
.form-group textarea { height: 130px; resize: vertical; }

.mapa-wrap {
  border-radius: var(--radius); overflow: hidden;
  height: 320px; border: 1px solid rgba(177,197,205,.1);
}
.mapa-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 4rem 0 1.5rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; margin-bottom: 2rem;
  border-bottom: 1px solid rgba(177,197,205,.12);
}
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p { color: var(--accent); font-size: .87rem; line-height: 1.7; max-width: 270px; margin-bottom: 1.5rem; }
.footer-social-row { display: flex; gap: .6rem; }
.footer-social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(177,197,205,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); transition: var(--tr);
}
.footer-social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-social-row svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  color: var(--white); font-family: var(--sans); font-size: .78rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1.25rem; padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold); display: inline-block;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { color: var(--accent); font-size: .875rem; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { color: rgba(177,197,205,.5); font-size: .77rem; }

/* ── FLOATING BUTTONS ─────────────────────────────────────────── */
.floating-btns {
  position: fixed; bottom: 1.75rem; right: 1.5rem;
  display: flex; flex-direction: column; gap: .65rem; z-index: 999;
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.28); transition: var(--tr);
  position: relative;
}
.float-btn:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.35); }
.float-btn svg { width: 26px; height: 26px; fill: var(--white); }

.float-btn.wa { background: #25D366; }
.float-btn.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-btn.li { background: #0077B5; }

.float-tooltip {
  position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.75); color: var(--white); font-size: .75rem;
  padding: .3rem .7rem; border-radius: 3px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--tr);
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ── AREAS PAGE ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green), var(--navy));
  padding: 9rem 1.5rem 4rem; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: var(--accent); font-size: 1.05rem; }

.areas-nav {
  background: var(--white); border-bottom: 3px solid var(--green);
  position: sticky; top: 82px; z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,.07);
}
.areas-nav-inner {
  display: flex; max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
}
.anav-btn {
  flex: 1; padding: 1.2rem 1rem; background: none; border: none;
  font-size: .82rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: #888; transition: var(--tr);
  border-bottom: 3px solid transparent; margin-bottom: -3px;
}
.anav-btn:hover { color: var(--green); }
.anav-btn.active { color: var(--green); border-bottom-color: var(--gold); }

.area-section { padding: 4.5rem 0; border-bottom: 1px solid #e8edf0; }
.area-section:last-child { border-bottom: none; }
.area-sec-head { margin-bottom: 2.5rem; }
.area-sec-head h2 { color: var(--green); margin-bottom: .4rem; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.area-sec-head p  { color: #777; }

.sub-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.sub-card {
  background: var(--white); border: 1px solid #e8edf0;
  border-left: 5px solid var(--green); border-radius: var(--radius);
  padding: 2rem 1.75rem; transition: var(--tr);
  display: flex; flex-direction: column;
}
.sub-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--gold); }
.sub-card h4 { color: var(--green); font-size: 1.05rem; font-weight: 700; margin-bottom: .75rem; font-family: var(--sans); }
.sub-card p  { color: #666; font-size: .88rem; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.sub-card .btn { font-size: .75rem; padding: .55rem 1.1rem; align-self: flex-start; }

.sub-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.sub-list-item {
  background: var(--light); border-radius: var(--radius); padding: 1.5rem;
  border-top: 3px solid var(--green);
}
.sub-list-item h4 { color: var(--green); font-family: var(--sans); font-size: .95rem; font-weight: 700; margin-bottom: .6rem; }
.sub-list-item ul li {
  font-size: .86rem; color: #555; padding: .25rem 0 .25rem 1rem;
  position: relative; border-bottom: 1px solid rgba(0,0,0,.05);
}
.sub-list-item ul li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--green), var(--navy));
  padding: 4rem 1.5rem; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: var(--accent); margin-bottom: 2rem; font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sobre-grid    { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .dif-grid      { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pq-grid       { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .areas-cards   { grid-template-columns: 1fr; }
  .artigos-grid  { grid-template-columns: 1fr 1fr; }
  .contato-wrap  { grid-template-columns: 1fr; }
  .sub-areas     { grid-template-columns: 1fr; }
  .sub-list      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed;
    top: 82px; left: 0; right: 0; bottom: 0;
    background: var(--green); flex-direction: column;
    padding: 1.5rem; overflow-y: auto;
    align-items: stretch; gap: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,.3);
  }
  .nav-links.open { display: flex; }
  .nav-links > li { border-bottom: 1px solid rgba(177,197,205,.1); }
  .nav-links > li > a { display: block; padding: 1rem .75rem; font-size: .9rem; }
  .drop-menu { position: static; box-shadow: none; border-top: none; border-left: 3px solid var(--gold); margin: 0 0 .5rem 1rem; background: transparent; display: block !important; }
  .drop-menu li a { color: rgba(177,197,205,.7); font-size: .82rem; }
  .nav-social { flex-direction: row; justify-content: flex-start; border-left: none; border-top: 1px solid rgba(177,197,205,.1); margin-left: 0; padding: 1rem .75rem; }

  /* Sections */
  .section { padding: 3.5rem 0; }
  .hero-stats { gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .artigos-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .areas-nav { position: static; }
  .anav-btn { font-size: .75rem; padding: 1rem .5rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .section { padding: 2.75rem 0; }
  .floating-btns { bottom: 1.25rem; right: 1rem; }
  .float-btn { width: 48px; height: 48px; }
  .float-btn svg { width: 22px; height: 22px; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .form-wrap { padding: 1.75rem 1.25rem; }
}
