/* ==========================================
   FOOTER ACTUALIZADO
   ========================================== */
.footer {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    color: #999;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-top: 2px solid rgba(255, 30, 0, 0.3);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* --- Links izquierda --- */
.footer-links {
    display: flex;
    gap: 2rem;
    flex-shrink: 0;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-group-title {
    color: #ff1e00;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.1rem;
    font-family: 'AutobusOmnibus', sans-serif;
}

.footer-links a {
    color: #888;
    font-size: 0.72rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #ff1e00;
}

/* Subcolumnas para Agulla · Puente · Andersen */
.footer-group-title--full {
    display: block;
    margin-bottom: 0.4rem;
}

.footer-subcolumns {
    display: flex;
    gap: 1.2rem;
}

.footer-subcol {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-subcol-label {
    color: #555;
    font-size: 0.6rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0.15rem;
}

/* --- Centro --- */
.footer-center {
    text-align: center;
    flex: 1;
}

.footer-center h2 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.1rem;
}

.footer-center p {
    font-size: 0.75rem;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

/* --- Derecha: T&C --- */
.footer-right {
    flex-shrink: 0;
    text-align: right;
}

.footer-terms-link {
    color: #666;
    font-size: 0.72rem;
    font-family: 'Poppins', sans-serif;
    text-decoration: underline;
    text-decoration-color: rgba(255,30,0,0.3);
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-terms-link:hover {
    color: #ff1e00;
}

/* --- Responsive: ocultar links en mobile para no saturar --- */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        padding: 0.8rem 1rem;
        gap: 0.5rem;
    }

    .footer-links {
        display: none; /* En mobile se ocultan para mantener el footer compacto */
    }

    .footer-center h2 {
        font-size: 0.85rem;
    }

    .footer-center p {
        font-size: 0.65rem;
    }

    .footer-right {
        text-align: center;
    }
}