/* -------------------------------------------------------------
   Maria de Fátima Advocacia - Premium Landing Page Stylesheet
   ------------------------------------------------------------- */

/* Variáveis do Sistema de Design */
:root {
    /* Cores de Fundo (Baseadas no logotipo e couro marrom) */
    --bg-primary: #170b07;       /* Marrom chocolate ultra escuro */
    --bg-secondary: #22120b;     /* Marrom couro profundo */
    --bg-tertiary: #2d180f;      /* Marrom bronze médio */
    --bg-logo-match: #4b2f23;    /* Cor exata do fundo da logo.png */
    
    /* Cores de Destaque e Metais */
    --gold-primary: #c5a059;     /* Dourado institucional */
    --gold-light: #d8b775;       /* Dourado brilhante para hovers */
    --gold-dark: #a3813f;        /* Dourado envelhecido para sombras/detalhes */
    --silver-primary: #d1cbd4;   /* Prata fosco */
    --silver-light: #f4f1ea;     /* Prata claro/Marfim */
    
    /* Cores de Texto */
    --text-white: #fcfbf9;       /* Off-white de alto contraste */
    --text-muted: #bdae9f;       /* Marrom acinzentado suave */
    --text-dark: #1f1410;        /* Marrom escuro para elementos claros */
    
    /* Efeitos e Glassmorphism */
    --card-glass: rgba(45, 24, 15, 0.45);
    --border-glass: rgba(197, 160, 89, 0.15);
    --border-glass-hover: rgba(197, 160, 89, 0.45);
    --glow-gold: 0 0 20px rgba(197, 160, 89, 0.25);
    
    /* Tipografia */
    --font-headers: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transições e Bordas */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;
}

/* Reset Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------------------------------------------------
   Componentes Globais (Botões, Títulos, Divisores)
   ------------------------------------------------------------- */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
    color: var(--bg-primary);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
    color: var(--bg-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gold-primary);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--text-white);
    border-color: var(--text-white);
}

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

.section-tag {
    font-family: var(--font-headers);
    color: var(--gold-primary);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-headers);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
}

.section-title span {
    color: var(--gold-primary);
}

.divider-gold {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 15px auto 20px auto;
}

.divider-gold.left-aligned {
    margin-left: 0;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* -------------------------------------------------------------
   Header / Navbar
   ------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(23, 11, 7, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 10px 0;
    background: rgba(15, 7, 4, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-logo {
    height: 75px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.2);
    color: var(--bg-primary);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition-smooth);
}

/* -------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 60% 40%, var(--bg-tertiary) 0%, var(--bg-primary) 70%);
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border-glass) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.15;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subtitle-badge {
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid var(--border-glass);
    color: var(--gold-primary);
    font-family: var(--font-headers);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-headers);
    font-size: 48px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-white);
}

.hero-title span {
    color: var(--gold-primary);
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Lawyer Image */
.hero-image-box {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -15px;
    right: 15px;
    bottom: -15px;
    border: 2px solid var(--gold-primary);
    border-radius: var(--border-radius-lg);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.image-frame:hover::before {
    top: 8px;
    left: -8px;
    right: 8px;
    bottom: -8px;
    border-color: var(--text-white);
}

.hero-lawyer-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 2;
    display: block;
}

.badge-experience {
    position: absolute;
    bottom: 25px;
    left: -25px;
    background: var(--bg-secondary);
    border: 2px solid var(--gold-primary);
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.badge-experience .number {
    font-family: var(--font-headers);
    color: var(--gold-primary);
    font-size: 20px;
    font-weight: 700;
}

.badge-experience .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-top: 2px;
}

/* -------------------------------------------------------------
   Áreas de Atuação (Serviços)
   ------------------------------------------------------------- */
.services-section {
    background-color: var(--bg-secondary);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .services-grid .service-card {
        grid-column: span 2;
    }
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: span 3;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid .service-card:nth-child(5) {
        grid-column: span 2;
    }
}


.service-card {
    position: relative;
    background: var(--card-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.card-bg-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-hover);
    box-shadow: var(--glow-gold);
}

.service-card:hover .card-bg-glow {
    opacity: 1;
}

.service-icon {
    font-size: 32px;
    color: var(--gold-primary);
    background: rgba(197, 160, 89, 0.08);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-family: var(--font-headers);
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.service-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.service-list {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.service-list li {
    font-size: 13px;
    color: var(--text-white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li i {
    color: var(--gold-primary);
    font-size: 10px;
}

.card-link {
    font-family: var(--font-headers);
    font-size: 13px;
    color: var(--gold-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.card-link i {
    transition: var(--transition-smooth);
}

.service-card:hover .card-link {
    color: var(--text-white);
}

.service-card:hover .card-link i {
    transform: translateX(5px);
}

/* -------------------------------------------------------------
   Sobre Mim (Quem Sou)
   ------------------------------------------------------------- */
.about-section {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 50%, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
}

.about-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.about-image-column {
    display: flex;
    justify-content: center;
}

.about-photo-wrapper {
    position: relative;
    max-width: 380px;
    width: 100%;
}

.about-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.photo-border-effect {
    position: absolute;
    top: -15px;
    left: 15px;
    right: -15px;
    bottom: 15px;
    border: 2px solid var(--gold-primary);
    border-radius: var(--border-radius-lg);
    z-index: 1;
    transition: var(--transition-smooth);
}

.about-photo-wrapper:hover .photo-border-effect {
    top: -8px;
    left: 8px;
    right: -8px;
    bottom: 8px;
    border-color: var(--text-white);
}

.about-intro {
    font-size: 20px;
    color: var(--gold-primary);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.45;
}

.about-text {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.65;
}

.values-badges {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.value-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid var(--border-glass);
    padding: 10px 18px;
    border-radius: var(--border-radius-sm);
}

.value-badge-item i {
    color: var(--gold-primary);
    font-size: 16px;
}

.value-badge-item span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* -------------------------------------------------------------
   Diferenciais
   ------------------------------------------------------------- */
.differentials-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.differentials-bg-decor {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.diff-card {
    background: rgba(35, 18, 11, 0.35);
    border: 1px solid rgba(197, 160, 89, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.diff-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glass-hover);
    background: var(--card-glass);
}

.diff-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.08);
    color: var(--gold-primary);
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: var(--transition-smooth);
}

.diff-card:hover .diff-icon-wrapper {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

.diff-card h3 {
    font-family: var(--font-headers);
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.diff-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
}

/* -------------------------------------------------------------
   Atuação Geográfica
   ------------------------------------------------------------- */
.geo-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.geo-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.geo-description {
    font-size: 18px;
    color: var(--silver-light);
    margin-bottom: 20px;
    line-height: 1.55;
}

.geo-sub-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.cities-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.city-group h4 {
    color: var(--gold-primary);
    font-family: var(--font-headers);
    font-size: 15px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-group span {
    font-size: 14px;
    color: var(--text-white);
    padding-left: 25px;
    font-weight: 500;
}

/* Image Stack Layout */
.geo-visual-column {
    display: flex;
    justify-content: center;
}

.image-stack {
    position: relative;
    width: 320px;
    height: 450px;
}

.img-stack-one {
    position: absolute;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--gold-primary);
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.img-stack-two {
    position: absolute;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--gold-primary);
    bottom: 0;
    right: 0;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    transition: var(--transition-smooth);
}

.image-stack:hover .img-stack-one {
    transform: translate(-10px, -10px) rotate(-2deg);
}

.image-stack:hover .img-stack-two {
    transform: translate(10px, 10px) rotate(2deg);
}

/* -------------------------------------------------------------
   FAQ (Dúvidas Frequentes)
   ------------------------------------------------------------- */
.faq-section {
    background-color: var(--bg-secondary);
    padding: 100px 0;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 16, 10, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.08);
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    font-family: var(--font-headers);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--gold-primary);
    background: rgba(197, 160, 89, 0.03);
}

.faq-question i {
    font-size: 14px;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 28px;
    background: rgba(0, 0, 0, 0.15);
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    padding-bottom: 22px;
}

/* Estado Expandido */
.faq-item.active {
    border-color: var(--gold-primary);
}

.faq-item.active .faq-question {
    color: var(--gold-primary);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* -------------------------------------------------------------
   Seção de Contato e Formulário
   ------------------------------------------------------------- */
.contact-section {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at center, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border-glass) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.1;
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Info Panel (Lado Esquerdo) */
.contact-info-panel {
    background: linear-gradient(135deg, #2b170e 0%, var(--bg-secondary) 100%);
    padding: 60px 50px;
    border-right: 1px solid var(--border-glass);
}

.contact-info-panel h3 {
    font-family: var(--font-headers);
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-white);
}

.contact-info-panel p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.15);
    color: var(--gold-primary);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.info-text strong {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 500;
}

/* Formulário (Lado Direito) */
.contact-form-panel {
    padding: 60px 50px;
    background: rgba(23, 12, 7, 0.6);
    backdrop-filter: blur(10px);
}

.contact-form-panel h3 {
    font-family: var(--font-headers);
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.contact-form-panel p {
    color: var(--text-muted);
    font-size: 13.5px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(45, 24, 15, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    background: rgba(45, 24, 15, 0.6);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-white);
}

.btn-submit-whatsapp {
    width: 100%;
    background: linear-gradient(135deg, #1d9d58 0%, #25d366 100%);
    color: white;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-submit-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #188a4c 0%, #20ba59 100%);
}

/* -------------------------------------------------------------
   Rodapé (Footer)
   ------------------------------------------------------------- */
.main-footer {
    background-color: #0f0704;
    border-top: 1px solid rgba(197, 160, 89, 0.08);
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 65px;
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    max-width: 350px;
}

.footer-links h4,
.footer-oab h4 {
    font-family: var(--font-headers);
    color: var(--gold-primary);
    font-size: 16px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-oab .oab-number {
    font-family: var(--font-headers);
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-oab .oab-number i {
    color: var(--gold-primary);
}

.footer-oab .oab-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.1);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 15px;
}

.footer-socials a:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

.footer-bottom {
    background-color: #080302;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 15px;
}

/* -------------------------------------------------------------
   Botão Flutuante do WhatsApp
   ------------------------------------------------------------- */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Animação do Pulso */
.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #25d366;
    animation: ring-pulse 2s infinite ease-out;
    pointer-events: none;
}

@keyframes ring-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* -------------------------------------------------------------
   Animações de Revelação Suave (Scroll Reveal)
   ------------------------------------------------------------- */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------
   Responsividade Móvel (Media Queries)
   ------------------------------------------------------------- */

@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    .hero-title {
        font-size: 40px;
    }
    .about-container,
    .geo-container {
        gap: 50px;
    }
}

@media (max-width: 991px) {
    /* Navbar no Tablet/Celular */
    .header-logo {
        height: 85px;
    }
    
    .main-header.scrolled .header-logo {
        height: 65px;
    }

    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(15, 7, 4, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1099;
        transition: var(--transition-smooth);
        padding: 100px 40px;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }
    
    .btn-nav {
        width: 100%;
        text-align: center;
    }
    
    /* Layouts Verticais */
    .hero-container,
    .about-container,
    .geo-container,
    .contact-card,
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text-content,
    .about-text-column,
    .geo-text-column {
        text-align: center;
        align-items: center;
    }
    
    .divider-gold.left-aligned {
        margin: 15px auto 20px auto;
        background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    }
    
    .cities-list {
        align-items: center;
    }
    
    .city-group h4 {
        justify-content: center;
    }
    
    .city-group span {
        padding-left: 0;
    }
    
    .hero-image-box,
    .about-image-column,
    .geo-visual-column {
        order: -1; /* Imagem no topo no celular */
    }
    
    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
        padding: 40px 30px;
    }
    
    .contact-form-panel {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .header-logo {
        height: 75px;
    }
    
    .main-header.scrolled .header-logo {
        height: 55px;
    }

    body {
        font-size: 15px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-description {
        font-size: 15px;
    }
    .section-title {
        font-size: 28px;
    }
    .hero-cta-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .hero-lawyer-img,
    .about-photo {
        height: 380px;
    }
    .badge-experience {
        left: 10px;
        bottom: 10px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-container,
    .geo-container {
        gap: 35px;
    }
    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 20px;
    }
}
