/* ==========================================================================
   SONIA TELES DE BULHÕES ADVOCACIA - STYLE SYSTEM
   Vanilla CSS - Premium, Modern, Responsive & Google Ads Optimized
   ========================================================================== */

/* Importação de Fontes Premium */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

/* Variáveis do Design System */
:root {
    /* Cores Oficiais */
    --bg-primary: #111111;
    --bg-surface: #1B1B1B;
    --bg-card: #232323;
    --text-primary: #F5F5F5;
    --text-secondary: #B8B8B8;
    --accent-primary: #7A1F2B;    /* Vinho Escuro */
    --accent-secondary: #A63A50;  /* Vinho Médio/Rosé */
    --accent-light: #D4A373;      /* Cobre */
    --border-color: #3A3A3A;
    --border-light: #4A4A4A;
    --gradient-primary: linear-gradient(135deg, #111111 0%, #3A101A 50%, #7A1F2B 100%);
    --gradient-gold: linear-gradient(135deg, #A67C52 0%, #D4A373 50%, #F3E5AB 100%);

    /* Tipografia */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Sombras & Transições */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.9);
    --shadow-glow: 0 0 15px rgba(122, 31, 43, 0.4);
    --shadow-gold-glow: 0 0 15px rgba(212, 163, 115, 0.3);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --container-max-width: 1200px;
    --header-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

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

/* Scrollbar Customizada Premium */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

::selection {
    background-color: var(--accent-primary);
    color: var(--text-primary);
}

/* Tipografia Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

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

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

/* Utilidades de Layout */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-surface);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid {
    display: grid;
    gap: 30px;
}

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Alinhamento de Texto e Destaques */
.text-center { text-align: center; }
.text-gold { color: var(--accent-light); background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-wine { color: var(--accent-secondary); }
.text-muted { color: var(--text-secondary); }

/* Badge Superior */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background-color: rgba(122, 31, 43, 0.15);
    border: 1px solid rgba(212, 163, 115, 0.3);
    border-radius: 50px;
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Títulos de Seção */
.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ==========================================================================
   COMPONENTES GLOBAIS
   ========================================================================== */

/* Botões Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid transparent;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(166, 58, 80, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-light);
    border-color: var(--accent-light);
}

.btn-secondary:hover {
    background-color: rgba(214, 163, 115, 0.08);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn svg {
    margin-left: 8px;
    transition: var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Cards Premium */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-light);
    box-shadow: var(--shadow-lg);
}

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

/* ==========================================================================
   HEADER / NAVBAR (GLASSMORPHISM)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.logo-link {
    display: flex;
    align-items: center;
    height: 48px;
    width: 220px;
}

.logo-link img {
    height: 100%;
    width: auto;
}

.nav-menu {
    display: none;
}

/* Menu Desktop */
@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        align-items: center;
        list-style: none;
        gap: 32px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: var(--text-secondary);
        position: relative;
        padding: 6px 0;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1.5px;
        background: var(--gradient-gold);
        transition: var(--transition-fast);
    }
    
    .nav-link:hover {
        color: var(--text-primary);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
    
    .nav-link.active {
        color: var(--text-primary);
    }
}

/* Botão do Menu Mobile */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
    transform-origin: center;
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Gaveta do Menu Mobile */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(27, 27, 27, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1050;
    padding: 100px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-left: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nav-mobile-link {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.nav-mobile-link.active,
.nav-mobile-link:hover {
    color: var(--accent-light);
    padding-left: 8px;
}

.nav-mobile-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.nav-mobile-footer p {
    margin-bottom: 8px;
}

/* ==========================================================================
   PÁGINA: HOME (HERO, SOBRE, DIFERENCIAIS, CTA)
   ========================================================================== */

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    z-index: 5;
    position: relative;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

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

/* Background Geometric Shape */
.hero-shape {
    position: absolute;
    top: 15%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(122, 31, 43, 0.15) 0%, rgba(27, 27, 27, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

/* Seção Sobre Resumido */
.about-summary-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media (min-width: 1024px) {
    .about-summary-wrapper {
        flex-direction: row;
        align-items: center;
    }
    
    .about-summary-text {
        flex: 1.2;
    }
    
    .about-summary-visual {
        flex: 0.8;
    }
}

.about-summary-visual {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background-color: var(--bg-surface);
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.about-summary-visual::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(122, 31, 43, 0.05);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    filter: blur(30px);
}

.about-metric {
    text-align: center;
}

.about-metric-num {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.about-metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Áreas de Atuação Grid */
.practice-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--accent-light);
}

.practice-icon svg {
    width: 100%;
    height: 100%;
}

.practice-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.practice-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.practice-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-light);
}

.practice-link svg {
    margin-left: 6px;
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.practice-link:hover svg {
    transform: translateX(4px);
}

/* CTA Geral */
.cta-banner {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    padding: 60px 30px;
    text-align: center;
    border: 1px solid var(--accent-primary);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 80px 60px;
    }
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px auto;
}

/* ==========================================================================
   PÁGINAS ADICIONAIS: HISTÓRIA, CONTATO, ETC
   ========================================================================== */

/* Page Header (Subpáginas) */
.page-header {
    background: linear-gradient(180deg, #231216 0%, var(--bg-primary) 100%);
    padding: 160px 0 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.breadcrumbs {
    display: flex;
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-secondary);
    gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
}

.breadcrumbs a:hover {
    color: var(--accent-light);
}

/* Contato Form e Grid */
.contact-wrapper {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
}

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

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    color: var(--accent-light);
}

.contact-info-content h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-info-content p, 
.contact-info-content a {
    font-size: 1.1rem;
}

/* Formulário Estilizado */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-light);
    box-shadow: var(--shadow-gold-glow);
}

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

/* Checkbox Personalizado LGPD nos Formulários */
.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-checkbox-label input {
    margin-top: 4px;
    accent-color: var(--accent-primary);
}

.form-checkbox-label a {
    color: var(--accent-light);
    text-decoration: underline;
}

/* Validação Visual de Form */
.form-control.error {
    border-color: #E63946;
}

.form-error-msg {
    color: #E63946;
    font-size: 0.8rem;
    margin-top: 6px;
    display: none;
}

.form-success-alert {
    background-color: rgba(46, 117, 89, 0.15);
    border: 1px solid #2E7559;
    border-radius: var(--border-radius-sm);
    padding: 20px;
    color: #A3E2C9;
    margin-bottom: 24px;
    display: none;
}

/* Iframe Mapa */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Estilo escuro premium para o mapa */
}

/* ==========================================================================
   LANDING PAGE (`/lp/agendar-consulta.html`)
   ========================================================================== */
.lp-body {
    background-color: var(--bg-primary);
}

.lp-header {
    height: 80px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-surface);
}

.lp-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.lp-grid {
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr;
    padding: 60px 0;
}

@media (min-width: 1024px) {
    .lp-grid {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background-color: rgba(212, 163, 115, 0.1);
    border: 1px solid rgba(212, 163, 115, 0.2);
    color: var(--accent-light);
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.lp-hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .lp-hero-title {
        font-size: 3.2rem;
    }
}

.lp-hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.lp-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin-bottom: 40px;
}

.lp-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.lp-feature-item svg {
    color: var(--accent-light);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.lp-form-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.lp-form-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.lp-form-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ==========================================================================
   PÁGINAS LEGAIS (Privacidade, Termos, Cookies, Aviso, LGPD)
   ========================================================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--accent-light);
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 10px;
}

.legal-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.legal-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-weight: bold;
}

.cookie-table-container {
    overflow-x: auto;
    margin: 30px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cookie-table th, .cookie-table td {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background-color: var(--bg-surface);
    color: var(--text-primary);
    font-weight: 600;
}

/* ==========================================================================
   COMPONENTE: FOOTER (COMPLETO E GLOBAL)
   ========================================================================== */
.footer {
    background-color: #0d0d0d;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-top {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 1.8fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 48px;
    width: auto;
    align-self: flex-start;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info-item {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-info-item svg {
    color: var(--accent-light);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Rodapé Final com Detalhes Corporativos Completos (Essencial Google Ads) */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1024px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-corp-details {
    max-width: 700px;
}

.footer-corp-details p {
    margin-bottom: 6px;
}

.footer-copyright {
    white-space: nowrap;
}

/* ==========================================================================
   COMPONENTE: BANNER DE COOKIES LGPD (DINÂMICO)
   ========================================================================== */
.lgpd-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 9999;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
    pointer-events: none;
}

.lgpd-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (min-width: 1024px) {
    .lgpd-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px 30px;
    }
}

.lgpd-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 700px;
}

.lgpd-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.lgpd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lgpd-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}

.lgpd-btn-accept {
    background-color: var(--accent-primary);
    color: var(--text-primary);
}

.lgpd-btn-accept:hover {
    background-color: var(--accent-secondary);
}

.lgpd-btn-reject {
    background-color: transparent;
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.lgpd-btn-reject:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.lgpd-btn-pref {
    background-color: transparent;
    color: var(--accent-light);
    border-color: var(--accent-light);
}

.lgpd-btn-pref:hover {
    background-color: rgba(214, 163, 115, 0.05);
}

/* Modal de Preferências de Cookies */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    padding: 20px;
}

.cookie-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.cookie-modal-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform var(--transition-normal);
}

.cookie-modal.show .cookie-modal-card {
    transform: scale(1);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.cookie-modal-title {
    font-size: 1.4rem;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--text-primary);
}

.cookie-modal-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.cookie-option {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin-bottom: 16px;
    background-color: var(--bg-card);
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-option-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.cookie-option-status {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-light);
}

/* Switch Customizado */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-secondary);
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-primary);
}

input:checked + .slider:before {
    transform: translateX(22px);
    background-color: var(--text-primary);
}

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-option-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   COMPONENTE: WHATSAPP FLUTUANTE (ANIMAÇÃO PREMIUM)
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* Animação de pulso e glow sutil para atenção visual ética */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.6;
    z-index: -1;
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ==========================================================================
   ANIMAÇÕES DE SCROLL (AOS SUAVE POR CSS/JS)
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* custom 404 styling */
.error-404-wrapper {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px;
}

.error-404-code {
    font-family: var(--font-serif);
    font-size: 6rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 20px;
}

.error-404-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.error-404-desc {
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
}
