/* Footer */
footer {
    
    background-color: #333;
    padding: 40px 0;
    color: #fff;
    width: 100%;
}

.container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

footer .container div {
    width: 30%;
    margin: 0 auto;
}

footer h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

footer p {
    font-size: 14px;
    line-height: 1.5;
}

.img-fluid {
    height: 80px;
    max-width: 100%;
}

.logos {
    display: block;
    margin-bottom: 15px;
}

footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #555;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

footer .social-icons a:hover {
    background-color: #28a745;
}

footer hr {
    border-top: 1px solid #999;
    margin: 20px 0;
    width: 80%;
    margin:0 auto;
    margin-bottom: 20px;
}

footer .bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
}

footer .bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 800;

}

footer .bottom-links a:hover {
    color: #28a745;
}

@media (max-width: 1200px) {

    footer .container {
        align-items: center; /* Centrar columnas */
    }

    footer .container div {
        width: 100%; /* Asegurarse de que las columnas ocupen todo el ancho */
        text-align: center; /* Centrar texto */
    }
}

@media (max-width: 768px) {
    footer .bottom-links {
        gap: 2px; /* Espaciado menor entre enlaces */
    }
}