/* =========================================================
   FOOTER PREMIUM – FLAT / CLEAN
========================================================= */

.footer {
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    padding: 50px 0 20px;
    margin-top: 60px;
    color: #333;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

/* LOGO */
.footer-logo img {
    height: 55px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* COLUNAS */
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #111;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #333;
    text-decoration: none;
    transition: .2s;
}

.footer-col a:hover {
    color: #0081c9;
}

/* REDES SOCIAIS */
.social-links a {
    font-size: 20px;
    margin-right: 12px;
    text-decoration: none;
    color: #333;
}

.social-links a:hover {
    color: #0081c9;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #eaeaea;
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 14px;
    color: #666;
}

/* MOBILE */
@media (max-width: 600px) {
    .footer {
        padding: 40px 0 15px;
    }
}
/* LINKS LEGAIS */
.footer-legal {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-legal a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #0081c9;
}
.social-links {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: .25s;
    color: #fff; /* usa currentColor no SVG*/
}

.social-icon:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-3px);
}
/* =========================================================
   BOTÃO FLUTUANTE WHATSAPP
========================================================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 62px;
    height: 62px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform .2s ease, box-shadow .2s ease;
    z-index: 9999;
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}

/* MOBILE — um pouco menor */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}
.whatsapp-float {
    z-index: 999999 !important;
}
