﻿/* ===== FOOTER FIJO COMO NAVBAR ===== */
.gp-footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040; /* un poco debajo del navbar (1050) */
    background: rgba(14,16,24,0.55);
    backdrop-filter: blur(40px);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -10px 40px rgba(0,0,0,.35);
    color: #eaf2ff;
    font-size: 14px;
    padding: 10px 20px;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* Izquierda */
.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 28px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,.3));
}

/* Derecha */
.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    color: #dce3f7;
    font-size: 20px;
    transition: all 0.3s ease;
}

    .social-link:hover {
        color: #00e1ff;
        transform: translateY(-2px);
    }

/* Para que el contenido no se tape */
body {
    padding-bottom: 70px !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
