/* Footer */
.footer {
    background: url('../img/footer.png') no-repeat center center;
    background-size: cover; /* Asegura que la imagen cubra todo el fondo */
    background-color: #2c3e50;
    color: white;
    padding: 40px 20px;
    margin-top: 5px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid #3a4a5a;
    padding-top: 20px;
    font-size: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: aliceblue;
    font-size: 15px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .footer-logo img {
        max-width: 120px;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 0.9rem;
    }
}
