/* ============================================================
    ARCHIVO: footer.css
    Componente de pie de página | UrgencLink
    Estructura de 3 columnas con información de contacto,
    enlaces legales, redes sociales y copyright
    ============================================================ */

/* ============================================================
    SECCIÓN 1: ESTRUCTURA PRINCIPAL DEL FOOTER
    ============================================================ */

footer {
    background: linear-gradient(180deg, #081B3D, #061224);
    color: #FFFFFF;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* ===== Decoración de fondo (esferas de luz) ===== */
footer::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #16C2F520, transparent 70%);
    top: -200px;
    right: -150px;
    z-index: 1;
}

footer::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #00E5FF15, transparent 70%);
    bottom: -180px;
    left: -120px;
    z-index: 1;
}

/* ============================================================
    SECCIÓN 2: CONTENEDOR
    ============================================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
    SECCIÓN 3: GRID - 3 COLUMNAS
    ============================================================ */

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================================
    SECCIÓN 4: TÍTULOS
    ============================================================ */

.footer-grid h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: 700;
    font-family: var(--font-sifon);
}

.footer-grid h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #8BE9FF;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: var(--font-sifon);
}

/* ===== Espaciado entre secciones en la misma columna ===== */
.footer-links h4:not(:first-of-type),
.footer-contact h4:not(:first-of-type) {
    margin-top: 28px;
}

/* ============================================================
    SECCIÓN 5: PÁRRAFOS
    ============================================================ */

.footer-grid p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 12px;
    font-size: 15px;
}

/* ============================================================
    SECCIÓN 6: ENLACES
    ============================================================ */

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
    transition: 0.3s;
    font-size: 15px;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #16C2F5;
    transform: translateX(8px);
}

/* ============================================================
    SECCIÓN 7: CONTACTO (CON ICONOS)
    ============================================================ */

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-bottom: 8px;
}

.contact-item i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(22, 194, 245, 0.15);
    color: #16C2F5;
    font-size: 18px;
    flex-shrink: 0;
}

/* ============================================================
    SECCIÓN 8: REDES SOCIALES
    ============================================================ */

.redes {
    display: flex;
    gap: 15px;
    margin-top: 6px;
}

.redes a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    font-size: 20px;
    transition: 0.35s;
    text-decoration: none;
    margin-bottom: 0;
}

.redes a:hover {
    background: linear-gradient(135deg, #16C2F5, #0B5ED7);
    transform: translateY(-6px) rotate(360deg);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(22, 194, 245, 0.35);
}

/* ============================================================
    SECCIÓN 9: COPYRIGHT
    ============================================================ */

.copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

/* ============================================================
    SECCIÓN 10: RESPONSIVE
    ============================================================ */

/* ===== Tablet (992px) ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ===== Tablet pequeña / Móvil grande (768px) ===== */
@media (max-width: 768px) {
    footer {
        text-align: center;
        padding: 50px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    /* ===== Ajuste de espaciado en móvil ===== */
    .footer-links h4:not(:first-of-type),
    .footer-contact h4:not(:first-of-type) {
        margin-top: 22px;
    }

    /* ===== Centrar elementos en móvil ===== */
    .redes {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-grid a {
        text-align: center;
    }

    /* ===== Hover en móvil (sin desplazamiento lateral) ===== */
    .footer-grid a:hover {
        transform: translateX(0) scale(1.02);
    }

    .redes a:hover {
        transform: translateY(-6px) scale(1.05);
    }
}

/* ===== Móvil pequeño (480px) ===== */
@media (max-width: 480px) {
    footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-grid h3 {
        font-size: 24px;
    }

    .footer-grid h4 {
        font-size: 16px;
    }

    .contact-item {
        font-size: 14px;
    }

    .contact-item i {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .redes a {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
}