/* ============================================================
   FERRONATTO E NAVARINI ADVOCACIA
   Paleta: Azul Marinho #0d1b2a + Gradiente Dourado
   ============================================================ */

/* ---- VARIÁVEIS ---- */
:root {
    --navy:        #0d1b2a;
    --navy-alt:    #0f2035;
    --navy-light:  #152840;
    --gold-dark:   #9b7818;
    --gold-mid:    #c9a020;
    --gold-light:  #dbb83a;
    --gold-cream:  #e8cf6a;
    --gold-grad:   linear-gradient(135deg, #9b7818 0%, #dbb83a 45%, #f0d060 70%, #c9a020 100%);
    --gold-text:   linear-gradient(90deg, #9b7818, #dbb83a, #f0d060, #c9a020);
    --text:        #f5f5f5;
    --text-muted:  #8a9ab0;
    --border:      rgba(219, 184, 58, 0.22);
    --border-strong: rgba(219, 184, 58, 0.5);
    --shadow:      0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 24px rgba(219, 184, 58, 0.25);
    --radius:      8px;
    --radius-lg:   16px;
    --font-h:      'Cinzel', 'Trajan Pro', Georgia, serif;
    --font-b:      'Raleway', Arial, sans-serif;
    --nav-h:       90px;
}

/* ---- RESET ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-b);
    background-color: var(--navy);
    color: var(--text);
    line-height: 1.75;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ---- UTILITÁRIOS ---- */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

.gold-text {
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-line {
    width: 48px;
    height: 2px;
    background: var(--gold-grad);
    margin: 24px auto 0;
    position: relative;
}

.gold-line::before,
.gold-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 1px;
}

.gold-line::before {
    right: calc(100% + 8px);
    background: linear-gradient(270deg, var(--gold-mid), transparent);
    opacity: 0.5;
}

.gold-line::after {
    left: calc(100% + 8px);
    background: linear-gradient(90deg, var(--gold-mid), transparent);
    opacity: 0.5;
}

.card-gold-line {
    width: 40px;
    height: 2px;
    background: var(--gold-grad);
    margin: 14px 0 18px;
}

/* ---- SEÇÕES COMUNS ---- */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow {
    font-family: var(--font-b);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 1px;
    background: var(--gold-mid);
    opacity: 0.65;
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.04em;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-h);
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s;
}

#navbar.scrolled {
    background: rgba(10, 22, 38, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#navbar.scrolled .logo {
    opacity: 1;
    pointer-events: auto;
}

.logo-img {
    height: 72px;
    width: 72px;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.2s, transform 0.2s;
}

.logo:hover .logo-img {
    opacity: 0.9;
    transform: scale(1.04);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-b);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color 0.25s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-cta {
    font-family: var(--font-b);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid var(--gold-mid);
    border-radius: var(--radius);
    color: var(--gold-light);
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--gold-mid);
    color: var(--navy);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-mid);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-color: var(--navy);
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(13, 27, 42, 0.0) 0%, var(--navy) 100%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(219, 184, 58, 0.03) 40px,
            rgba(219, 184, 58, 0.03) 41px
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 30%, rgba(15, 32, 53, 0.6) 0%, var(--navy) 80%);
    pointer-events: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 860px;
    height: 860px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 42%, rgba(219, 184, 58, 0.11) 0%, rgba(219, 184, 58, 0.05) 38%, transparent 68%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: calc(var(--nav-h) * 0.25) 24px 0;
    max-width: 860px;
}

/* Logo em destaque no Hero */
.hero-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin: 0 auto 28px;
    border-radius: 16px;
    filter: drop-shadow(0 0 32px rgba(219, 184, 58, 0.35)) drop-shadow(0 8px 48px rgba(0, 0, 0, 0.6));
    transition: filter 0.4s ease, transform 0.4s ease;
}

.hero-logo:hover {
    filter: drop-shadow(0 0 48px rgba(219, 184, 58, 0.55)) drop-shadow(0 8px 48px rgba(0, 0, 0, 0.6));
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .hero-logo {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 190px;
        height: 190px;
    }
}

.hero-eyebrow {
    font-family: var(--font-b);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-h);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0;
}

.hero-title em {
    font-style: italic;
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--gold-grad);
    margin: 30px auto;
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-light);
}

.hero-divider::before { left: -10px; }
.hero-divider::after  { right: -10px; }

.hero-subtitle {
    font-family: var(--font-b);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 44px;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24px;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-mid), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold-grad);
    color: var(--navy);
    font-family: var(--font-b);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(219, 184, 58, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1px solid var(--border-strong);
    color: var(--gold-light);
    font-family: var(--font-b);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
    background: rgba(219, 184, 58, 0.1);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    font-family: var(--font-b);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background 0.25s, transform 0.2s;
}

.btn-whatsapp:hover {
    background: #1ebe5c;
    transform: translateY(-2px);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    font-family: var(--font-b);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: opacity 0.25s, transform 0.2s;
}

.btn-instagram:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
    background: var(--navy-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 52px 0;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.diferencial-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 40px;
    border-right: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.diferencial-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.diferencial-item:nth-child(2) { transition-delay: 0.12s; }
.diferencial-item:nth-child(3) { transition-delay: 0.24s; }

.diferencial-item:first-child { padding-left: 0; }
.diferencial-item:last-child  { border-right: none; padding-right: 0; }

.diferencial-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(219, 184, 58, 0.06);
}

.diferencial-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold-mid);
}

.diferencial-text h3 {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.diferencial-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.72;
}

@media (max-width: 900px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .diferencial-item {
        padding: 28px 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .diferencial-item:last-child { border-bottom: none; padding-bottom: 0; }
    .diferencial-item:first-child { padding-top: 0; }
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
    background: var(--navy);
}

.sobre-intro {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.sobre-intro p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.85;
}

.sobre-intro strong {
    color: var(--text);
    font-weight: 600;
}

.advogadas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.advogada-card {
    background: var(--navy-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.advogada-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-grad);
    opacity: 0.2;
    transition: opacity 0.35s;
}

.advogada-card:hover::before {
    opacity: 1;
}

.advogada-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.advogada-avatar {
    margin: 0 auto 24px;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    border: 2px solid var(--gold-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(219, 184, 58, 0.07);
    overflow: hidden;
    box-shadow: 0 0 0 4px rgba(219, 184, 58, 0.1);
    transition: box-shadow 0.3s;
}

.advogada-card:hover .advogada-avatar {
    box-shadow: 0 0 0 5px rgba(219, 184, 58, 0.22);
}

.avatar-initials {
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.06em;
    user-select: none;
}

.advogada-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.advogada-name {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.advogada-title {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advogada-oab {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
    opacity: 0.75;
}

.advogada-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ============================================================
   ÁREAS DE ATUAÇÃO
   ============================================================ */
.areas {
    background: var(--navy-alt);
    overflow: hidden;
}

.areas-bg-decoration {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(219, 184, 58, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.area-card {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 52px 44px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-grad);
    opacity: 0.2;
    transition: opacity 0.35s;
}

.area-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.area-card:hover::before {
    opacity: 1;
}

.area-icon-wrap {
    width: 72px;
    height: 72px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: rgba(219, 184, 58, 0.05);
    transition: border-color 0.3s, background 0.3s;
}

.area-card:hover .area-icon-wrap {
    border-color: var(--gold-mid);
    background: rgba(219, 184, 58, 0.1);
}

.area-icon {
    width: 38px;
    height: 38px;
    color: var(--gold-mid);
    transition: color 0.3s;
}

.area-card:hover .area-icon {
    color: var(--gold-light);
}

.area-title {
    font-family: var(--font-h);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.area-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.area-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.area-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-grad);
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
    background: var(--navy);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contato-icon-wrap {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(219, 184, 58, 0.05);
}

.contato-icon-wrap svg {
    width: 20px;
    height: 20px;
    color: var(--gold-mid);
}

.contato-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contato-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contato-value {
    font-family: var(--font-h);
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.5;
    transition: color 0.2s;
}

a.contato-value:hover {
    color: var(--gold-light);
}

.contato-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

.contato-mapa {
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contato-mapa iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%) brightness(0.85) contrast(1.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy-alt);
    border-top: 1px solid var(--border);
    padding: 56px 0 28px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 72px;
    width: 72px;
    object-fit: contain;
    border-radius: 8px;
    opacity: 0.92;
    transition: opacity 0.2s;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--gold-light);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.footer-social a:hover {
    border-color: var(--gold-mid);
    color: var(--gold-light);
    background: rgba(219, 184, 58, 0.08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0%   { transform: scale(1); opacity: 0.6; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateY(6px);
    white-space: nowrap;
    background: var(--navy-light);
    color: var(--text);
    font-family: var(--font-b);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header,
.sobre-intro,
.advogada-card,
.area-card,
.contato-item,
.contato-mapa,
.contato-actions {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.section-header.visible,
.sobre-intro.visible,
.advogada-card.visible,
.area-card.visible,
.contato-item.visible,
.contato-mapa.visible,
.contato-actions.visible {
    opacity: 1;
    transform: translateY(0);
}

/* delay escalonado para cards */
.advogada-card:nth-child(2),
.area-card:nth-child(2) {
    transition-delay: 0.15s;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
    .advogadas-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }

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

    .contato-mapa {
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    :root { --nav-h: 76px; }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: rgba(10, 22, 38, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 80px 40px 40px;
        gap: 6px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
    }

    .nav-cta {
        margin-top: 16px;
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .section { padding: 80px 0; }

    .section-header { margin-bottom: 52px; }

    .hero-actions { flex-direction: column; align-items: center; }

    .advogada-card,
    .area-card {
        padding: 36px 28px;
    }

    .contato-actions {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
        gap: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 24px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .logo-name { font-size: 0.82rem; }
    .logo-tagline { display: none; }
    .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
}
