

#contato {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 50px 5%;
    gap: 30px;
    color: white;
    border-radius: 8px;
    border: 1px solid #2575fc;
    box-shadow: 2px 0px 7px #6a11cb;
}


.rigth-form {
    width: 50%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.left-form {
    width: 50%;
}

form {
    flex: 1;
}

.left-form ul {
    list-style: none;


}

.left-form ul li {
    margin-bottom: 10px;
}

.icon-wrapper {
    /* Cor dos ícones combinando com o tema */
    color: #4c5ef7;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

input,
textarea {
    background-color: #131324;
    border: 1px solid #2a2a40;
    font-size: 1rem;
    color: #fff;
    width: 100%;
    margin: 5px 0;
    padding: 10px;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #4c5ef7;
}

textarea:focus {
    border-color: #4c5ef7;
}

input::placeholder {
    color: #6c6c80;
}

textarea {
    resize: none;
    height: 120px;
}

.enviar {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    /* O gradiente do botão */
    background: linear-gradient(90deg, #2575fc, #6a11cb);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
}

.enviar:hover {
    opacity: 0.5;
}



@media (max-width: 768px) {
    #contato {
        flex-direction: column;
        /* Empilha um sobre o outro */
        padding: 30px;
        gap: 30px;
    }
    .left-form, 
    .rigth-form {
        width: 100%;
    }
    .left-form h1{
        
        text-align: center;
    }

}