.footer-class {
    background-color: var(--color-ocho);
    width: 100%;
    color: var(--color-seventy);
    text-align: center;
}

.div-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    gap: 1rem;
}

.img-div-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100px;
    width: 100%;
    margin: 0 auto;
}

.img-footer-logo {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* ICONOS */
.iconos-footer {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.iconos-footer .icon {
    color: var(--color-seventy);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.iconos-footer .icon:hover {
    color: var(--color-seventy);
    transform: scale(1.2);
}

/* TEXTO INFERIOR */
.footer-text span a{
    color: #7c0404;
}


.footer-text {
    font-size: 0.9rem;
    color: var(--color-seventy);
}

.footer-text a {
    color: var(--color-seventy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: var(--color-seventy);
}

.footer-text .separator {
    margin: 0 0.5rem;
}

/* Responsividad */
@media (min-width: 768px) {
    .img-div-footer {
        max-width: 220px;
    }

    .iconos-footer .icon {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .img-div-footer {
        max-width: 140px;
    }

    .iconos-footer .icon {
        font-size: 1.2rem;
    }
}
