/* Estilos do painel de contato */

.contato {
    padding-bottom: 5rem;
}
.contato-titulo {
    font-size: 2rem;
    padding-top: 5rem;
    padding-bottom: 2rem;
    text-align: center;
}

.contato-texto--p {
    font-size: 1.5rem;
    padding: 20px;
    text-align: center;
}

.contato-texto {
    font-size: 1.5rem;
    padding: 20px;
}

.i-email{
    width: 250px;
    height: 20px;
}

.i-texto {
    width: 350px;
    height: 100px;
}

.contato-icones {
    display: flex;
    flex-direction: column;
    font-size: 2.5rem;
    text-align: center;
}

.contato-icones a {
    margin: 10px;
}

.contato-c {
    display: flex;
    justify-content: space-around;
}

.botao-contato {
    margin-left: 20px;
    margin-bottom: 20px;
    width: 80px;
    height: 25px;
}

/* Responsividade para telas menores */

@media screen and (max-width: 500px) {
    .contato-c {
        flex-direction: column;
    }

    .contato-icones {
        flex-direction: row;
        justify-content: space-around;
    }

    .i-texto {
        width: 300px;
    }
}