
.contact-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2196F3;
    margin: 20px 0 10px;
    position: relative;
    text-align: left;
    /* título alinhado à esquerda */
}

.contact-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #64b5f6, #2196F3);
    margin-left: 0;
    /* mantém a linha alinhada com o título */
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
    /* textos justificados */
}
/* FEATURES ABOUT */
.container-contact {
    max-width: 1200px;
    margin: 35px auto;
    padding: 0 20px;
    margin-top: 5rem;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

form button {
    background-color: #2196F3;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
}

form button:hover {
    background-color: #1976D2;
}