/* ==========================================================================
   AFF Advocacia Empresarial - Style System (Premium & Dark Elegance)
   ========================================================================== */

/* 1. VARIÁVEIS DO DESIGN SYSTEM */
:root {
    --bg-deep-black: #07090e;      /* Preto profundo do fundo principal */
    --bg-card-dark: #0f131f;       /* Fundo cinza escuro para seções e cards */
    --gold-primary: #c5a880;       /* Dourado sofisticado acetinado */
    --gold-hover: #b2956d;         /* Dourado para hovers */
    --gold-light: rgba(197, 168, 128, 0.15); /* Dourado translúcido */
    --text-light: #ffffff;         /* Títulos brancos puros */
    --text-muted: #a9b2c3;         /* Parágrafos e subtítulos legíveis */
    
    /* Fontes */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    
    /* Transições */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. CONFIGURAÇÕES GERAIS */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg-deep-black);
    color: #cbd5e1;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

p {
    color: #cbd5e1;
}

.text-muted {
    color: #a9b2c3 !important;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: var(--font-serif);
    color: var(--text-light);
    font-weight: 500;
}

.text-gold {
    color: var(--gold-primary) !important;
}

.bg-dark-section {
    background-color: var(--bg-card-dark);
}

/* 3. BOTÕES PREMIUM */
.btn-gold {
    background-color: var(--gold-primary);
    color: var(--bg-deep-black) !important;
    border: 1px solid var(--gold-primary);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 2px;
    padding: 12px 28px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold-primary) !important;
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.3);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold-primary) !important;
    border: 1px solid var(--gold-primary);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 2px;
    padding: 12px 28px;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background-color: var(--gold-primary);
    color: var(--bg-deep-black) !important;
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}

/* 4. HEADER & NAVBAR (Glassmorphism) */
.header-main {
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 1030;
}

.header-main.scrolled {
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    text-decoration: none;
}

.logo-line {
    width: 100%;
    height: 1.5px;
    background-color: var(--gold-primary);
    margin: 2px 0;
}

.logo-text-top {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text-light);
    text-transform: uppercase;
    margin: 2px 0;
}

.logo-text-bottom {
    font-family: var(--font-serif);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin: 2px 0;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px !important;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--gold-primary);
}

/* 5. HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: var(--bg-deep-black);
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0.45;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 25px;
}

.hero-headline span {
    font-weight: 600;
    color: var(--gold-primary);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 10s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 9, 14, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

/* 6. ESTATÍSTICAS */
.stats-section {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background-color: rgba(15, 19, 31, 0.4);
}

.stat-item {
    padding: 30px 15px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

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

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 300;
}

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

/* 7. QUEM SOMOS */
.about-section {
    padding: 100px 0;
    background-color: #ffffff !important;
    color: #334155;
}

.about-section .section-title {
    color: #07090e !important;
}

.about-section p {
    color: #475569 !important;
}

.about-grid-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: var(--transition-smooth);
    height: 100%;
}

.about-grid-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(197, 168, 128, 0.25);
}

.about-grid-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.about-grid-title {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-family: var(--font-sans);
    font-weight: 600;
    color: #07090e;
}

.about-grid-item p {
    color: #556375 !important;
    font-size: 0.9rem;
}

/* 8. ÁREAS DE ATUAÇÃO (Layout 5 Colunas com Cartões Premium) */
.areas-section {
    padding: 100px 0;
    background-color: #07090e;
}

/* Força 5 colunas por linha em telas grandes (Página dedicada) */
@media (min-width: 1200px) {
    .areas-grid {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 20px !important;
    }
    .areas-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
    }
}

/* Força 3 colunas por linha na Home (Exibição de 6 cards) */
@media (min-width: 992px) {
    .areas-home-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }
    .areas-home-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
    }
}

.area-card {
    background: #0d111b;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    padding-bottom: 60px; /* espaço para o link da seta absoluta */
}

.area-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.area-card-image-wrapper {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.area-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.7);
    transition: transform 0.6s ease;
}

.area-card:hover .area-card-image {
    transform: scale(1.08);
}

.area-card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 9, 14, 0.2) 0%, #0d111b 100%);
    z-index: 2;
}

.area-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.area-title {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.area-desc {
    color: #8a99ad !important;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.area-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--gold-primary);
    font-size: 1rem;
    transition: transform 0.3s ease;
    text-decoration: none;
}

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

/* 9. NOSSO PROCESSO */
.process-section {
    padding: 100px 0;
    background-color: #ffffff !important;
    color: #334155;
}

.process-section .section-title {
    color: #07090e !important;
}

.process-section p {
    color: #475569 !important;
}

.process-flow-container {
    margin-top: 50px;
}

.process-flow-card-wrapper {
    padding-top: 20px; /* Espaço para o número flutuante no topo */
    width: 100%;
}

@media (min-width: 992px) {
    .process-flow-card-wrapper {
        width: 17%; /* 5 colunas com espaço para as setas */
    }
}

.process-flow-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--gold-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.3);
}

.process-flow-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: var(--transition-smooth);
    padding-top: 30px !important; /* Espaço extra interno no topo do card */
}

.process-flow-card-wrapper:hover .process-flow-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 168, 128, 0.15);
    border-color: var(--gold-primary);
}

.process-flow-icon {
    font-size: 2.2rem;
    color: #334155;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.process-flow-card-wrapper:hover .process-flow-icon {
    color: var(--gold-primary);
}

.process-flow-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: #07090e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-flow-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #64748b !important;
    line-height: 1.5;
    margin-bottom: 0;
}

.process-flow-arrow {
    font-size: 1.2rem;
    color: #07090e;
    align-self: center;
    margin-top: 20px; /* Alinha verticalmente com o centro do card */
}

/* 10. DEPOIMENTOS (Novo Layout Split Premium) */
.testimonials-split-section {
    background-color: #07090e;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.bg-deep-navy {
    background-color: #07090e;
    position: relative;
    z-index: 2;
}

.btn-outline-gold-premium {
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    background: transparent;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-outline-gold-premium:hover {
    background-color: var(--gold-primary);
    color: #07090e;
    border-color: var(--gold-primary);
}

.btn-outline-gold-premium:hover .transition-arrow {
    transform: translateX(5px);
}

.testimonial-split-card {
    background: transparent;
    border: none;
}

.testimonial-split-text {
    font-family: var(--font-serif);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.author-company {
    color: var(--gold-primary) !important;
}

/* 11. DIFERENCIAIS */
.features-section {
    padding: 100px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(197, 168, 128, 0.08);
    border: 1px solid rgba(197, 168, 128, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 1.3rem;
    color: var(--gold-primary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
    background: var(--gold-primary);
    color: var(--bg-deep-black);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.3);
}

.feature-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
}

/* 12. LOGOS DE CLIENTES */
.clients-section {
    padding: 60px 0;
    background-color: rgba(15, 19, 31, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.client-logo-item img {
    max-width: 130px;
    max-height: 50px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.client-logo-item:hover img {
    opacity: 0.9;
    filter: grayscale(0%);
}

/* 13. FAQ (Accordion Premium) */
.faq-section {
    padding: 100px 0;
}

.accordion-item {
    background-color: var(--bg-card-dark) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    margin-bottom: 15px;
    border-radius: 3px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--bg-card-dark) !important;
    color: var(--text-light) !important;
    font-family: var(--font-sans);
    font-weight: 500;
    padding: 22px 25px !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--gold-primary) !important;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(7, 9, 14, 0.2);
    color: var(--text-muted);
    padding: 25px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* 14. CTA FINAL */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--bg-deep-black);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(50px);
    pointer-events: none;
}

.cta-box {
    border: 1px solid rgba(197, 168, 128, 0.15);
    background: rgba(15, 19, 31, 0.6);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 4px;
}

/* Novo CTA Horizontal Premium */
.cta-box-horizontal {
    border: 1px solid rgba(197, 168, 128, 0.12) !important;
    background: rgba(13, 17, 27, 0.8) !important;
    backdrop-filter: blur(10px);
    border-radius: 8px !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-box-horizontal:hover {
    border-color: rgba(197, 168, 128, 0.25) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-icon-box {
    width: 75px;
    height: 75px;
    min-width: 75px;
    border: 1px solid rgba(197, 168, 128, 0.25);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.cta-box-horizontal:hover .cta-icon-box {
    border-color: rgba(197, 168, 128, 0.4) !important;
    background: rgba(197, 168, 128, 0.05);
}

/* 15. CONTATO & FORMULÁRIOS */
.contact-section {
    padding: 100px 0;
}

.contact-info-card {
    background: var(--bg-card-dark);
    padding: 40px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    height: 100%;
}

.form-control {
    background-color: rgba(7, 9, 14, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--text-light) !important;
    border-radius: 2px !important;
    padding: 14px 18px !important;
    font-size: 0.9rem !important;
    transition: var(--transition-smooth) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important; /* Deixa o texto do placeholder mais claro/visível no fundo escuro */
}

.form-control:focus {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.15) !important;
}

/* 16. FOOTER */
.footer-main {
    background-color: #030407;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.footer-title[aria-expanded="true"] .transition-rotate {
    transform: rotate(180deg);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
}

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

.footer-contact li {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.text-muted-hover {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.text-muted-hover:hover {
    color: var(--gold-primary);
}

.mini-map-card {
    border: 1px solid rgba(197, 168, 128, 0.15);
    background: rgba(7, 9, 14, 0.4);
    transition: var(--transition-smooth);
}

.mini-map-card:hover {
    border-color: var(--gold-primary);
    background: rgba(197, 168, 128, 0.05);
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--gold-primary);
}

/* 17. WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* 17.1. BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    background-color: #07090e;
    color: #c5a880;
    border: 1px solid #c5a880;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 100;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.back-to-top:hover {
    background-color: #c5a880;
    color: #07090e;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* 18. MODAIS */
.border-gold-light {
    border: 1px solid rgba(197, 168, 128, 0.3) !important;
}

/* 19. RESPONSIVO */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--bg-deep-black);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 20px;
        margin-top: 15px;
        border-radius: 4px;
    }
    
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .process-timeline::before,
    .process-progress-bar {
        display: none;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
    
    .hero-subpage-section {
        padding-top: 130px !important;
        padding-bottom: 40px !important;
    }
}

/* Estilo padrão para subpáginas (Desktop) */
.hero-subpage-section {
    padding-top: 160px !important;
    padding-bottom: 70px !important;
}

/* 20. COOKIE CONSENT BANNER (LGPD) */
.cookie-consent-banner {
    position: fixed;
    bottom: -120px;
    left: 20px;
    right: 20px;
    background: rgba(7, 9, 14, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 12px;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
}

.cookie-consent-banner.show {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-text {
    color: #a9b2c3;
    font-size: 0.88rem;
    line-height: 1.6;
}

.cookie-consent-text a {
    transition: var(--transition-smooth);
}

.cookie-consent-text a:hover {
    color: #fff !important;
}

@media (max-width: 767px) {
    .cookie-consent-banner {
        left: 15px;
        right: 15px;
        padding: 15px;
        bottom: -200px;
    }
    .cookie-consent-banner.show {
        bottom: 15px;
    }
    .cookie-consent-text {
        font-size: 0.82rem;
        text-align: center;
    }
    .cookie-consent-buttons {
        width: 100%;
    }
    .cookie-consent-buttons button {
        width: 100%;
    }
}
