/* contato.css */

/* ===== TOPO ===== */

.topo-contato {
    padding: 60px 50px 30px;
    text-align: center;
}

.topo-contato h2 {
    font-size: 42px;
    color: #ffcc00;
    margin-bottom: 16px;
}

.topo-contato p {
    font-size: 18px;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== FORMULÁRIO ===== */

.form-section {
    padding: 20px 50px 50px;
    display: flex;
    justify-content: center;
}

.formulario {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-grupo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-grupo label {
    font-size: 15px;
    font-weight: bold;
    color: #ffcc00;
}

.form-grupo input,
.form-grupo textarea {
    background-color: #242424;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    outline: none;
}

.form-grupo input:focus,
.form-grupo textarea:focus {
    border-color: #c62828;
}

.form-grupo input::placeholder,
.form-grupo textarea::placeholder {
    color: #555;
}

.form-grupo textarea {
    resize: vertical;
    min-height: 120px;
}

.radio-opcoes {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ddd;
    font-size: 15px;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #c62828;
    cursor: pointer;
    padding: 0;
    border: none;
}

.botao-enviar {
    background-color: #c62828;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.botao-enviar:hover {
    background-color: #e53935;
}

/* ===== INFO CARDS ===== */

.info-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 20px 50px 60px;
    flex-wrap: wrap;
    background-color: #1a1a1a;
}

.info-card {
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 28px 24px;
    width: 260px;
    text-align: center;
}

.info-card:hover {
    border-color: #c62828;
}

.info-card span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 20px;
    color: #ffcc00;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}
