/* ==================================================================== */
/* COMPONENTE UNIVERSAL DE AGENDAMENTO (CSS ISOLADO) */
/* ==================================================================== */

.hero-card-form {
    background: #ffffff;
    color: #1e293b;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.hero-card-form h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.hero-card-form p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}

.form-compact .form-group {
    margin-bottom: 16px;
}

.form-compact label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.form-compact input, 
.form-compact select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
    background: #f8fafc;
    color: #0f172a;
    outline: none;
    transition: all 0.2s;
}

.form-compact input:focus, 
.form-compact select:focus {
    border-color: var(--cor-primaria);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.15);
}

.btn-submit-hero {
    width: 100%;
    background: var(--cor-primaria);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: opacity 0.2s, transform 0.1s;
}

.btn-submit-hero:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}