#custom-reservation-form {
    max-width: 900px;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
}

#custom-reservation-form span.helper {
    display: inline-block;
    font-size: 14px;
}


/* Labels sempre em negrito e acima */
#custom-reservation-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.form-row.radio-group label:has(input) {
    display: inline-flex !important;
    line-height: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

#custom-reservation-form input,
#custom-reservation-form textarea,
#custom-reservation-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 16px;
    box-sizing: border-box;
}
#custom-reservation-form input[type="radio"] {
    padding: 0;
    margin: 0 10px 0 0;
}

.form-row { margin-bottom: 20px; }

/* Grid para Telas Maiores que 1024px */
@media (min-width: 1024px) {
    .form-grid {
        display: grid;
        gap: 20px;
        margin-bottom: 20px;
    }

    .tri-col { grid-template-columns: 1fr 1fr 1fr; }
    .duo-col { grid-template-columns: 1fr 1fr; }
}

/* Estilo do Botão */
.wpcf7-submit {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.wpcf7-submit:hover { background-color: #005177; }
