.footer {
    width: 100%;
    background-color: #141414;
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-logo {
    width: auto;
    height: auto;
    max-width: 100%;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    color: white;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.footer a {
    color: #ee7404;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #c4c4c4;
}

/* Footer responsive - Móvil */
@media (max-width: 767px) {
    .footer-logo {
        max-width: 80%;
        height: auto;
    }
}

/* Footer responsive - Desktop */
@media (min-width: 768px) {
    .footer-logo {
        width: auto;
        max-width: none;
        margin-bottom: 2rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}

