/* =========================================
   1. VARIÁVEIS E GERAL
   ========================================= */
:root {
    /* --- PALETA HARMÔNICA --- */
    --brand-primary: #1483a5;   /* Azul Petróleo */
    --brand-light:   #20b3ed;   /* Azul Ciano */
    --brand-action:  #23e89c;   /* Verde Mentol */
    --text-dark: #1e293b;
    --bg-soft: #f4f7f6;
}

body { 
    font-family: 'Inter', 'Roboto', sans-serif; 
    color: #555; 
    background-color: var(--bg-soft); 
    overflow-x: hidden; 
}

h1, h2, h3, h4, h5, h6 { 
    color: var(--brand-primary); 
    font-weight: 800; 
    letter-spacing: -0.5px; 
}

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

/* Utilitários */
.text-cyan-inter { color: var(--brand-light) !important; }
.bg-cyan-inter { background-color: var(--brand-light) !important; color: white; }
.text-primary { color: var(--brand-primary) !important; }
.font-weight-800 { font-weight: 800; }
.shadow-custom { box-shadow: 0 10px 25px rgba(20, 131, 165, 0.25); }

/* =========================================
   2. NAVBAR E HEADER (Vindo do header.php)
   ========================================= */
#mainNav.navbar { padding: 10px 0; transition: all 0.4s ease-in-out; }
#mainNav .navbar-brand img { max-height: 60px; width: auto; transition: all 0.3s ease; }

/* Navbar Transparente */
#mainNav.navbar-transparent { background: transparent !important; box-shadow: none; padding-top: 20px; }
#mainNav.navbar-transparent .nav-link { color: rgba(255,255,255,0.95) !important; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
#mainNav.navbar-transparent .nav-link:hover { color: var(--brand-action) !important; opacity: 1; }
#mainNav.navbar-transparent .logo-colorida { display: none !important; }
#mainNav.navbar-transparent .logo-branca { display: block !important; }

/* Navbar Scrolled (Branca) */
#mainNav.navbar-scrolled { background: #fff !important; box-shadow: 0 4px 20px rgba(0,0,0,0.08); padding: 10px 0; }
#mainNav.navbar-scrolled .nav-link { color: var(--brand-primary) !important; text-shadow: none; }
#mainNav.navbar-scrolled .nav-link:hover { color: var(--brand-light) !important; }
#mainNav.navbar-scrolled .logo-branca { display: none !important; }
#mainNav.navbar-scrolled .logo-colorida { display: block !important; }

/* Links do Menu */
#mainNav .nav-link { 
    font-weight: 700; margin: 0 15px; text-transform: uppercase; 
    font-size: 13px; letter-spacing: 0.5px; transition: 0.3s; 
}
#mainNav.navbar-transparent .nav-link.active { color: var(--brand-action) !important; border-bottom: 2px solid var(--brand-action); }
#mainNav.navbar-scrolled .nav-link.active { color: var(--brand-light) !important; font-weight: 800; }

#mainNav .navbar-toggler { border: none !important; outline: none !important; box-shadow: none !important; }

/* Mobile Navbar */
@media (max-width: 991px) {
    #mainNav.navbar-transparent .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    #mainNav.navbar-scrolled .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(20, 131, 165, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    #mainNav .navbar-collapse {
        background: #ffffff; padding: 20px; border-radius: 15px; margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15); text-align: center; border-top: 4px solid var(--brand-primary);
    }
    #mainNav .navbar-collapse .nav-link { color: var(--text-dark) !important; padding: 12px 0; border-bottom: 1px solid #f0f0f0; text-shadow: none !important; }
    #mainNav .navbar-collapse .nav-link.active { color: var(--brand-primary) !important; }
}

/* =========================================
   3. BOTÕES E COMPONENTES GLOBAIS
   ========================================= */
/* Botões Flutuantes */
.floating-buttons { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn { padding: 12px 25px; border-radius: 50px; color: white; font-weight: bold; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,0.3); display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; font-size: 14px; }
.float-sim { background: linear-gradient(135deg, var(--brand-light), var(--brand-primary)); }
.float-zap { background: var(--brand-action); color: #0f5132; }
.float-btn:hover { color: white; transform: scale(1.05); }
.float-zap:hover { color: #0f5132; }

/* Botão CTA Principal */
.btn-cta-main {
    background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-primary) 100%);
    color: white !important; border-radius: 50px; padding: 12px 25px;
    font-weight: 700; text-transform: uppercase; border: none; transition: all 0.3s ease; 
    box-shadow: 0 10px 25px rgba(20, 131, 165, 0.25); white-space: nowrap; font-size: 13px;
}
.btn-cta-main:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(20, 131, 165, 0.4); filter: brightness(1.1); }

/* Botão Branco Action */
.btn-white-action {
    background: #ffffff; color: var(--brand-primary) !important; border: none; font-weight: 700;
    padding: 10px 30px; border-radius: 50px; text-transform: uppercase; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: 0.3s;
}
.btn-white-action:hover { transform: scale(1.05); color: var(--brand-light) !important; }

/* Box CTA Gradiente (Usado no footer e páginas) */
.cta-box-gradient {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-light) 100%);
    position: relative; overflow: hidden; border: none; z-index: 1; color: white;
}
.cta-gradient-full {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-light) 100%);
    color: white; border-radius: 20px; padding: 35px 20px; text-align: center; position: relative; overflow: hidden;
}
.cta-deco { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.08); z-index: 0; pointer-events: none; }

/* =========================================
   4. FOOTER MODERN
   ========================================= */
.footer-modern { background-color: #1e293b; position: relative; overflow: hidden; }
.decorative-circle { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.03); pointer-events: none; z-index: 0; }
.circle-1 { width: 450px; height: 450px; top: -200px; right: -150px; }
.circle-2 { width: 300px; height: 300px; bottom: -150px; left: -100px; background: rgba(255, 255, 255, 0.02); }
.footer-content-wrapper { position: relative; z-index: 1; }
.social-icon { transition: transform 0.2s, color 0.2s; }
.social-icon:hover { transform: translateY(-3px); color: #fff !important; }

/* =========================================
   5. PÁGINA ESPECÍFICA: HOME (INDEX)
   ========================================= */
.hero-section { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; padding: 0; }
.hero-slider-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.carousel-item { height: 100vh; min-height: 700px; }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(20, 131, 165, 0.4) 0%, rgba(10, 60, 80, 0.85) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; color: white; text-align: center; margin-top: -60px; }
.hero-title { font-size: 4rem; line-height: 1.1; margin-bottom: 25px; font-weight: 800; color: white; text-shadow: 0 4px 15px rgba(0,0,0,0.4); }
.hero-subtitle { font-size: 1.4rem; opacity: 0.95; margin-bottom: 40px; font-weight: 300; color: white; text-shadow: 0 2px 8px rgba(0,0,0,0.4); max-width: 700px; margin-left: auto; margin-right: auto; }
.bg-badge-brand { background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-primary) 100%) !important; color: #ffffff !important; box-shadow: 0 4px 15px rgba(32, 179, 237, 0.3); }

/* Clientes Logos */
.client-logo { max-height: 80px; max-width: 100%; width: auto; object-fit: contain; transition: transform 0.3s ease; filter: grayscale(0%); opacity: 0.7; }
.client-logo:hover { transform: scale(1.1); filter: grayscale(0%); opacity: 1; }
.logo-container { display: flex; align-items: center; justify-content: center; height: 100px; }

/* =========================================
   6. PÁGINA ESPECÍFICA: CONSULTORIA
   ========================================= */
.page-header {
    position: relative; height: 50vh; min-height: 400px; display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center;
}
.header-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(20, 131, 165, 0.4) 0%, rgba(10, 60, 80, 0.9) 100%);
    z-index: 1;
}
.header-content { position: relative; z-index: 2; text-align: center; color: white; margin-top: 40px; }

.image-card-wrapper {
    background: #fff; padding: 15px; border-radius: 30px;
    box-shadow: 0 20px 60px rgba(20, 131, 165, 0.15); border: 1px solid rgba(20, 131, 165, 0.1);
    transition: transform 0.3s ease; height: auto;
}
.image-card-wrapper:hover { transform: translateY(-5px); }
.image-card-wrapper img { border-radius: 20px; width: 100%; height: auto; display: block; }

.method-card {
    background: #fff; padding: 40px 30px; border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.3s;
    border-top: 5px solid transparent; height: 100%; position: relative;
}
.method-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(20, 131, 165, 0.1); border-top-color: var(--brand-light); }
.step-number { font-size: 4rem; font-weight: 900; color: rgba(20, 131, 165, 0.5); position: absolute; top: 10px; right: 20px; z-index: 0; line-height: 1; }
.method-icon { font-size: 2.5rem; color: var(--brand-primary); margin-bottom: 20px; position: relative; z-index: 1; }
.check-list-item { display: flex; align-items: start; margin-bottom: 15px; }
.check-icon { min-width: 25px; height: 25px; background: var(--brand-action); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #0f5132; font-size: 12px; margin-right: 15px; margin-top: 3px; }

/* =========================================
   7. PÁGINA ESPECÍFICA: QUEM SOMOS
   ========================================= */
.content-body p { font-size: 1.15rem; line-height: 1.8; margin-bottom: 25px; color: #4b5563; }
.highlight-box { background-color: #f8fbff; border-left: 5px solid var(--brand-light); padding: 40px; margin: 40px 0; border-radius: 0 15px 15px 0; }
.highlight-text { font-size: 1.25rem; font-style: italic; color: var(--brand-primary); font-weight: 600; }
.video-section-bg { background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%); position: relative; overflow: hidden; }
.bg-decoration { position: absolute; border-radius: 50%; opacity: 0.1; z-index: 0; }
.deco-1 { width: 300px; height: 300px; background: var(--brand-primary); top: -50px; left: -50px; }
.deco-2 { width: 200px; height: 200px; background: var(--brand-action); bottom: 10%; right: 5%; }
.media-card { background: #fff; padding: 30px 20px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; position: relative; z-index: 1; border-bottom: 4px solid transparent; }
.media-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(20, 131, 165, 0.15); border-bottom-color: var(--brand-light); }
.phone-mockup { width: 100%; max-width: 260px; margin: 0 auto 25px; border-radius: 30px; border: 8px solid #2d3436; background: #000; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.2); position: relative; aspect-ratio: 9 / 16; display: flex; }
.phone-mockup::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 40%; height: 18px; background: #2d3436; border-radius: 0 0 10px 10px; z-index: 2; }
.phone-mockup video { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 20px; }

/* =========================================
   8. PÁGINA ESPECÍFICA: SERVIÇOS
   ========================================= */
.page-header-section { position: relative; background-size: cover; background-position: center; background-attachment: scroll; height: 500px; display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 0; }
.page-header-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(20, 131, 165, 0.4) 0%, rgba(10, 60, 80, 0.85) 100%); z-index: 1; }
.page-header-content { position: relative; z-index: 2; color: white; text-align: center; padding-top: 50px; }
.service-card { background: #fff; padding: 3rem 2rem; height: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); border-bottom: 5px solid transparent; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(20, 131, 165, 0.15); border-bottom-color: var(--brand-light); }
.icon-wrapper { width: 80px; height: 80px; background: rgba(20, 131, 165, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: var(--brand-primary); font-size: 2rem; transition: 0.3s; }
.service-card:hover .icon-wrapper { background: var(--brand-primary); color: white; }
.service-list li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 15px; color: #000000; font-weight: 500; }
.service-list li i { position: absolute; left: 0; top: 3px; color: var(--brand-action); font-size: 16px; }

/* =========================================
   9. CUSTOM TABS (Para Seção de Logos)
   ========================================= */
.nav-pills-custom .nav-link {
    color: #000000;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-pills-custom .nav-link:hover {
    border-color: var(--brand-light);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

.nav-pills-custom .nav-link.active {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
    box-shadow: 0 5px 15px rgba(20, 131, 165, 0.3);
}

/* Animação suave ao trocar de aba */
.tab-pane {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   10. SEÇÃO 360º EDITORIAL
   ========================================= */
.journey-wrapper {
    position: relative;
    padding: 20px 0;
}

/* A linha cinza que conecta tudo */
.journey-line {
    position: absolute;
    top: 40px; /* Alinha com o meio dos ícones */
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e9ecef;
    z-index: 0;
}

.journey-item {
    position: relative;
    z-index: 1; /* Fica acima da linha */
    text-align: center;
    transition: transform 0.3s ease;
}

.journey-item:hover {
    transform: translateY(-5px);
}

/* O Círculo do Ícone */
.journey-icon-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 3px solid #e9ecef; /* Borda cinza inicial */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--brand-primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); /* Sombra suave */
    transition: all 0.3s ease;
}

/* Efeito ao passar o mouse */
.journey-item:hover .journey-icon-box {
    border-color: var(--brand-action); /* Borda fica verde */
    background: var(--brand-primary); /* Fundo fica azul */
    color: #fff; /* Ícone fica branco */
    box-shadow: 0 15px 30px rgba(20, 131, 165, 0.3);
}

.journey-title {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Ajuste para Celular (Linha some e vira lista vertical) */
@media (max-width: 768px) {
    .journey-line { display: none; }
    .journey-item { margin-bottom: 40px; }
}

.btn-white-action {
        background-color: #ffffff !important;
        color: var(--brand-primary) !important; /* Ou a cor azul do seu site */
        border: 2px solid #ffffff !important;
        transition: all 0.3s ease !important;
    }

    /* Ajuste para o Hover: Mantém branco mas adiciona profundidade */
    .btn-white-action:hover {
        background-color: #ffffff !important; /* Garante que continue branco */
        color: var(--brand-primary) !important;
        transform: translateY(-3px); /* Efeito sutil de subida */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important; /* Sombra para destacar do fundo */
        border-color: #ffffff !important;
    }

    /* Ajuste para o botão Outline (Simulação Online) */
    .btn-outline-light:hover {
        background-color: #ffffff !important;
        color: var(--brand-primary) !important;
    }

    .service-list {
        list-style: none !important;
        padding-left: 0 !important;
        margin-top: 15px;
    }

    .service-list li {
        position: relative;
        padding-left: 30px; /* Cria o espaço exato para o ícone ficar à esquerda */
        margin-bottom: 12px;
        color: #000000;
        line-height: 1.4;
        display: block; /* Garante que o padding funcione corretamente */
    }

    .service-list li i {
        position: absolute;
        left: 0; /* Fixa o ícone no início do espaço criado pelo padding */
        top: 3px; /* Ajusta a altura do ícone em relação à primeira linha de texto */
        color: #28a745;
        font-size: 1rem;
    }

    /* --- CSS UNIFICADO PARA BANNER DINÂMICO --- */
    
    .hero-section {
        position: relative;
        height: 100vh;
        min-height: 600px;
        overflow: hidden;
    }

    .hero-slider-bg, .carousel-inner, .carousel-item {
        height: 100%;
    }

    /* Trava a imagem para não "pular" na transição */
    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Overlay Azul Suave Restaurado */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(20, 131, 165, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%);
        z-index: 2;
    }

    /* Container de Texto que TRAVA a posição */
    .hero-text-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center; /* Centralização Vertical absoluta */
        justify-content: center; /* Centralização Horizontal absoluta */
        z-index: 5;
        text-align: center;
    }

    /* Força o tamanho da letra a ser IDENTICO em ambos os slides */
    .hero-main-title {
        font-family: 'Inter', sans-serif; /* Garantindo a fonte do seu projeto */
        color: #ffffff;
        font-weight: 800;
        font-size: 3.5rem; /* Ajuste aqui o tamanho global */
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-shadow: 0 4px 15px rgba(0,0,0,0.3);
        margin-top: 0 !important; /* Remove qualquer margem padrão do navegador */
    }

    .hero-main-subtitle {
        color: rgba(255,255,255,0.9);
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* Ajuste para Mobile */
    @media (max-width: 768px) {
        .hero-main-title {
            font-size: 2.2rem;
        }
        .hero-main-subtitle {
            font-size: 1rem;
        }
    }

    .bg-badge-brand {
        background-color: var(--brand-action); /* Cor verde que você usa */
        color: #000;
    }

    /* --- 1. BANNER / HERO (Ajustado para subir o conteúdo) --- */
            .faq-hero-modern {
                position: relative;
                background-image: url('../img/HOME/banner4.jpg'); /* Verifique se o caminho da imagem está correto */
                background-size: cover;
                background-position: center center;
                /* Altura reduzida embaixo (40px) para puxar o menu pra cima */
                padding: 160px 0 40px !important; 
                color: white;
                margin-bottom: 0 !important; 
                overflow: hidden;
            }

            .faq-hero-modern::before {
                content: '';
                position: absolute;
                top: 0; left: 0; right: 0; bottom: 0;
                background: linear-gradient(135deg, rgba(13, 59, 102, 0.95) 0%, rgba(20, 131, 165, 0.9) 100%);
                z-index: 1;
            }

            .faq-hero-content { position: relative; z-index: 2; }

            .faq-breadcrumb {
                font-size: 0.9rem; font-weight: 500; letter-spacing: 1px;
                text-transform: uppercase; color: rgba(255,255,255,0.8);
                margin-bottom: 15px; display: inline-block;
                border: 1px solid rgba(255,255,255,0.3); padding: 5px 15px; border-radius: 20px;
            }

            .faq-hero-modern h1 {
                font-size: 3rem; font-weight: 800; color: #fff !important;
                text-shadow: 0 4px 10px rgba(0,0,0,0.3); margin-bottom: 15px;
            }

            .faq-hero-modern p {
                font-size: 1.2rem; color: rgba(255,255,255,0.95) !important;
                max-width: 700px; margin: 0 auto;
            }

            /* --- 2. MENU LATERAL (SIDEBAR) --- */
            .faq-sidebar {
                position: -webkit-sticky;
                position: sticky;
                /* POSIÇÃO CORRIGIDA: 85px do topo (Cola no header) */
                top: 85px; 
                align-self: start;
                padding-right: 20px;
                margin-top: 30px; 
            }

            .faq-sidebar h5 {
                color: #000 !important; /* PRETO */
                margin-bottom: 25px;
                font-weight: 900 !important;
                text-transform: uppercase;
                font-size: 1rem; /* Fonte maior */
                letter-spacing: 1.2px;
                border-bottom: 2px solid #ddd;
                padding-bottom: 10px;
                opacity: 1 !important;
            }

            .faq-nav .nav-link {
                color: #000 !important; /* PRETO */
                padding: 16px 20px; /* Clique maior */
                border-radius: 10px;
                margin-bottom: 8px;
                font-weight: 700 !important;
                transition: all 0.2s ease;
                border: 1px solid transparent;
                display: flex;
                align-items: center;
                background: transparent;
                font-size: 1.1rem; /* Fonte maior */
                cursor: pointer;
                opacity: 1 !important;
            }

            .faq-nav .nav-link i {
                width: 30px; font-size: 1.2em;
                color: #222 !important; margin-right: 10px;
            }

            .faq-nav .nav-link:hover {
                background-color: rgba(0,0,0,0.05);
                padding-left: 25px;
                color: #000 !important;
            }

            .faq-nav .nav-link.active {
                background-color: #fff !important;
                color: #1483a5 !important;
                box-shadow: 0 4px 15px rgba(0,0,0,0.08);
                border: 1px solid rgba(20, 131, 165, 0.15);
            }
            .faq-nav .nav-link.active i { color: #1483a5 !important; }

/* --- CORREÇÃO: Aplica apenas na FAQ, protegendo a Home --- */
#v-pills-tabContent {
    min-height: 100vh; /* Garante estabilidade só na FAQ */
    display: flex;
    flex-direction: column;
    padding-top: 30px;
}

            .section-title-faq {
                font-size: 2.2rem; font-weight: 900;
                color: #000 !important; /* PRETO */
                margin-bottom: 35px; letter-spacing: -0.5px;
                border-bottom: 2px solid #e0e0e0; padding-bottom: 20px;
            }

            .accordion-item {
                border: 1px solid #e0e0e0; margin-bottom: 20px;
                border-radius: 12px !important; overflow: hidden;
                background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.04);
            }

            .accordion-button {
                font-weight: 800 !important; 
                color: #000 !important; /* PRETO */
                padding: 25px 30px; 
                font-size: 1.25rem; /* Fonte da Pergunta Maior */
                background-color: #fff; box-shadow: none !important;
            }

            .accordion-button:not(.collapsed) {
                color: #000 !important;
                background-color: #f0f9fc; 
            }

            .accordion-body {
                padding: 30px 35px; 
                line-height: 1.9; /* Espaçamento melhor */
                color: #000 !important; /* Resposta em PRETO */
                font-size: 1.15rem; /* Fonte da Resposta Maior */
                font-weight: 500;
            }

            /* --- 4. BOX DE NOTA INTER PLAZA --- */
            .inter-plaza-note {
                background-color: #f2f7f9;
                border-left: 6px solid #1483a5;
                padding: 25px; margin-top: 30px;
                border-radius: 6px; font-size: 1.1rem;
                color: #000 !important;
            }
            .inter-plaza-note strong {
                color: #1483a5; margin-bottom: 8px;
                display: block; font-weight: 800; text-transform: uppercase;
                font-size: 0.95rem;
            }

            /* Mobile */
            @media (max-width: 991px) {
                .faq-sidebar { position: static; margin-bottom: 40px; margin-top: 0; }
                .faq-hero-modern { padding: 140px 0 60px !important; }
            }

            /* =======================================================
    CORREÇÃO DE CORES (Versão Segura)
    Objetivo: Texto preto, mas mantendo ícones e títulos coloridos
   ======================================================= */

/* 1. Muda apenas o texto da lista para PRETO */
.service-list li {
    color: #000000 !important;
    font-weight: 600; /* Deixa levemente mais forte para leitura */
}

/* 2. PROTEÇÃO: Garante que o ícone (o check) continue VERDE */
.service-list li i {
    color: #28a745 !important; /* Força a cor verde original */
}

/* 3. Muda o texto descritivo (parágrafos dentro do card) para PRETO */
.service-card p {
    color: #000000 !important;
}

/* 4. PROTEÇÃO: Garante que títulos dentro do card continuem AZUIS */
.service-card h1, 
.service-card h2, 
.service-card h3, 
.service-card h4, 
.service-card h5 {
    color: #1483a5 !important; /* Força o azul da sua marca */
}