/* ============================================================
   CAPTCHA MINIMAL
============================================================ */

.captcha-list {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.captcha-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease;
    opacity: 0.9;
}

/* hover suave */
.captcha-btn:hover {
    transform: scale(1.15);
}

/* estado seleccionado correcto */
.captcha-ok {
    transform: scale(1.25);
    filter: drop-shadow(0 0 6px #28a745);
    opacity: 1;
}

/* ============================================================
   estado cuando ya se respondió el captcha
   (los demás quedan tenues)
============================================================ */

.captcha-disabled {
    opacity: 0.35;
    transform: scale(0.95);
}

/* ============================================================
   FOCO VISUAL AL CORREO
============================================================ */

.form-control {
    font-size: 1.1rem;
    padding: 1rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(43,110,166,0.25);
}


/* ============================================================
   INPUT PRINCIPAL DESTACADO
============================================================ */

.input-focus-block {
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


/* ============================================================
   CAPTCHA AJUSTE JERARQUÍA
============================================================ */

.captcha-container {
    opacity: 0.7;
}

#captcha-label {
    font-size: 0.85rem;
}

/* ============================================================
   CALLOUT CORREO
============================================================ */

.correo-callout {
    background: #f8f9fa;
    border-left: 3px solid #2b6ea6; /* antes 4px */
    padding: 12px 14px;
    border-radius: 10px;
}

.correo-callout .form-control {
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 10px;
    background-color: #fff;
}

/* foco */
.correo-callout .form-control:focus {
    border-color: #2b6ea6;
    box-shadow: 0 0 0 0.2rem rgba(43,110,166,0.25);
}

#btn-submit {
    transition: all 0.2s ease;
}

#btn-submit:disabled {
    opacity: 0.6;
}

/* ============================================================
   TÉRMINOS DE AGENDAMIENTO
============================================================ */

.cliente-home-terms {
    margin-top: 12px;
    text-align: center;
}

.terms-link-button {
    background: none;
    border: 0;
    color: #136f93;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.terms-link-button:hover {
    color: #0d5f9d;
}

.terms-inline-note {
    color: #6f7780;
    font-size: 0.86rem;
    line-height: 1.35;
    margin: -4px 0 14px;
}

.terms-inline-note .terms-link-button {
    font-size: inherit;
}

.terms-modal .modal-header {
    align-items: flex-start;
}

.terms-modal-eyebrow {
    color: #136f93;
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.terms-modal-section + .terms-modal-section {
    border-top: 1px solid #edf1f3;
    margin-top: 18px;
    padding-top: 18px;
}

.terms-modal-section h6 {
    color: #24313a;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 8px;
}

.terms-modal-section p,
.terms-modal-section li {
    color: #5f6872;
    line-height: 1.55;
}

.terms-modal-section ul {
    margin-bottom: 0;
    padding-left: 20px;
}
