/* --- Variáveis de Cores (Fácil de alterar) --- */
:root {
    --brand-primary: #2D8FD5; /* Azul da Logo */
    --brand-dark: #1F6FA8;    /* Azul mais escuro para hover */
    --brand-text: #333333;    /* Cinza escuro da logo */
}

/* --- Geral --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--brand-text);
}

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

.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-primary:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
}

.btn-outline-primary {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-outline-primary:hover {
    background-color: var(--brand-primary);
    color: #fff;
}

/* --- Navbar (Agora Branca para destacar a Logo) --- */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link {
    color: var(--brand-text) !important;
    font-weight: 500;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-primary) !important;
}

/* Logo na Navbar */
.navbar-brand img {
    max-height: 50px; /* Ajuste conforme necessário */
}

/* --- Hero Section --- */
.hero-section {
    /* Gradiente usando o Azul da PGM */
    background: linear-gradient(135deg, rgba(45, 143, 213, 0.9) 0%, rgba(31, 111, 168, 0.85) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1352&q=80');
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px 0;
    min-height: 600px;
}

/* --- Ícones --- */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    background-color: var(--brand-primary) !important; /* Força o azul da marca */
}

.feature-box:hover .icon-circle {
    transform: scale(1.1);
    background-color: var(--brand-dark) !important;
}

/* --- Logos dos Clientes (Grayscale) --- */
.logo-img {
    max-height: 80px;
    opacity: 0.6;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* --- Botão WhatsApp --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #fff;
}

/* --- Banner LGPD (Cole no final do style.css) --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Garante que fique acima de tudo */
    border-top: 5px solid var(--brand-primary);
    background-color: #ffffff; /* Garante fundo branco */
    animation: slideUp 0.8s ease-out;
}

/* Animação de entrada suave */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}