/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
}

/* HEADER COM LOGO */
header {
    width: 100%;
    text-align: center;
    padding: 40px 0 10px;
}

.logo {
    width: 180px;
    height: auto;
}

/* ===== CONTATO ===== */

.contato-section {
    padding: 40px 5% 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: white;
    width: 100%;
    max-width: 600px;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* TÍTULO */
.form-container h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #0d1b2a;
}

/* GRUPOS */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

/* INPUTS */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.3s;
}

/* EFEITO FOCUS */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border: 1px solid #ff4d00;
    box-shadow: 0 0 5px rgba(255, 77, 0, 0.4);
}

.form-group textarea {
    resize: none;
    height: 120px;
}

/* BOTÃO */
.btn-enviar {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background-color: #ff4d00;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.btn-enviar:hover {
    background-color: #e64400;
}