/* Acá van los estilos del footer */

.footer{
    background-color: #daedf5;   
}

.footer__title{
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 30px;
    font-size: 50px;
}

.footer__title, .footer__newsletter{
    color: gray;
}



.footer__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-title);
    padding-bottom: 60px;
}

.nav--footer{
    padding-bottom: 20px;
    display: grid;
    gap: 1em;
    grid-auto-flow: row;
    height: 100%;
    
}
 .footer .nav__links{
    color: gray;
}

.nav__link--footer{
    display: flex;
    margin: 0;
    margin-right: 20px;
    flex-wrap: wrap;
}

.footer__inputs{
    margin-top: 10px;
    display: flex;
    overflow: hidden;
}

.footer__input{
    background-color: #fff;
    height: 50px;
    display: block;
    padding-left: 10px;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    border: none;
    margin-right: 16px;
}

.footer__submit{
    margin-left: auto;
    display: inline-block;
    height: 50px;
    padding: 0 20px ;
    background-color: #a9cce3;
    border: none;
    font-size: 1rem;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid #fff;
}

.footer__copy{
    --padding-container: 30px 0;
    text-align: center;
    color: gray;
}

.footer__copyright{
    font-weight: 300;
}

.footer__icons{
    margin-bottom: 10px;
}

.footer__img {
    width: 60px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Falta hacer una imagen con hover para los iconos de redes sociales */
.footer__img:hover {
    transform: scale(1.2); /* Aumenta el tamaño del icono */
    transform: scale(1.2) rotate(5deg);
    filter: brightness(0) saturate(100%) invert(35%) sepia(83%) saturate(507%) hue-rotate(176deg) brightness(92%) contrast(88%);

}

.footer__icons svg {
    width: 60px;
    transition: transform 0.3s ease-in-out, fill 0.3s ease-in-out;
    fill: gray; /* Color base */
}

.footer__icons svg:hover {
    transform: scale(1.2);
    fill: #4682B4; /* Color al hacer hover */
}