/* ============================
   AGENDAMENTO - TOPO PADRONIZADO
   ============================ */
.banner-agendamento {
    background-image: url('../../assetsSite/images/banners/fundo_menu.jpg');
    background-size: cover;
    background-position: center center;
    height: 300px;
    position: relative;
}

.banner-agendamento h1 {
    margin-top: 130px;
    font-size: 2.5rem;
    font-weight: bold;
    z-index: 2;
    position: relative;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-agendamento::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); /* overlay escuro */
    z-index: 1;
}

/* ============================
   AGENDAMENTO - FORMULÁRIO
   ============================ */
.agendamento-section {
    padding: 5em 0;
    background: #fff;
}

.agendamento-section .form-group {
    margin-bottom: 1.5rem;
}

.agendamento-section label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.agendamento-section .form-control {
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 0.8rem;
}

.agendamento-section .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.agendamento-section textarea {
    resize: vertical;
    min-height: 120px;
}

.agendamento-section .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.agendamento-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
