/* --- FOOTER (RODAPÉ) --- */
.main-footer {
    width: 100%;
    /* Mantive o gradiente inverso bonito */
    background: linear-gradient(to bottom, var(--azul-ceu), var(--azul-profundo));
    color: var(--branco);
    
    /* AJUSTE 1: Rodapé "Mais Fino" (Reduzi de 60px para 30px) */
    padding-top: 18px; 
    padding-bottom: 5px;
    
    /* margin-top: 60px; */
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    /* AJUSTE: Reduzi margem inferior para colar mais na linha divisória */
    margin-bottom: 25px; 
}

/* Coluna 1: Marca */
.footer-logo h3 {
    font-size: 1.6rem; /* Levemente menor */
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 320px;
}

/* Coluna 2 e 3: Títulos */
.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px; /* Menos espaço */
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background-color: var(--laranja-averah);
    border-radius: 2px;
}

/* Links */
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; /* Mais compactos */ }

.footer-links a {
    text-decoration: none;
    color: var(--branco);
    opacity: 0.8;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--laranja-averah);
    transform: translateX(5px);
}

/* --- AJUSTE 2: RODAPÉ DO RODAPÉ HORIZONTAL --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    
    /* FLEXBOX PARA ALINHAR NA HORIZONTAL */
    display: flex;
    justify-content: space-between; /* Um na esquerda, outro na direita */
    align-items: center;
    
    font-size: 0.85rem;
    opacity: 0.8;
}

.cls-area {
    text-align: right;
}

.cls-credit {
    font-weight: 600;
    color: var(--branco);
    letter-spacing: 0.5px;
}

.cls-full {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-left: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-desc { margin: 0 auto; }
    
    /* No celular, volta a ficar um embaixo do outro para caber */
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .cls-area { text-align: center; }
}
/* --- BOTÃO WHATSAPP FLUTUANTE --- */
.btn-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Verde WhatsApp */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10000; /* Garante que fique acima de tudo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Efeito ao passar o mouse */
.btn-whatsapp-float:hover {
    background-color: #128C7E; /* Verde mais escuro */
    transform: scale(1.1); /* Cresce um pouco */
}

/* Ícone SVG dentro do botão */
.btn-whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

/* Animação de Pulsação Contínua (Chama atenção) */
.pulse-float {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajuste para Celular (Não ficar muito na borda) */
@media (max-width: 768px) {
    .btn-whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .btn-whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}