/* ==================== Appointment Section ==================== */
.agendamento {
    background-color: var(--light-bg);
}

.appointment-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.appointment-form .form-group {
    margin-bottom: 1.5rem;
}

.appointment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.appointment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.appointment-form .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
}

/* Form validation styles */
.appointment-form input:invalid:not(:placeholder-shown),
.appointment-form select:invalid:not(:placeholder-shown) {
    border-color: #FF5252;
}

.appointment-form input:valid:not(:placeholder-shown),
.appointment-form select:valid:not(:placeholder-shown) {
    border-color: #4CAF50;
}

@media (max-width: 768px) {
    .appointment-form {
        padding: 1.5rem;
    }

    .appointment-form .form-group {
        margin-bottom: 1rem;
    }
}
