/* ===================== FOOTER ===================== */
.site-footer {
    background: #111111;
    color: #BBBBBB;
    position: relative;
    overflow: hidden;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%),
        repeating-linear-gradient(120deg, transparent 0 80px, rgba(201,168,76,0.03) 80px 81px);
}
.footer__top-line {
    position: absolute; top: 0; left: 0; height: 3px; width: 0;
    background: #C9A84C;
}
.footer__top-line.aos-animate { animation: footer-line-grow 1.2s ease forwards; }
@keyframes footer-line-grow { from { width: 0; } to { width: 100%; } }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 90px 0 60px; position: relative; z-index: 1; }
.footer__logo { height: 78px; width: auto; margin-bottom: 20px; }
.footer__col p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; color: #BBBBBB; }
.footer__col h4 { color: #C9A84C; font-family: 'Outfit', sans-serif; font-size: 17px; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer__col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: #C9A84C; }
.footer__links li { margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 12px; }
.footer__links li:last-child { border-bottom: none; }
.footer__links li a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #BBBBBB; transition: color 0.2s ease, transform 0.2s ease; }
.footer__links li a:hover { color: #C9A84C; transform: translateX(4px); }
.footer__link-arrow { width: 14px; height: 14px; flex-shrink: 0; color: #C9A84C; transition: transform 0.2s ease; }
.footer__links li a:hover .footer__link-arrow { transform: translateX(2px); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; background: #1E1E1E; display: flex; align-items: center; justify-content: center; color: #BBBBBB; transition: all 0.25s ease; }
.footer__social a:hover { background: #C9A84C; color: #111; transform: scale(1.15); }
.footer__social .icon { width: 17px; height: 17px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; color: #BBBBBB; }
.footer__contact .icon { color: #C9A84C; flex-shrink: 0; margin-top: 2px; }
.footer__contact a { color: #BBBBBB; transition: color 0.2s ease; }
.footer__contact a:hover { color: #C9A84C; }
.footer__whatsapp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: #fff; font-weight: 600; font-size: 13.5px;
    padding: 10px 18px; border-radius: 30px; margin: 6px 0 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer__whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }
.footer__map { border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.footer__map iframe { width: 100%; height: 140px; border: 0; display: block; filter: grayscale(0.3) invert(0.92) contrast(0.9); }
.footer__bottom { background: #0A0A0A; border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; position: relative; z-index: 1; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #888888; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: #888888; transition: color 0.2s ease; }
.footer__legal a:hover { color: #C9A84C; }

.whatsapp-float {
    position: fixed; bottom: 26px; right: 26px; z-index: 300;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
    animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float .icon { width: 28px; height: 28px; }
@keyframes pulse-wa { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5);} 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0);} }
