/* =============================================================
   RODRIGO PINTO ADVOCACIA — Folha de Estilos Principal
   ============================================================= */

/* ===== VARIÁVEIS ===== */
:root {
    --bg:          #0a1628;
    --bg-2:        #0d1b2a;
    --navy:        #112240;
    --navy-light:  #1d3461;
    --gold:        #c9a84c;
    --gold-light:  #e0c46a;
    --gold-dark:   #a07830;
    --white:       #ffffff;
    --off-white:   #f5f0e8;
    --text:        #bdc8da;
    --text-muted:  #7a8fa6;
    --border:      rgba(201, 168, 76, 0.18);
    --border-dim:  rgba(201, 168, 76, 0.08);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-ui:      'Raleway', system-ui, sans-serif;
    --font-body:    'Lato', system-ui, sans-serif;

    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --shadow:      0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.12);
    --max-w:       1200px;
    --pad-section: 110px 0;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; }

::selection { background: rgba(201, 168, 76, 0.85); color: #0a1628; }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

h1, h2, h3 { text-wrap: balance; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 34px;
    border-radius: 2px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    transition: all 0.35s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s var(--ease);
    pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0d1b2a;
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.25);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: 0 8px 36px rgba(201, 168, 76, 0.45);
    transform: translateY(-3px);
    color: #0a1628;
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-outline:hover {
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== TIPOGRAFIA DE SEÇÃO ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-header .section-tag::before,
.section-header .section-tag::after {
    content: '';
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6));
}
.section-header .section-tag::after {
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.6), transparent);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-desc {
    max-width: 580px;
    margin: 20px auto 0;
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.8;
}
.gold-divider {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 14px auto;
}
.gold-divider.left { margin-left: 0; }

/* =============================================================
   HEADER
   ============================================================= */
#header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 18px 0;
    transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
#header.scrolled {
    padding: 12px 0;
    background: rgba(9, 18, 34, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  { width: 64px; height: 64px; object-fit: contain; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    margin: 0 auto;
}
.nav-link {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding-bottom: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.btn-consult {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.5);
    padding: 10px 26px;
    border-radius: 2px;
    flex-shrink: 0;
    transition: all 0.35s var(--ease);
}
.btn-consult:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.35s var(--ease);
    transform-origin: center;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 55% at 50% 44%, rgba(16,36,72,0.75) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 50% 44%, rgba(201,168,76,0.055) 0%, transparent 55%),
        linear-gradient(170deg, #040810 0%, #080f1c 22%, #0c1a30 55%, #091624 80%, #040810 100%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,  transparent, transparent 79px, rgba(201,168,76,0.022) 79px, rgba(201,168,76,0.022) 80px),
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201,168,76,0.022) 79px, rgba(201,168,76,0.022) 80px);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 100% at 50% 50%, transparent 25%, rgba(4,9,15,0.55) 100%),
        linear-gradient(to bottom, rgba(4,9,15,0.35) 0%, transparent 35%, rgba(4,9,15,0.45) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 28px 80px;
    max-width: 860px;
    width: 100%;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 9vw, 6.2rem);
    font-weight: 800;
    letter-spacing: clamp(4px, 2vw, 12px);
    color: var(--off-white);
    line-height: 1.04;
    text-shadow: 0 2px 30px rgba(0,0,0,0.9), 0 0 80px rgba(201,168,76,0.08);
    margin-bottom: 6px;
}
.hero-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 22px auto;
}
.hero-subtitle {
    font-family: var(--font-ui);
    font-size: clamp(0.9rem, 2.2vw, 1.25rem);
    font-weight: 300;
    letter-spacing: clamp(3px, 1.5vw, 6px);
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.hero-tagline {
    font-size: 15.5px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 44px;
    opacity: 0.85;
}
.hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
/* Entrada cinematográfica do hero */
@keyframes heroRise {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroLineGrow {
    from { opacity: 0; transform: scaleX(0); }
    to   { opacity: 1; transform: scaleX(1); }
}
.hero-title    { animation: heroRise 1s var(--ease) 0.15s backwards; }
.hero-line     { animation: heroLineGrow 0.9s var(--ease) 0.55s backwards; }
.hero-subtitle { animation: heroRise 0.9s var(--ease) 0.7s backwards; }
.hero-tagline  { animation: heroRise 0.9s var(--ease) 0.9s backwards; }
.hero-actions  { animation: heroRise 0.9s var(--ease) 1.1s backwards; }

.scroll-down {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--gold);
    width: 34px;
    height: 34px;
    opacity: 0.55;
    animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0);    opacity: 0.55; }
    50%       { transform: translateX(-50%) translateY(10px); opacity: 0.9; }
}

/* =============================================================
   NÚMEROS / STATS
   ============================================================= */
.numeros {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 0;
}
.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.numero-item {
    text-align: center;
    padding: 28px 20px;
    position: relative;
    transition: transform 0.4s var(--ease);
}
.numero-item:hover { transform: translateY(-5px); }
.numero-item:hover .numero-value,
.numero-item:hover .numero-plus {
    text-shadow: 0 0 32px rgba(201, 168, 76, 0.45);
}
.numero-item + .numero-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--border);
}
.numero-top {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    line-height: 1;
    margin-bottom: 10px;
}
.numero-value {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--gold);
    transition: text-shadow 0.4s;
}
.numero-plus {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gold);
}
.numero-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* =============================================================
   ÁREAS DE ATUAÇÃO
   ============================================================= */
.areas { padding: var(--pad-section); }
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.area-card {
    background: var(--navy);
    border: 1px solid var(--border-dim);
    border-radius: 3px;
    padding: 42px 34px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.area-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.area-card::after {
    content: '';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 26px;
    height: 26px;
    border-top: 1px solid rgba(201, 168, 76, 0.45);
    border-right: 1px solid rgba(201, 168, 76, 0.45);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    pointer-events: none;
}
.area-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: var(--shadow), var(--shadow-gold);
}
.area-card:hover::before { opacity: 1; }
.area-card:hover::after  { opacity: 1; transform: translate(0, 0); }

.area-icon {
    width: 62px;
    height: 62px;
    color: var(--gold);
    margin-bottom: 26px;
    transition: transform 0.45s var(--ease), filter 0.45s;
}
.area-card:hover .area-icon {
    transform: translateY(-4px) scale(1.06);
    filter: drop-shadow(0 6px 18px rgba(201, 168, 76, 0.35));
}
.area-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 14px;
}
.area-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 28px;
}
.area-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.3s;
}
.area-link span { transition: transform 0.3s; display: inline-block; }
.area-link:hover { gap: 14px; }
.area-link:hover span { transform: translateX(4px); }

/* =============================================================
   SOBRE
   ============================================================= */
.sobre {
    padding: var(--pad-section);
    background: linear-gradient(160deg, var(--bg-2), var(--navy) 60%, var(--bg-2));
}
.sobre-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 90px;
    align-items: center;
}
.sobre-visual { position: relative; }
.sobre-decoration-top,
.sobre-decoration-bottom {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 2px;
}
.sobre-decoration-top  { top: -20px; left: -20px; }
.sobre-decoration-bottom { bottom: -20px; right: -20px; }
.sobre-image-frame { position: relative; }
.sobre-placeholder {
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 24px 24px 0 var(--navy-light);
}
.sobre-placeholder svg { width: 100%; height: auto; }
.sobre-foto {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 2px;
    filter: brightness(0.95) contrast(1.05);
    transition: transform 0.8s var(--ease), filter 0.8s;
}
.sobre-image-frame:hover .sobre-foto {
    transform: scale(1.035);
    filter: brightness(1) contrast(1.05);
}
.sobre-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0d1b2a;
    padding: 18px 26px;
    border-radius: 2px;
    text-align: center;
    box-shadow: var(--shadow);
}
.sobre-badge span {
    display: block;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.sobre-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
}

.sobre-content .section-title { margin-top: 14px; }
.sobre-quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.7;
    padding: 18px 22px;
    border-left: 2px solid var(--gold);
    background: rgba(201, 168, 76, 0.04);
    border-radius: 0 2px 2px 0;
    margin: 22px 0 24px;
}
.sobre-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}
.sobre-content p strong { color: var(--text); font-weight: 700; }

.sobre-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 34px;
}
.credential {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: border-color 0.35s, background 0.35s, color 0.35s;
}
.credential:hover {
    border-color: var(--border);
    background: rgba(201, 168, 76, 0.04);
    color: var(--text);
}
.credential svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

/* =============================================================
   DIFERENCIAIS
   ============================================================= */
.diferenciais {
    padding: var(--pad-section);
    background: var(--bg);
}
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.diferencial-item {
    text-align: center;
    padding: 46px 26px;
    background: var(--navy);
    border: 1px solid var(--border-dim);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.diferencial-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.diferencial-item:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: var(--shadow-gold);
}
.diferencial-item:hover::after { opacity: 1; }
.diferencial-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 22px;
    color: var(--gold);
    transition: transform 0.45s var(--ease), filter 0.45s;
}
.diferencial-item:hover .diferencial-icon {
    transform: translateY(-4px) scale(1.07);
    filter: drop-shadow(0 6px 18px rgba(201, 168, 76, 0.35));
}
.diferencial-item h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 14px;
}
.diferencial-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* =============================================================
   CITAÇÃO
   ============================================================= */
.citacao-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 70px 0;
}
.citacao-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.citacao-icon {
    color: var(--gold);
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    opacity: 0.5;
}
.citacao-inner blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-style: italic;
    font-weight: 500;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 18px;
}
.citacao-inner cite {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}
.citacao-inner cite::before,
.citacao-inner cite::after {
    content: '';
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.55));
}
.citacao-inner cite::after {
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.55), transparent);
}

/* =============================================================
   ATUALIZAÇÕES JURÍDICAS
   ============================================================= */
.noticias-jur {
    padding: var(--pad-section);
    background: linear-gradient(160deg, var(--bg) 0%, var(--navy) 50%, var(--bg) 100%);
    border-top: 1px solid var(--border-dim);
}
.noticias-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}
.noticias-tribunal {
    background: var(--navy);
    border: 1px solid var(--border-dim);
    border-radius: 3px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.noticias-tribunal:hover { border-color: rgba(201,168,76,0.25); }
.tribunal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: rgba(201,168,76,0.05);
    border-bottom: 1px solid var(--border-dim);
}
.tribunal-sigla {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    flex-shrink: 0;
}
.tribunal-nome {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.noticias-lista {
    list-style: none;
    padding: 8px 0;
    min-height: 80px;
}
.noticias-lista li {
    padding: 13px 24px;
    border-bottom: 1px solid rgba(201,168,76,0.05);
    transition: background 0.25s;
}
.noticias-lista li:last-child { border-bottom: none; }
.noticias-lista li:hover { background: rgba(201,168,76,0.04); }
.noticia-link {
    display: block;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.55;
    margin-bottom: 4px;
    transition: color 0.3s;
}
.noticia-link:hover { color: var(--gold-light); }
.noticia-data {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-ui);
}
.noticia-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 28px 24px;
    color: var(--text-muted);
    font-size: 13px;
    font-style: italic;
}
.noticia-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(201,168,76,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.noticia-erro {
    padding: 20px 24px;
    color: var(--text-muted);
    font-size: 13px;
    font-style: italic;
}

/* =============================================================
   CONTATO
   ============================================================= */
.contato {
    padding: var(--pad-section);
    background: linear-gradient(160deg, var(--bg-2), var(--navy) 60%, var(--bg-2));
}
.contato-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 70px;
    align-items: start;
}
.contato-info { display: flex; flex-direction: column; gap: 34px; }
.info-item { display: flex; gap: 20px; align-items: flex-start; }
.info-icon {
    width: 50px;
    height: 50px;
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}
.info-icon svg { width: 20px; height: 20px; color: var(--gold); }
.info-item:hover .info-icon {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.4);
}
.info-item h4 {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.info-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}
.info-item a { color: var(--text-muted); }
.info-item a:hover { color: var(--gold); }

/* Formulário */
.contato-form {
    background: var(--navy);
    border: 1px solid var(--border-dim);
    border-radius: 3px;
    padding: 44px 40px;
}
.form-group { margin-bottom: 22px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 9px;
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 2px;
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(201, 168, 76, 0.35);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.4;
}
.form-group select {
    cursor: pointer;
    color: var(--text-muted);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 38px;
}
.form-group select option {
    background: var(--navy);
    color: var(--text);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.65;
}
.form-privacy svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
    background: #060d18;
    border-top: 1px solid var(--border);
    padding: 70px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.2fr 1.2fr;
    gap: 52px;
    margin-bottom: 56px;
}
.footer-brand { display: flex; align-items: flex-start; gap: 18px; }
.footer-logo-link { flex-shrink: 0; }
.footer-logo { width: 46px; height: 54px; }
.footer-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 4px;
}
.footer-subtitle {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 14px;
}
.footer-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.8;
}
.footer-nav h4 {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a {
    font-size: 13.5px;
    color: var(--text-muted);
    transition: color 0.3s, padding-left 0.3s;
}
.footer-nav a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-info h4 {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-contact-info p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 9px;
    line-height: 1.5;
}
.footer-contact-info a { color: var(--text-muted); }
.footer-contact-info a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: var(--text-muted); }
.footer-oab {
    font-family: var(--font-ui) !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.5) !important;
}


/* =============================================================
   ANIMAÇÕES DE ENTRADA (JS-controlled)
   ============================================================= */
.anim-fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.anim-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Acessibilidade — respeita preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .anim-fade { opacity: 1; transform: none; }
}

/* =============================================================
   RESPONSIVE — 1024px
   ============================================================= */
@media (max-width: 1024px) {
    :root { --pad-section: 90px 0; }

    .areas-grid         { grid-template-columns: repeat(2, 1fr); }
    .diferenciais-grid  { grid-template-columns: repeat(2, 1fr); }
    .numeros-grid       { grid-template-columns: repeat(2, 1fr); }
    .numeros-grid .numero-item:nth-child(2)::before,
    .numeros-grid .numero-item:nth-child(4)::before { display: none; }

    .sobre-grid         { grid-template-columns: 1fr; gap: 60px; }
    .sobre-visual       { max-width: 360px; }

    .contato-grid       { grid-template-columns: 1fr; gap: 52px; }

    .footer-grid        { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand       { grid-column: span 2; }
}

/* =============================================================
   RESPONSIVE — 768px
   ============================================================= */
@media (max-width: 768px) {
    :root { --pad-section: 72px 0; }

    .btn-consult, .nav-links:not(.open) { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw;
        height: 100vh;
        background: rgba(4, 8, 16, 0.98) !important;
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 9999 !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links.open .nav-link {
        font-size: 17px;
        letter-spacing: 3px;
        color: var(--off-white);
    }
    .nav-links.open .nav-link:hover,
    .nav-links.open .nav-link.active { color: var(--gold); }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

    /* Hero mobile */
    .hero-emblem        { display: none !important; }
    .hero-content       { padding: 100px 24px 70px; }
    .hero-title         { letter-spacing: 4px; font-size: clamp(2.2rem, 10vw, 3.2rem); }
    .hero-subtitle      { font-size: 0.85rem; letter-spacing: 3px; }
    .hero-tagline       { font-size: 14px; margin-bottom: 32px; }
    .hero-line          { margin: 16px auto; }
    .hero-actions       { gap: 12px; }

    /* Logo header mobile */
    .logo-img           { width: 50px; height: 50px; }

    /* Layout */
    .noticias-grid      { grid-template-columns: 1fr; }
    .areas-grid         { grid-template-columns: 1fr; }
    .diferenciais-grid  { grid-template-columns: 1fr 1fr; }
    .sobre-credentials  { grid-template-columns: 1fr; }
    .form-row           { grid-template-columns: 1fr; }
    .contato-form       { padding: 28px 22px; }
    .footer-grid        { grid-template-columns: 1fr; }
    .footer-brand       { grid-column: span 1; }
    .footer-bottom      { flex-direction: column; text-align: center; gap: 8px; }
}

/* =============================================================
   RESPONSIVE — 480px
   ============================================================= */
@media (max-width: 480px) {
    .diferenciais-grid  { grid-template-columns: 1fr; }
    .hero-actions       { flex-direction: column; align-items: center; width: 100%; }
    .hero-actions .btn  { width: 100%; justify-content: center; max-width: 280px; }
    .numeros-grid       { grid-template-columns: 1fr 1fr; }
    .numeros-grid .numero-item::before { display: none; }
}
