/* ============================================================
   TORMAN ROCHA ADVOGADOS — style.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; }

:root {
  --navy:        #0d2240;
  --blue:        #1a3f6f;
  --blue-mid:    #2455a4;
  --blue-light:  #3a6bbf;
  --gold:        #b8943f;
  --gold-light:  #d4af6a;
  --white:       #ffffff;
  --off-white:   #f7f5f0;
  --gray:        #8a8a8a;
  --text:        #1a1a1a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 80px;
  background: rgba(13,34,64,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,148,63,0.2);
  transition: height 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled { height: 64px; box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

.nav-logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.nav-logo-icon { height: 42px; width: auto; display: block; object-fit: contain; }
.nav-logo-divider { width: 1px; height: 28px; background: rgba(184,148,63,0.4); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text .nl-name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--white); letter-spacing: 1px;
}
.nav-logo-text .nl-sub {
  font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light);
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.3s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold-light); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent !important; border: 1px solid var(--gold);
  color: var(--gold-light) !important; padding: 0.45rem 1.3rem;
  border-radius: 1px; transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav-cta::after { display: none !important; }

/* ── HERO ── */
.hero {
  height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  background: linear-gradient(160deg, #081626 0%, #0d2240 45%, #1a3f6f 80%, #2455a4 100%);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 4rem 0 5rem;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.hero-headline {
  font-family: var(--font-display); font-size: clamp(3rem, 4.5vw, 4.8rem);
  font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem;
}
.hero-headline .line-italic {
  font-style: italic; color: var(--gold-light); font-weight: 400; display: block;
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  line-height: 1.85; max-width: 480px; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1.5rem; align-items: center; }

.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 1.1rem 2.8rem; border: none; border-radius: 2px;
  font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; transition: all 0.35s; display: inline-block;
  box-shadow: 0 4px 16px rgba(184,148,63,0.25);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(184,148,63,0.4);
}
.btn-ghost {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35); padding: 0.95rem 2.4rem;
  border-radius: 2px; transition: all 0.35s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-right { position: relative; overflow: hidden; }
.hero-right img.kaon-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, #0d2240 0%, rgba(13,34,64,0.2) 30%),
              linear-gradient(to top, #081626 0%, transparent 25%);
  z-index: 1;
}
.hero-caption { position: absolute; bottom: 1.5rem; left: 2rem; z-index: 2; }
.hero-caption .name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--white); display: block; margin-bottom: 0.1rem;
}
.hero-caption .role {
  font-size: 0.58rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light);
}
.scroll-indicator {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.3); font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.2); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .2; } 50% { opacity: .7; } }

/* ── SECTION BASE ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section-tag {
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 300; line-height: 1.2; color: var(--navy);
}
.section-title em { font-style: italic; color: var(--blue-mid); }

/* ── SOBRE ── */
.sobre { padding: 7rem 0; background: var(--off-white); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.sobre-text p { font-size: 1.08rem; color: #555; line-height: 1.9; margin-bottom: 1.4rem; font-weight: 300; }
.sobre-text p strong { color: var(--navy); font-weight: 600; }
.sobre-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.stat-item { padding: 1.5rem; border-left: 2px solid var(--gold); }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--navy); display: block; }
.stat-label { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }
.sobre-visual { position: relative; }
.sobre-bg-box {
  position: absolute; top: -20px; right: -20px; width: 80%; height: 80%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%); z-index: 0;
}
.sobre-img-wrap { position: relative; z-index: 1; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.sobre-img-wrap img { width: 100%; display: block; }
.sobre-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--gold); color: var(--navy); padding: 1.2rem 1.8rem; z-index: 2;
}
.sobre-badge .num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; display: block; line-height: 1; }
.sobre-badge .label { font-size: 0.72rem; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }

/* ── SÓCIO ── */
.socio { padding: 7rem 0; background: var(--white); }
.socio-grid { display: grid; grid-template-columns: 400px 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.socio-photo-wrap { position: relative; }
.socio-photo-wrap img { width: 100%; display: block; box-shadow: 0 24px 60px rgba(0,0,0,0.12); }
.socio-photo-wrap::before {
  content: ''; position: absolute; top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid var(--gold); z-index: -1;
}
.socio-oab {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--navy); color: var(--gold-light);
  padding: 0.4rem 0.8rem; font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
}
.socio-name {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.4rem; line-height: 1.15;
  white-space: nowrap;
}
.socio-role { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; display: block; }
.socio-bio { font-size: 1rem; color: #555; line-height: 1.9; font-weight: 300; }
.socio-bio + .socio-bio { margin-top: 1rem; }
.socio-bio strong { color: var(--navy); font-weight: 600; }
.socio-credentials { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.5rem; }
.cred-tag {
  background: var(--off-white); border: 1px solid #e0ddd5;
  padding: 0.45rem 1.1rem; font-size: 0.75rem; letter-spacing: 0.8px; color: var(--navy);
}

/* ── ATUAÇÃO ── */
.atuacao {
  padding: 7rem 0;
  background: linear-gradient(160deg, #081626 0%, #0d2240 45%, #1a3f6f 80%, #2455a4 100%);
  color: var(--white);
}
.atuacao .section-title { color: var(--white); }
.atuacao-header { margin-bottom: 4rem; }
.atuacao-header p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 500px; margin-top: 1rem; line-height: 1.8; font-weight: 300; }
.areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
  gap: 1px; background: rgba(255,255,255,0.07);
}
.area-item {
  background: rgba(8,22,38,0.7); padding: 2.8rem 2.2rem;
  position: relative; transition: background 0.4s; overflow: hidden;
}
.area-item:hover { background: rgba(36,85,164,0.35); }
.area-num {
  font-family: var(--font-display); font-size: 3.2rem; font-weight: 700;
  color: rgba(184,148,63,0.15); line-height: 1; margin-bottom: 1rem; transition: color 0.4s;
}
.area-item:hover .area-num { color: rgba(184,148,63,0.25); }
.area-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.8rem; line-height: 1.3; }
.area-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.75; font-weight: 300; }
.area-subareas { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag {
  font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid rgba(184,148,63,0.4); color: var(--gold-light); padding: 0.3rem 0.7rem;
  background: rgba(184,148,63,0.08);
}
.area-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.area-item:hover .area-line { transform: scaleX(1); }

/* ── DIFERENCIAIS ── */
.diferenciais { padding: 7rem 0; background: var(--off-white); }
.dif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; }
.dif-item {
  background: var(--white); padding: 2.5rem 2rem;
  border-bottom: 3px solid transparent; transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.dif-item:hover { border-bottom-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.dif-icon { width: 40px; height: 40px; margin-bottom: 1.4rem; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.dif-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.dif-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 0.8rem; font-weight: 600; }
.dif-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.75; font-weight: 300; }

/* ── PRESENÇA ── */
.presenca { padding: 4.5rem 0; background: var(--navy); color: var(--white); }
.presenca-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.presenca-text h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; color: var(--white); }
.presenca-text p { font-size: 0.92rem; color: rgba(255,255,255,0.5); margin-top: 0.4rem; font-weight: 300; }
.presenca-items { display: flex; gap: 3rem; align-items: center; }
.presenca-item { text-align: center; }
.presenca-item .city { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-light); display: block; }
.presenca-item .state { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.presenca-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ── CONTATO ── */
.contato { padding: 7rem 0; background: var(--white); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; margin-top: 4rem; }
.contato-info h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--navy); font-weight: 300; margin-bottom: 1.2rem; }
.contato-info p { font-size: 1rem; color: #666; line-height: 1.85; margin-bottom: 2.5rem; font-weight: 300; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1rem 1.2rem; background: var(--off-white);
  border-left: 2px solid var(--gold); text-decoration: none; color: var(--text); transition: all 0.3s;
}
.contact-method:hover { background: var(--navy); color: var(--white); padding-left: 1.8rem; }
.cm-icon { width: 20px; display: flex; align-items: center; justify-content: center; }
.cm-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-method:hover .cm-icon svg { stroke: var(--gold-light); }
.cm-label { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }
.contact-method:hover .cm-label { color: rgba(255,255,255,0.5); }
.cm-value { font-size: 0.95rem; font-weight: 500; }

.form-card { background: var(--off-white); padding: 3rem; border-top: 3px solid var(--gold); }
.form-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 2rem; font-weight: 400; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem; border: 1px solid #ddd;
  background: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: border-color 0.3s; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-mid); }
.form-group textarea { min-height: 96px; resize: vertical; }
.form-full { grid-column: 1 / -1; }
.form-submit {
  margin-top: 1.5rem; width: 100%;
  background: var(--navy); color: var(--white); padding: 1.1rem; border: none;
  font-family: var(--font-body); font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  cursor: pointer; transition: background 0.3s;
}
.form-submit:hover { background: var(--blue-mid); }

/* ── FOOTER ── */
footer { background: #060f1e; color: rgba(255,255,255,0.5); padding: 4rem 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 2rem;
}
.footer-brand-logo { height: 30px; display: block; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; color: var(--gold-light); margin-bottom: 1.2rem; font-weight: 400; letter-spacing: 0.5px; }
.footer-col a, .footer-col p { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 0.55rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: center; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ── FADE UP ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 1001;
  flex-direction: column; justify-content: space-between;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px; background: var(--white);
  transition: all 0.3s ease; border-radius: 1px;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── RESPONSIVE ── */

/* TABLET (max 1024px) */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
  .hero-left { padding: 7rem 3rem 4rem; }
  .hero-right { min-height: 50vw; }
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 3rem; }
  .socio-grid { grid-template-columns: 1fr; gap: 3rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  nav { padding: 0 2rem; }
  .nav-links { gap: 1.5rem; }
}

/* MOBILE (max 768px) */
@media (max-width: 768px) {

  /* ── Hamburger visível ── */
  .nav-hamburger { display: flex; }

  /* ── Menu mobile fullscreen ── */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,16,30,0.98);
    backdrop-filter: blur(16px);
    justify-content: center; align-items: center;
    gap: 0; padding: 0;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1000;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links li { list-style: none; width: 100%; text-align: center; }
  .nav-links a {
    display: block; padding: 1.4rem 2rem;
    font-size: 1rem !important; letter-spacing: 2.5px !important;
    color: rgba(255,255,255,0.7) !important;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s;
  }
  .nav-links a:hover, .nav-links a:active {
    color: var(--gold-light) !important;
    background: rgba(184,148,63,0.08);
  }
  .nav-links a::after { display: none !important; }
  .nav-cta {
    margin-top: 1rem !important; border: 1px solid var(--gold) !important;
    display: inline-block !important; width: auto !important;
    padding: 0.8rem 2.5rem !important;
  }

  /* ── Navbar ── */
  nav { padding: 0 1.5rem; height: 70px; }
  nav.scrolled { height: 60px; }
  .nav-logo-icon { height: 34px; }
  .nav-logo-divider { height: 22px; }
  .nav-logo-text .nl-name { font-size: 0.88rem; }
  .nav-logo-text .nl-sub { font-size: 0.52rem; }

  /* ── Hero mobile ── */
  .hero {
    grid-template-columns: 1fr;
    height: auto; min-height: auto;
  }
  .hero-left {
    padding: 6rem 1.8rem 3rem;
    min-height: 55vh;
    display: flex; flex-direction: column;
    justify-content: center;
  }
  .hero-eyebrow { font-size: 0.68rem; margin-bottom: 1.2rem; letter-spacing: 2.5px; }
  .hero-headline { font-size: 2.6rem !important; margin-bottom: 1rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 1rem; align-items: stretch; }
  .btn-primary {
    text-align: center; padding: 1.1rem 2rem;
    font-size: 0.85rem; width: 100%;
  }
  .btn-ghost {
    text-align: center; padding: 0.95rem 2rem;
    font-size: 0.82rem; width: 100%;
  }
  .hero-right { min-height: 55vw; max-height: 350px; }
  .hero-caption { bottom: 1.2rem; left: 1.5rem; }
  .hero-caption .name { font-size: 1.25rem; }
  .hero-caption .role { font-size: 0.62rem; }

  /* ── Seções gerais ── */
  .container { padding: 0 1.5rem; }
  .section-tag { font-size: 0.72rem; margin-bottom: 0.8rem; }
  .section-title { font-size: 2rem !important; }

  /* ── Sobre ── */
  .sobre { padding: 4.5rem 0; }
  .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-text p { font-size: 1.05rem; }
  .sobre-stats { grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.72rem; }
  .sobre-bg-box { top: -12px; right: -12px; }
  .sobre-badge { bottom: -1rem; left: -0.5rem; padding: 0.9rem 1.2rem; }
  .sobre-badge .num { font-size: 1.4rem; }

  /* ── Sócio ── */
  .socio { padding: 4.5rem 0; }
  .socio-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2rem; }
  .socio-photo-wrap::before { top: -8px; left: -8px; right: 8px; bottom: 8px; }
  .socio-name { font-size: 2.2rem !important; white-space: normal !important; }
  .socio-role { font-size: 0.72rem; margin-bottom: 1.5rem; }
  .socio-bio { font-size: 1rem; }
  .socio-credentials { gap: 0.5rem; margin-top: 2rem; }
  .cred-tag { font-size: 0.72rem; padding: 0.4rem 0.9rem; }

  /* ── Atuação ── */
  .atuacao { padding: 4.5rem 0; }
  .atuacao-header { margin-bottom: 2.5rem; }
  .atuacao-header p { font-size: 1rem; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-item { padding: 2.2rem 1.5rem; }
  .area-num { font-size: 2.4rem; margin-bottom: 0.6rem; }
  .area-title { font-size: 1.4rem; }
  .area-desc { font-size: 0.95rem; }
  .area-tag { font-size: 0.68rem; }

  /* ── Diferenciais ── */
  .diferenciais { padding: 4.5rem 0; }
  .dif-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
  .dif-item { padding: 2rem 1.5rem; }
  .dif-title { font-size: 1.25rem; }
  .dif-desc { font-size: 0.92rem; }

  /* ── Presença ── */
  .presenca { padding: 3.5rem 0; }
  .presenca-inner { flex-direction: column; text-align: center; gap: 2rem; }
  .presenca-text h3 { font-size: 1.6rem; }
  .presenca-text p { font-size: 0.92rem; }
  .presenca-items { flex-direction: column; gap: 1.5rem; }
  .presenca-item .city { font-size: 1.1rem; }
  .presenca-item .state { font-size: 0.68rem; }
  .presenca-divider { width: 40px; height: 1px; }

  /* ── Contato ── */
  .contato { padding: 4.5rem 0; }
  .contato-grid { grid-template-columns: 1fr; gap: 3rem; margin-top: 2.5rem; }
  .contato-info h3 { font-size: 1.6rem; }
  .contato-info p { font-size: 1rem; margin-bottom: 1.8rem; }
  .contact-method { padding: 1rem; }
  .cm-label { font-size: 0.68rem; }
  .cm-value { font-size: 0.95rem; }
  .form-card { padding: 2rem 1.5rem; }
  .form-card h3 { font-size: 1.35rem; margin-bottom: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
  .form-group label { font-size: 0.68rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 0.9rem 1rem; font-size: 1rem; }
  .form-submit { padding: 1.1rem; font-size: 0.82rem; }

  /* ── Footer ── */
  footer { padding: 3rem 0 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2rem; }
  .footer-brand-logo { height: 24px; }
  .footer-brand p { max-width: 100%; font-size: 0.88rem; }
  .footer-col h4 { font-size: 0.95rem; margin-bottom: 0.8rem; }
  .footer-col a, .footer-col p { font-size: 0.88rem; }
  .footer-bottom {
    flex-direction: column; gap: 0.3rem;
    text-align: center; font-size: 0.75rem;
  }
}

/* MOBILE SMALL (max 380px) */
@media (max-width: 380px) {
  .hero-left { padding: 5.5rem 1.2rem 2.5rem; }
  .hero-headline { font-size: 2.2rem !important; }
  .hero-sub { font-size: 0.92rem; }
  .section-title { font-size: 1.8rem !important; }
  .socio-name { font-size: 1.9rem !important; }
  .sobre-stats { grid-template-columns: 1fr; }
  .container { padding: 0 1.2rem; }
  .area-item { padding: 1.6rem 1.2rem; }
  .form-card { padding: 1.5rem 1.2rem; }
  .sobre-text p, .socio-bio, .area-desc, .dif-desc, .contato-info p { font-size: 0.92rem; }
}
