/* ESTILOS GENERALES DEL FOOTER */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer {
    background: linear-gradient(90deg, black 21%, black 30%, #0c395c 60%);
    color: white;
    padding: 3rem 0 0;
    font-family: 'Oswald', sans-serif;
}

a.footer-link {
    text-decoration: none;
    color: white;
    font-weight: 300;
}

p {
    font-family: 'Museo100', sans-serif;
}

a#enlace1:hover {
    text-decoration: underline;
}

a#enlace2:hover {
    text-decoration: underline;
}

.containerF {
    max-width: 1560px;
    margin: 0px auto;
    padding: 0px 20px;
}

/* GRID DEL FOOTER */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* COLUMNAS DEL FOOTER */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #f8fafc;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #3b82f6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #60a5fa;
}

.footer-location h4 {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-location p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #cbd5e1;
    line-height: 1.5;
    font-family: 'Oswald', sans-serif;
}

/* INFORMACIÓN DE CONTACTO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.contact-item i {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

/* REDES SOCIALES */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: space-between;
}



.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #3b82f6;
    transform: translateY(-2px);
}

/* PIE DE PÁGINA INFERIOR */
.footer-bottom {
    background-color: black;
    text-align: center;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    margin: 0;
    color: white;
    font-size: 0.6rem;
    font-weight: none;
    font-family: math;
    ;
}

.footer-location {
    grid-column: span 1;
    text-align: center;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-contact-column {
        grid-column: span 4;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-contact-column {
        grid-column: span 2;
    }

    .footer-column,
    .footer-location {
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {

    .footer-contact-column {
        text-align: center;
    }
}