/* ======= FOOTER ======= */
footer {
    background-color: #101828;
    color: #fff;
    padding: 2rem 1rem;
    font-family: "Panton Regular", sans-serif;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto; /* permite que el footer empuje hacia abajo */
}

/* Contenedor interno */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    gap: 2rem;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-family: "Panton Bold", sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
}

.footer-contact,
.footer-links,
.footer-social {
    flex: 1 1 200px;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
    margin-bottom: 10px;
    font-family: "Panton ExtraBold", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
    font-family: "Panton Regular", sans-serif;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff4d4d;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ff4d4d;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    font-family: "Panton Regular", sans-serif;
}

/* ======= RESPONSIVE ======= */
@media only screen and (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact,
    .footer-links,
    .footer-social {
        flex: unset;
    }
}
