/* Página Verifícate */
.verificate-page {
    min-height: calc(100vh - 72px);
    background: #f0f2f5;
    padding: 3rem 0 4rem;
    display: flex;
    align-items: center;
}

/* Modal de confirmación */
.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #198754, #157347);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
}

.verificate-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

.verificate-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e4ea;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.verificate-logo {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #1a4f8b, #2d6cb5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    position: relative;
}

.verificate-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 6px;
    background: #dc3545;
    border-radius: 3px;
}

.verificate-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.verificate-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.verificate-confirm-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a4f8b;
}

/* Inputs con barra azul izquierda */
.input-accent {
    position: relative;
}

.input-accent .form-control,
.input-accent .form-select {
    border: 1px solid #d0d5dd;
    border-left: 4px solid #1a4f8b;
    border-radius: 6px;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-size: 1rem;
    box-shadow: none;
}

.input-accent .form-control:focus,
.input-accent .form-select:focus {
    border-color: #d0d5dd;
    border-left-color: #1a4f8b;
    box-shadow: 0 0 0 3px rgba(26, 79, 139, 0.1);
}

.input-accent .input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 1.1rem;
    pointer-events: none;
}

/* Captcha simulado */
.captcha-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

.captcha-box:hover {
    border-color: #adb5bd;
}

.captcha-box.verified {
    border-color: #198754;
    background: #f0fdf4;
}

.captcha-check {
    font-size: 1.25rem;
    color: #6c757d;
}

.captcha-check.verified {
    color: #198754;
}

.captcha-success {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

/* Botones */
.btn-verificate-primary {
    background: #1a4f8b;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-verificate-primary:hover:not(:disabled) {
    background: #0f3460;
    color: #fff;
}

.btn-verificate-primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.btn-verificate-secondary {
    background: #e9ecef;
    border: none;
    color: #212529;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-verificate-secondary:hover {
    background: #dee2e6;
    color: #212529;
}

/* Perfil paso 3 */
.profile-photo {
    position: relative;
    width: 120px;
    height: 120px;
}

.profile-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(135deg, #dee2e6, #ced4da);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #6c757d;
    overflow: hidden;
}

.profile-photo-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}

.profile-status {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #212529;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    padding: 4px 0;
    letter-spacing: 0.5px;
}

.profile-status.inscrito {
    background: #198754;
}

.alert-verificate {
    border-radius: 8px;
    border: 1px solid #b6d4fe;
    background: #e7f1ff;
    color: #084298;
    font-size: 0.9rem;
    padding: 1rem;
}

.result-icon {
    font-size: 4rem;
}

/* Sección embebida en index */
.verification-embed {
    background: #f0f2f5;
    border-radius: 24px;
    padding: 2rem 1rem;
}

.verification-embed .verificate-wrapper {
    max-width: 480px;
}

@media (max-width: 576px) {
    .verificate-card {
        padding: 1.75rem 1.25rem;
    }

    .verificate-page {
        padding: 2rem 0 3rem;
    }
}
