/* 
    DERECHOS RESERVADOS: LUMIERES ADS.

    DESARROLLADORES:
        - FULL-STACK: ING. GABRIEL ALEGRÍA.
        - FRONT-END: MTS. ING. RAÚL PORTILLO.

    RECURSO: CONFIGURACIÓN GLOBAL, ESTILOS, LETRA, COLORES PARA EL SITIO WEB (FOOTER).

    PROHÍBIDO LA DISTRIBUCIÓN DE ESTE APLICATIVO O SOLUCIONES CÓDIFICADAS.
*/

/* FOOTER GENERAL */
.footer {
    background: #1A3F7A;
    background: linear-gradient(90deg, rgba(26, 63, 122, 1) 0%, rgba(48, 116, 224, 1) 100%);
    color: #fff;
    width: 100%;
}

/* CONTENEDOR PRINCIPAL EN GRID */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    padding: 40px 5%;
}

/* CAJAS */
.footer-box {
    display: flex;
    flex-direction: column;
}

.footer-box p {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
}

.footer-title {
    font-size: 1.8rem;
    color: var(--primary-color-light);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    border-left: 3px solid var(--primary-color-light);
    padding-left: 10px;
}

.footer-logo {
    width: 160px;
    margin: 15px 0;
}

.footer-description {
    color: #ddd;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    text-align: justify;
    margin-bottom: 15px;
}

/* REDES SOCIALES */
.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color-light);
}

/* ENLACES */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li i {
    color: var(--primary-color-light);
    width: 18px;
    text-align: center;
}

.footer-links a {
    color: var(--primary-color-light);
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color-pink);
}

/* RESALTADO */
.highlight {
    font-weight: bold;
    color: var(--primary-color-pink);
}

/* HR */
.footer-box hr {
    margin: 10px 0;
    border: none;
    height: 1px;
    background-color: var(--primary-color-light);
}

/* FOOTER BOTTOM */
.footer-bottom {
    background-color: var(--primary-color-blue);
    /* naranja base */
    width: auto;
    padding: 15px 10px;
    color: var(--primary-color-light);
    font-size: 0.9rem;
    font-family: "Montserrat", sans-serif;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal-links a {
    color: var(--primary-color-light);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal-links a:hover {
    text-decoration: underline;
}

/* RESPONSIVE AJUSTES EXTRA */
@media (max-width: 768px) {
    .footer-logo {
        width: 140px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-description,
    .footer-links a,
    .footer-box p {
        font-size: 0.95rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 30px 20px;
    }

    .footer-box {
        margin-bottom: 30px;
    }
}