#contacto{
    padding: 80px 7vw 50px 7vw;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

#contacto-iz{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contacto-iz h1{
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--main-color);
    text-align: center;
}

#contacto-iz p{
    font-size: 1.5rem;
    text-align: justify;
    width: 100%;
}

#informacion-contacto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

#informacion-informacion{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--light-color);
    width: 100%;
    height: 80px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 10px 20px;
    gap: 20px;
}

.info-icono{
    width: 50px;
    height: 50px;
    background-color: var(--light-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mail .info-textos p:nth-child(2) {
    font-size: 0.9rem;
}

#maps .info-textos p:nth-child(2) {
    font-size: 0.9rem;
}

#redes{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#redes-redes{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    font-size: 1.5rem;
}

#facebook{
    background-color: var(--main-color);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa {
    color: var(--white)
}

@media screen and (min-width: 500px) {
    #contacto-iz p{
        font-size: 1.75rem;
    }
}

@media screen and (min-width: 700px) {
    #informacion-contacto{
        flex-direction: row;
        justify-content: space-evenly;
    }

    #mail .info-textos p:nth-child(2) {
        font-size: 1.2rem;
    }
    
    #maps .info-textos p:nth-child(2) {
        font-size: 1.2rem;
    }
}

@media screen and (min-width: 1023px) {
    #contacto-iz h1 {
        font-size: 6rem;
    }

    #contacto-iz p {
        font-size: 2.5rem;
    }

    .info{
        height: auto;
    }

    #mail .info-textos p:nth-child(2) {
        font-size: 2rem;
    }
    
    #maps .info-textos p:nth-child(2) {
        font-size: 2rem;
    }

    #informacion-contacto{
        flex-direction: column;
        font-size: 1.75rem;
    }

    #facebook  {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }

}

@media screen and (min-width: 1082px) {
    #informacion-contacto{
        flex-direction: column;
        justify-content: space-evenly;
    }
    
    #contacto{
        flex-direction: row;
        justify-content: center;
    }

    #contacto-iz{
        width: 50%;
        margin-right: 50px;
    }

    #contacto-iz h1{
        font-size: 6rem;
        text-align: left;
    }

    #contacto-iz p {
        font-size: 1.75rem;
    }

    #redes h2 {
        font-size: 1.75rem;
    }

    #facebook {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }

    #informacion-contacto{
        align-items: flex-start;
    }
    
    #mail .info-textos p:nth-child(2) {
        font-size: 1.25rem;
    }
    
    #maps .info-textos p:nth-child(2) {
        font-size: 1.25rem;
    }

    #informacion-informacion{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        box-sizing: border-box;
        padding: 25px 10px;
    }
    
    #facebook{
        transition: all 0.3s ease;
        cursor: pointer;
    }

    #facebook:hover{
        transform: scale(1.1);
        border-radius: 10px;
    }
}