/* ============================================
   PABLO S. ALEXANDRE - ADVOCACIA ESPECIALIZADA EM SAÚDE
   CSS Principal
   ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores baseadas no flyer */
    --azul-escuro: #0d1621;
    --azul-escuro-claro: #1a2332;
    --dourado: #C8A44D;
    --dourado-escuro: #B8943F;
    --azul-claro: #4A90E2;
    --azul-claro-suave: #5B9BD5;
    --branco: #FFFFFF;
    --cinza-claro: #F4F4F4;
    --cinza-medio: #999999;
    --cinza-escuro: #333333;
    --whatsapp-verde: #25D366;
    --whatsapp-verde-escuro: #1DA851;
    
    /* Cores legadas (mantidas para compatibilidade) */
    --preto-profundo: #0d1621;
    
    /* Tipografia */
    --font-display: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--preto-profundo);
    background-color: var(--branco);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--preto-profundo);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--cinza-escuro);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--branco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--azul-claro);
}

.header-fixed.scrolled {
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
    border-bottom: 3px solid var(--azul-claro);
    background: rgba(255, 255, 255, 0.98);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--azul-escuro);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--azul-claro), transparent);
    opacity: 0.5;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: block;
}

/* Menu Desktop */
.menu-desktop {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.menu-desktop a {
    color: var(--azul-escuro);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.menu-desktop a:hover,
.menu-desktop a.active {
    color: var(--azul-claro);
}

.menu-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--azul-claro);
    transition: width 0.3s ease;
    border-radius: 2px 2px 0 0;
}

.menu-desktop a:hover::after,
.menu-desktop a.active::after {
    width: 100%;
}

/* Botão CTA Header */
.btn-cta-header {
    background: linear-gradient(145deg, var(--azul-claro) 0%, var(--azul-claro-suave) 100%);
    color: var(--branco);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    box-shadow: 
        0 4px 6px rgba(74, 144, 226, 0.3),
        0 2px 4px rgba(74, 144, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.btn-cta-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta-header:hover::before {
    left: 100%;
}

.btn-cta-header:hover {
    background: linear-gradient(145deg, var(--azul-claro-suave) 0%, var(--azul-claro) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 16px rgba(74, 144, 226, 0.4),
        0 4px 8px rgba(74, 144, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-cta-header:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 2px 4px rgba(74, 144, 226, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-cta-header i {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* Menu Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--azul-claro);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Mobile */
.menu-mobile {
    display: none;
    background: var(--branco);
    border-top: 1px solid var(--cinza-claro);
    padding: 1rem 0;
}

.menu-mobile.active {
    display: block;
}

.menu-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-mobile a {
    display: block;
    padding: 0.75rem 0;
    color: var(--preto-profundo);
    font-weight: 500;
}

.menu-mobile a:hover,
.menu-mobile a.active {
    color: var(--dourado);
}

.btn-cta-mobile {
    background: linear-gradient(145deg, var(--dourado) 0%, var(--dourado-escuro) 100%);
    color: var(--branco);
    padding: 12px 24px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 4px 6px rgba(200, 164, 77, 0.3),
        0 2px 4px rgba(200, 164, 77, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.btn-cta-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta-mobile:hover::before {
    left: 100%;
}

.btn-cta-mobile:hover {
    background: linear-gradient(145deg, var(--dourado-escuro) 0%, var(--dourado) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 16px rgba(200, 164, 77, 0.4),
        0 4px 8px rgba(200, 164, 77, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-cta-mobile:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 2px 4px rgba(200, 164, 77, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-cta-mobile i {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-escuro-claro) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(74, 144, 226, 0.15), transparent);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--branco);
}

.hero-text .destaque {
    color: var(--dourado);
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background: var(--dourado);
    border-radius: 50%;
}

/* Botões */
.btn-primary {
    background: linear-gradient(145deg, var(--dourado) 0%, var(--dourado-escuro) 100%);
    color: var(--branco);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    box-shadow: 
        0 4px 6px rgba(200, 164, 77, 0.3),
        0 2px 4px rgba(200, 164, 77, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(145deg, var(--dourado-escuro) 0%, var(--dourado) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 16px rgba(200, 164, 77, 0.4),
        0 4px 8px rgba(200, 164, 77, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 2px 4px rgba(200, 164, 77, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-primary i {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.btn-secondary {
    background: linear-gradient(145deg, rgba(74, 144, 226, 0.1) 0%, rgba(74, 144, 226, 0.05) 100%);
    color: var(--azul-claro);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--azul-claro);
    text-decoration: none;
    position: relative;
    box-shadow: 
        0 4px 6px rgba(74, 144, 226, 0.2),
        0 2px 4px rgba(74, 144, 226, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: linear-gradient(145deg, var(--azul-claro) 0%, var(--azul-claro-suave) 100%);
    color: var(--branco);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 16px rgba(74, 144, 226, 0.4),
        0 4px 8px rgba(74, 144, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--azul-claro);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 2px 4px rgba(74, 144, 226, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary i {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

/* Seções */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    color: var(--azul-claro);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--cinza-medio);
    max-width: 600px;
    margin: 0 auto;
}

/* Seção Autoridade */
.autoridade {
    background: var(--branco);
}

.autoridade-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.autoridade-image {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.autoridade-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autoridade-text h2 {
    margin-bottom: 1.5rem;
}

.autoridade-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.autoridade-badge {
    padding-top: 1.5rem;
    border-top: 1px solid var(--cinza-claro);
    margin-top: 1.5rem;
}

.autoridade-badge strong {
    color: var(--preto-profundo);
    font-size: 1.125rem;
}

.autoridade-badge .oab {
    color: var(--dourado);
}

/* Cards de Áreas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.area-card {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 164, 77, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.area-icon i {
    color: var(--dourado);
    width: 32px;
    height: 32px;
}

.area-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.area-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.area-card a {
    color: var(--dourado);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.area-card a:hover {
    gap: 12px;
}

/* Seção Como Funciona */
.como-funciona {
    background: var(--branco);
}

.como-funciona-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.passos-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.passo-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.passo-numero {
    width: 64px;
    height: 64px;
    background: var(--dourado);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.passo-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.passo-content p {
    line-height: 1.7;
}

.como-funciona-image {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.como-funciona-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Seção Diferenciais */
.diferenciais {
    background: var(--preto-profundo);
    color: var(--branco);
}

.diferenciais-content {
    max-width: 900px;
    margin: 0 auto;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.diferencial-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.diferencial-icon {
    width: 40px;
    height: 40px;
    background: var(--dourado);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diferencial-icon i {
    color: var(--preto-profundo);
    width: 20px;
    height: 20px;
}

.diferencial-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin: 0;
}

/* FAQ */
.faq {
    background: var(--cinza-claro);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--branco);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--dourado);
}

.faq-question.active {
    color: var(--dourado);
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--cinza-escuro);
    line-height: 1.8;
}

/* Artigos */
.artigos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.artigo-card {
    background: var(--branco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.artigo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.artigo-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.artigo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artigo-card:hover .artigo-image img {
    transform: scale(1.05);
}

.artigo-content {
    padding: 1.5rem;
}

.artigo-categoria {
    color: var(--dourado);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: block;
}

.artigo-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.artigo-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.artigo-link {
    color: var(--dourado);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.artigo-link:hover {
    gap: 12px;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-escuro-claro) 100%);
    color: var(--branco);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(74, 144, 226, 0.1), transparent);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--branco);
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-cta-whatsapp {
    background: linear-gradient(145deg, var(--whatsapp-verde) 0%, var(--whatsapp-verde-escuro) 100%);
    color: var(--branco);
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    box-shadow: 
        0 4px 6px rgba(37, 211, 102, 0.3),
        0 2px 4px rgba(37, 211, 102, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.btn-cta-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta-whatsapp:hover::before {
    left: 100%;
}

.btn-cta-whatsapp:hover {
    background: linear-gradient(145deg, var(--whatsapp-verde-escuro) 0%, var(--whatsapp-verde) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 16px rgba(37, 211, 102, 0.4),
        0 4px 8px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-cta-whatsapp:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 2px 4px rgba(37, 211, 102, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-cta-whatsapp i {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    width: 28px;
    height: 28px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-escuro-claro) 100%);
    color: var(--branco);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--azul-claro), transparent);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dourado);
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-oab {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-subtitle {
    font-size: 1.125rem;
    color: var(--dourado);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--dourado);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    margin-bottom: 12px;
    text-decoration: none;
}

.footer-social:last-child {
    margin-bottom: 0;
}

.footer-social:hover {
    color: var(--dourado);
}

.footer-social i {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Formulário */
.form-section {
    padding: 80px 0;
    background: var(--cinza-claro);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--branco);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--preto-profundo);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cinza-claro);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dourado);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Espaçamento para header fixo */
body {
    padding-top: 80px;
}
