/*FOOTER*/

.footer {
    /*background-color: #f2f2f2;*/
    /*Color vino de fondo para el footer*/
    background-color: var(--vino);
    color: var(--blanco);
    padding: 1rem 2rem;
    font-size: 0.9rem;
}


.footer-contenido {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-copy {
    /*color: #333;*/
    /*Texto de Copyrigh en color blanco, por defecto*/
    font-weight: bold;
    margin: 0.5rem 0;
}

.footer-redes {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
    padding: 0;
}

.footer-redes a {
    text-decoration: none;
    /*color: var(--vino);*/
    /*Iconos de redes sociales en blanco*/
    color: var(--blanco);
    font-weight: 500;
}

.footer-redes a:hover {
    color: var(--verde);
}

/*Los elementos del footer se apilan uno sobre el otro y se centran para pantallas pequeñas*/
@media (max-width: 600px) {
    .footer-contenido {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-copy {
        margin-bottom: 1rem;
    }
}