/* Novo Rodapé (Footer) base alinhado com BASE.png */

.h-pre-footer {
    background-color: var(--cor_primaria, #0e2860);
    padding: 60px 20px;
    color: #fff;
}
.h-pre-footer h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff !important;
}
.h-pre-footer p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 30px;
}
.h-pre-footer .h-btn-chamar {
    background: #ffffff;
    color: var(--cor_primaria, #0e2860);
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
}
.h-pre-footer .h-btn-chamar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.h-footer {
    background-color: #05122e;
    color: #fff;
    padding: 80px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.h-footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.h-footer-brand {
    max-width: 320px;
}
.h-footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}
.h-footer-links h4, .h-footer-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.h-footer-links a, .h-footer-info p {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: 0.2s;
}
.h-footer-links a i, .h-footer-info p i {
    width: 25px;
    color: var(--h-blue-brand, #1a56db);
}
.h-footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.copyright {
    background-color: #030a1a;
    color: rgba(255,255,255,0.4);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* WhatsApp Bubble Minimalist */
.botao_whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 10001;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}
.botao_whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    background: #128c7e;
}
.botao_whatsapp span { display: none; }

@media screen and (max-width: 767px) {
    .h-footer-inner { flex-direction: column; text-align: center; align-items: center; }
    .h-footer-links a:hover { transform: none; }
}