footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    padding: 40px 0 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

#espacio-contenedor {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 5%;
    box-sizing: border-box;
    gap: 30px;
}

#espacio-contenedor div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#espacio-info-contacto {
    width: 70%;
    color: var(--color-text-darker);
    border-right: 2px solid var(--color-neutral-light-grey);
    padding-right: 30px;
    box-sizing: border-box;
}

#espacio-info-contacto h2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: var(--color-primary-red);
}

#espacio-info-contacto ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

#espacio-info-contacto ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
    min-width: 150px;
}

#espacio-info-contacto ul li svg {
    width: 40px;
    height: 40px;
    color: var(--color-primary-red);
    transition: all 0.3s ease;
}

#espacio-info-contacto ul li:hover svg {
    transform: translateY(-3px);
}

#espacio-info-contacto ul li a {
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--color-text-darker);
    transition: all 0.3s ease;
}

#espacio-info-contacto ul li a:hover {
    color: var(--color-primary-red);
    transform: translateY(-2px);
}

#espacio-info-contacto ul li p {
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--color-text-dark);
    line-height: 1.5;
}


#espacio-redes {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 30px;
    box-sizing: border-box;
}

#espacio-redes h2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: var(--color-primary-red);
}

#espacio-redes ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 25px;
    padding: 0;
}

#espacio-redes ul li {
    display: grid;
    place-items: center;
}

#espacio-redes ul li a {
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

#espacio-redes ul li a:hover {
    transform: translateY(-5px) scale(1.1);
}

#espacio-redes ul li svg {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}


#redes-facebook {
    color: var(--color-social-facebook);
}

#redes-tiktok {
    color: var(--color-black);
}

#redes-instagram {
    color: var(--color-social-instagram);
}

#redes-facebook:hover {
    color: #2d4373;
}

#redes-tiktok:hover {
    color: #333;
}

#redes-instagram:hover {
    color: #a3147f;
}

#espacio-copyright {
    width: 100%;
    height: auto;
    display: grid;
    place-items: center;
    background-color: var(--color-primary-red);
    color: var(--color-white);
    text-align: center;
    margin-top: 40px;
    padding: 15px;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    footer {
        height: auto;
        padding: 30px 0 15px;
    }

    #espacio-contenedor {
        flex-direction: column;
        height: auto;
        gap: 30px;
        padding: 0 2%;
    }

    #espacio-info-contacto {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--color-neutral-light-grey);
        padding: 0 2% 30px;
        margin: 0;
    }

    #espacio-info-contacto h2 {
        margin-bottom: 20px;
        color: var(--color-primary-red);
    }

    #espacio-info-contacto ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: auto;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    #espacio-info-contacto ul li {
        width: 100%;
        height: auto;
        margin: 0;
        gap: 8px;
        min-width: auto;
    }

    #espacio-info-contacto ul li svg {
        width: 35px;
        height: 35px;
        margin: 0;
        color: var(--color-primary-red);
    }

    #espacio-info-contacto ul li a {
        color: var(--color-text-darker);
    }

    #espacio-info-contacto ul li p {
        color: var(--color-text-dark);
        padding: 0 10%;
    }

    #redes-whatsapp,
    #redes-email,
    #redes-direccion {
        width: 100%;
    }

    #espacio-redes {
        width: 100%;
        height: auto;
        padding: 0 2%;
        margin: 0;
    }

    #espacio-redes h2 {
        margin-bottom: 20px;
        color: var(--color-primary-red);
    }

    #espacio-redes ul {
        width: 100%;
        height: auto;
        justify-content: center;
        gap: 30px;
        padding: 0;
        margin: 0;
    }

    #espacio-redes ul li a svg {
        width: 45px;
        height: 45px;
    }

    #espacio-copyright {
        height: auto;
        padding: 12px;
        margin-top: 30px;
    }
}