/* 🏗 Estilos generales del footer */
.footer__container {
    background: var(--linear-gradient-left-blue);
    color: var(--secondary-text-color);
    font-size: 14px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* 📌 Parte superior */
.footer__top {
    font-weight: 300;
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer__row {
    max-width: 25%;
    min-width: 170px;
    margin-right: 20px;
}

.footer__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: var(--linear-gradient-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer__logo-img {
    height: 150px;
    margin-right: 10px;
}

.footer__logo-text {
    font-size: var(--font-size-title);
    font-weight: bold;
}

.footer__title {
    font-size: var(--font-size-subtitle);
    font-weight: bold;
    margin-bottom: 10px;
}

.footer__list {
    list-style: none;
    padding: 0;
}

.footer__list li {
    margin-bottom: 5px;
}

.footer__list a {
    color: var(--secondary-text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__list a:hover {
    color: var(--secondary-color);
}

.footer__social-links a {
    font-size: 35px;
    color: var(--secondary-text-color);
    margin-right: 10px;
    transition: color 0.3s;
}

.footer__social-links a:hover {
    color: var(--secondary-color);
}

/* 📌 Parte inferior */
.footer__bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
    background: var(--linear-gradient-bottom-red);
    margin: 0;
    font-size: 13px;
}

/* 📱 Responsivo: pantallas pequeñas */
@media (max-width: 768px) {
    .footer__top {
        flex-direction: column;
        align-items: left;
        padding: 20px;
    }

    .footer__row {
        max-width: 100%;
        margin-bottom: 20px; 
        margin-left: 20px;
    }

    .footer__row p {
        max-width: 250px;
    }

    .footer__logo-text {
        font-size: 28px;
    }

    .footer__title {
        font-size: 20px;
    }

    .footer__list a {
        font-size: 16px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        font-size: 10px;
        padding: 10px;
    }
}
