/* /Components/Account/Pages/Login.razor.rz.scp.css */
/* Login Container */
.login-container[b-kcus7ctmos] {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 20px;
}

.login-card[b-kcus7ctmos] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
    max-width: 480px;
    width: 100%;
}

/* Login Header */
.login-header[b-kcus7ctmos] {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo[b-kcus7ctmos] {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.login-title[b-kcus7ctmos] {
    font-size: 2rem;
    font-weight: 700;
    color: #1C1B1F;
    margin-bottom: 10px;
}

.login-subtitle[b-kcus7ctmos] {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Login Form */
.login-form[b-kcus7ctmos] {
    margin-top: 30px;
}

.form-group[b-kcus7ctmos] {
    margin-bottom: 24px;
}

.form-label[b-kcus7ctmos] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #1C1B1F;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label i[b-kcus7ctmos] {
    color: #C4A961;
    font-size: 0.9rem;
}

.form-control[b-kcus7ctmos] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.form-control:focus[b-kcus7ctmos] {
    outline: none;
    border-color: #C4A961;
    box-shadow: 0 0 0 3px rgba(196, 169, 97, 0.1);
}

.form-control[b-kcus7ctmos]::placeholder {
    color: #aaa;
}

/* Checkbox */
.form-check[b-kcus7ctmos] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.form-check-input[b-kcus7ctmos] {
    width: 18px;
    height: 18px;
    border: 2px solid #C4A961;
    border-radius: 4px;
    cursor: pointer;
}

.form-check-input:checked[b-kcus7ctmos] {
    background-color: #C4A961;
    border-color: #C4A961;
}

.form-check-label[b-kcus7ctmos] {
    color: #666;
    font-size: 0.95rem;
    cursor: pointer;
    user-select: none;
}

/* Login Button */
.btn-login[b-kcus7ctmos] {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #F0E495 0%, #C4A961 100%);
    color: #1C1B1F;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(196, 169, 97, 0.3);
}

.btn-login:hover[b-kcus7ctmos] {
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(196, 169, 97, 0.4);
}

.btn-login:active[b-kcus7ctmos] {
    transform: translateY(0);
}

/* Login Links */
.login-links[b-kcus7ctmos] {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.login-link[b-kcus7ctmos] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 6px;
}

.login-link:hover[b-kcus7ctmos] {
    color: #C4A961;
    background: #fafafa;
    text-decoration: none;
}

.login-link i[b-kcus7ctmos] {
    font-size: 0.9rem;
}

/* Validation Messages */
.validation-summary[b-kcus7ctmos] {
    background: #fff5f5;
    border: 1px solid #ffdddd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: #e74c3c;
}

.validation-message[b-kcus7ctmos] {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 6px;
    display: block;
}

/* External Login Divider */
.login-divider[b-kcus7ctmos] {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #999;
}

.login-divider[b-kcus7ctmos]::before,
.login-divider[b-kcus7ctmos]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

.login-divider span[b-kcus7ctmos] {
    padding: 0 15px;
    font-size: 0.9rem;
}

/* External Login */
.external-login[b-kcus7ctmos] {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .login-card[b-kcus7ctmos] {
        padding: 30px 25px;
    }

    .login-title[b-kcus7ctmos] {
        font-size: 1.75rem;
    }

    .login-subtitle[b-kcus7ctmos] {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .login-container[b-kcus7ctmos] {
        padding: 20px 15px;
    }

    .login-card[b-kcus7ctmos] {
        padding: 25px 20px;
    }

    .login-logo[b-kcus7ctmos] {
        height: 50px;
    }

    .login-title[b-kcus7ctmos] {
        font-size: 1.5rem;
    }
}

/* /Components/Account/Pages/Manage/ChangePassword.razor.rz.scp.css */
/* Password Header */
.password-header[b-b58tk75djo] {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.password-icon[b-b58tk75djo] {
    font-size: 2.5rem;
    color: #C4A961;
}

.password-title[b-b58tk75djo] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1C1B1F;
    margin: 0;
}

/* Password Form */
.password-form[b-b58tk75djo] {
    max-width: 600px;
}

.form-group[b-b58tk75djo] {
    margin-bottom: 24px;
}

.form-label[b-b58tk75djo] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #1C1B1F;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label i[b-b58tk75djo] {
    color: #C4A961;
    font-size: 0.9rem;
}

.form-control[b-b58tk75djo] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.form-control:focus[b-b58tk75djo] {
    outline: none;
    border-color: #C4A961;
    box-shadow: 0 0 0 3px rgba(196, 169, 97, 0.1);
}

.form-control[b-b58tk75djo]::placeholder {
    color: #aaa;
}

/* Submit Button */
.btn-submit[b-b58tk75djo] {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #F0E495 0%, #C4A961 100%);
    color: #1C1B1F;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(196, 169, 97, 0.3);
    margin-top: 30px;
}

.btn-submit:hover[b-b58tk75djo] {
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(196, 169, 97, 0.4);
}

.btn-submit:active[b-b58tk75djo] {
    transform: translateY(0);
}

/* Password Info Box */
.password-info[b-b58tk75djo] {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border: 2px solid #d0e8ff;
    border-radius: 12px;
    display: flex;
    gap: 15px;
}

.password-info i[b-b58tk75djo] {
    color: #3498db;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.password-info p[b-b58tk75djo] {
    margin: 0 0 10px 0;
    color: #2c5282;
    font-weight: 600;
}

.password-info ul[b-b58tk75djo] {
    margin: 0;
    padding-left: 20px;
    color: #2c5282;
}

.password-info li[b-b58tk75djo] {
    margin-bottom: 5px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Validation Messages */
.validation-summary[b-b58tk75djo] {
    background: #fff5f5;
    border: 1px solid #ffdddd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: #e74c3c;
}

.validation-message[b-b58tk75djo] {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 6px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .password-header[b-b58tk75djo] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .password-icon[b-b58tk75djo] {
        font-size: 2rem;
    }

    .password-title[b-b58tk75djo] {
        font-size: 1.5rem;
    }

    .password-form[b-b58tk75djo] {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .btn-submit[b-b58tk75djo] {
        font-size: 1rem;
        padding: 14px;
    }

    .password-title[b-b58tk75djo] {
        font-size: 1.3rem;
    }

    .password-info[b-b58tk75djo] {
        flex-direction: column;
        padding: 15px;
    }
}

/* /Components/Account/Pages/Manage/Email.razor.rz.scp.css */
/* Email Container */
.email-container[b-4c0a55ws4y] {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 20px;
}

.email-card[b-4c0a55ws4y] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
    max-width: 600px;
    width: 100%;
}

/* Email Header */
.email-header[b-4c0a55ws4y] {
    text-align: center;
    margin-bottom: 40px;
}

.email-icon[b-4c0a55ws4y] {
    font-size: 3.5rem;
    color: #C4A961;
    margin-bottom: 20px;
    display: block;
}

.email-title[b-4c0a55ws4y] {
    font-size: 2rem;
    font-weight: 700;
    color: #1C1B1F;
    margin-bottom: 10px;
}

.email-subtitle[b-4c0a55ws4y] {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Email Form */
.email-form[b-4c0a55ws4y] {
    margin-top: 30px;
}

.form-group[b-4c0a55ws4y] {
    margin-bottom: 24px;
}

.form-label[b-4c0a55ws4y] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #1C1B1F;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label i[b-4c0a55ws4y] {
    color: #C4A961;
    font-size: 0.9rem;
}

.form-control[b-4c0a55ws4y] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.form-control:focus[b-4c0a55ws4y] {
    outline: none;
    border-color: #C4A961;
    box-shadow: 0 0 0 3px rgba(196, 169, 97, 0.1);
}

.form-control:disabled[b-4c0a55ws4y] {
    background-color: #f5f5f5;
    color: #666;
    cursor: not-allowed;
}

.form-control[b-4c0a55ws4y]::placeholder {
    color: #aaa;
}

/* Verified/Unverified Badge */
.email-verified-group[b-4c0a55ws4y],
.email-unverified-group[b-4c0a55ws4y] {
    position: relative;
}

.verified-badge[b-4c0a55ws4y],
.unverified-badge[b-4c0a55ws4y] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
}

.verified-badge[b-4c0a55ws4y] {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.verified-badge i[b-4c0a55ws4y] {
    font-size: 1rem;
}

.unverified-badge[b-4c0a55ws4y] {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.unverified-badge i[b-4c0a55ws4y] {
    font-size: 1rem;
}

/* Verify Button */
.btn-verify[b-4c0a55ws4y] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border: 2px solid #ffeaa7;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.btn-verify:hover[b-4c0a55ws4y] {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-color: #fdcb6e;
    color: #6c5214;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(253, 203, 110, 0.3);
}

.btn-verify:active[b-4c0a55ws4y] {
    transform: translateY(0);
}

/* Submit Button */
.btn-submit[b-4c0a55ws4y] {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #F0E495 0%, #C4A961 100%);
    color: #1C1B1F;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(196, 169, 97, 0.3);
    margin-top: 24px;
}

.btn-submit:hover[b-4c0a55ws4y] {
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(196, 169, 97, 0.4);
}

.btn-submit:active[b-4c0a55ws4y] {
    transform: translateY(0);
}

/* Email Info */
.email-info[b-4c0a55ws4y] {
    margin-top: 24px;
    padding: 16px;
    background: #f0f8ff;
    border: 1px solid #d0e8ff;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.email-info i[b-4c0a55ws4y] {
    color: #3498db;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.email-info p[b-4c0a55ws4y] {
    margin: 0;
    color: #2c5282;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Validation Messages */
.validation-summary[b-4c0a55ws4y] {
    background: #fff5f5;
    border: 1px solid #ffdddd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: #e74c3c;
}

.validation-message[b-4c0a55ws4y] {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 6px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .email-card[b-4c0a55ws4y] {
        padding: 30px 20px;
    }

    .email-title[b-4c0a55ws4y] {
        font-size: 1.6rem;
    }

    .email-icon[b-4c0a55ws4y] {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .email-container[b-4c0a55ws4y] {
        padding: 20px 10px;
    }

    .email-card[b-4c0a55ws4y] {
        padding: 25px 15px;
    }

    .email-title[b-4c0a55ws4y] {
        font-size: 1.4rem;
    }

    .email-subtitle[b-4c0a55ws4y] {
        font-size: 0.9rem;
    }

    .btn-submit[b-4c0a55ws4y],
    .btn-verify[b-4c0a55ws4y] {
        font-size: 1rem;
        padding: 14px;
    }
}

/* /Components/Account/Pages/Manage/Index.razor.rz.scp.css */
/* Profile Header */
.profile-header[b-wl7y7mle65] {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.profile-icon[b-wl7y7mle65] {
    font-size: 2.5rem;
    color: #C4A961;
}

.profile-title[b-wl7y7mle65] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1C1B1F;
    margin: 0;
}

/* Profile Form */
.profile-form[b-wl7y7mle65] {
    max-width: 600px;
}

.form-group[b-wl7y7mle65] {
    margin-bottom: 24px;
}

.form-label[b-wl7y7mle65] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #1C1B1F;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label i[b-wl7y7mle65] {
    color: #C4A961;
    font-size: 0.9rem;
}

.form-control[b-wl7y7mle65] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.form-control:focus[b-wl7y7mle65] {
    outline: none;
    border-color: #C4A961;
    box-shadow: 0 0 0 3px rgba(196, 169, 97, 0.1);
}

.form-control:disabled[b-wl7y7mle65] {
    background-color: #f5f5f5;
    color: #666;
    cursor: not-allowed;
}

.form-control[b-wl7y7mle65]::placeholder {
    color: #aaa;
}

.form-text[b-wl7y7mle65] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #666;
}

.form-text i[b-wl7y7mle65] {
    font-size: 0.8rem;
    color: #3498db;
}

/* Submit Button */
.btn-submit[b-wl7y7mle65] {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #F0E495 0%, #C4A961 100%);
    color: #1C1B1F;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(196, 169, 97, 0.3);
    margin-top: 30px;
}

.btn-submit:hover[b-wl7y7mle65] {
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(196, 169, 97, 0.4);
}

.btn-submit:active[b-wl7y7mle65] {
    transform: translateY(0);
}

/* Validation Messages */
.validation-summary[b-wl7y7mle65] {
    background: #fff5f5;
    border: 1px solid #ffdddd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: #e74c3c;
}

.validation-message[b-wl7y7mle65] {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 6px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-header[b-wl7y7mle65] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .profile-icon[b-wl7y7mle65] {
        font-size: 2rem;
    }

    .profile-title[b-wl7y7mle65] {
        font-size: 1.5rem;
    }

    .profile-form[b-wl7y7mle65] {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .btn-submit[b-wl7y7mle65] {
        font-size: 1rem;
        padding: 14px;
    }

    .profile-title[b-wl7y7mle65] {
        font-size: 1.3rem;
    }
}

/* /Components/Account/Pages/Manage/PersonalData.razor.rz.scp.css */
/* Personal Data Header */
.personal-data-header[b-9ubgr9jcwh] {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.personal-data-icon[b-9ubgr9jcwh] {
    font-size: 2.5rem;
    color: #C4A961;
}

.personal-data-title[b-9ubgr9jcwh] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1C1B1F;
    margin: 0;
}

/* Personal Data Content */
.personal-data-content[b-9ubgr9jcwh] {
    max-width: 700px;
}

/* Info Box */
.info-box[b-9ubgr9jcwh] {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border: 2px solid #d0e8ff;
    border-radius: 12px;
    margin-bottom: 20px;
}

.info-box i[b-9ubgr9jcwh] {
    color: #3498db;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.info-box p[b-9ubgr9jcwh] {
    margin: 0;
    color: #2c5282;
    line-height: 1.6;
}

/* Warning Box */
.warning-box[b-9ubgr9jcwh] {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border: 2px solid #ffcc99;
    border-radius: 12px;
    margin-bottom: 30px;
}

.warning-box i[b-9ubgr9jcwh] {
    color: #e67e22;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.warning-box p[b-9ubgr9jcwh] {
    margin: 0;
    color: #8b5a00;
    line-height: 1.6;
}

.warning-box strong[b-9ubgr9jcwh] {
    color: #e67e22;
}

/* Action Buttons */
.action-buttons[b-9ubgr9jcwh] {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-download[b-9ubgr9jcwh],
.btn-delete[b-9ubgr9jcwh] {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: none;
}

.btn-download[b-9ubgr9jcwh] {
    background: linear-gradient(135deg, #F0E495 0%, #C4A961 100%);
    color: #1C1B1F;
    box-shadow: 0 4px 12px rgba(196, 169, 97, 0.3);
}

.btn-download:hover[b-9ubgr9jcwh] {
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(196, 169, 97, 0.4);
}

.btn-delete[b-9ubgr9jcwh] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.3);
}

.btn-delete:hover[b-9ubgr9jcwh] {
    background: linear-gradient(135deg, #ee5a6f 0%, #c0392b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(238, 90, 111, 0.4);
    text-decoration: none;
    color: white;
}

.btn-download:active[b-9ubgr9jcwh],
.btn-delete:active[b-9ubgr9jcwh] {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .personal-data-header[b-9ubgr9jcwh] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .personal-data-icon[b-9ubgr9jcwh] {
        font-size: 2rem;
    }

    .personal-data-title[b-9ubgr9jcwh] {
        font-size: 1.5rem;
    }

    .personal-data-content[b-9ubgr9jcwh] {
        max-width: 100%;
    }

    .action-buttons[b-9ubgr9jcwh] {
        flex-direction: column;
    }

    .btn-download[b-9ubgr9jcwh],
    .btn-delete[b-9ubgr9jcwh] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .personal-data-title[b-9ubgr9jcwh] {
        font-size: 1.3rem;
    }

    .info-box[b-9ubgr9jcwh],
    .warning-box[b-9ubgr9jcwh] {
        flex-direction: column;
        padding: 15px;
    }

    .btn-download[b-9ubgr9jcwh],
    .btn-delete[b-9ubgr9jcwh] {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* /Components/Account/Pages/Manage/TwoFactorAuthentication.razor.rz.scp.css */
/* Two Factor Header */
.twofa-header[b-pkf2dnpzyx] {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.twofa-icon[b-pkf2dnpzyx] {
    font-size: 2.5rem;
    color: #C4A961;
}

.twofa-title[b-pkf2dnpzyx] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1C1B1F;
    margin: 0;
}

/* Two Factor Status */
.twofa-status[b-pkf2dnpzyx] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.twofa-status.enabled[b-pkf2dnpzyx] {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #c3e6cb;
}

.twofa-status.enabled i[b-pkf2dnpzyx] {
    font-size: 1.3rem;
}

.twofa-status.disabled[b-pkf2dnpzyx] {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border: 2px solid #ffeaa7;
}

.twofa-status.disabled i[b-pkf2dnpzyx] {
    font-size: 1.3rem;
}

/* Alert Boxes */
.alert-box[b-pkf2dnpzyx] {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.alert-box i[b-pkf2dnpzyx] {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.alert-box p[b-pkf2dnpzyx] {
    margin: 10px 0 0 0;
    line-height: 1.6;
}

.alert-box strong[b-pkf2dnpzyx] {
    display: block;
    margin-bottom: 5px;
}

.alert-box a[b-pkf2dnpzyx] {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.alert-box.danger[b-pkf2dnpzyx] {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border: 2px solid #ffcccc;
    color: #721c24;
}

.alert-box.danger i[b-pkf2dnpzyx] {
    color: #dc3545;
}

.alert-box.warning[b-pkf2dnpzyx] {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border: 2px solid #ffcc99;
    color: #8b5a00;
}

.alert-box.warning i[b-pkf2dnpzyx] {
    color: #e67e22;
}

/* Authenticator Section */
.authenticator-section[b-pkf2dnpzyx] {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.section-title[b-pkf2dnpzyx] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1C1B1F;
    margin: 0 0 15px 0;
}

.section-title i[b-pkf2dnpzyx] {
    color: #C4A961;
    font-size: 1.3rem;
}

.section-description[b-pkf2dnpzyx] {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Action Buttons */
.action-buttons[b-pkf2dnpzyx] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-primary[b-pkf2dnpzyx],
.btn-secondary[b-pkf2dnpzyx],
.btn-danger[b-pkf2dnpzyx] {
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: none;
}

.btn-primary[b-pkf2dnpzyx] {
    background: linear-gradient(135deg, #F0E495 0%, #C4A961 100%);
    color: #1C1B1F;
    box-shadow: 0 4px 12px rgba(196, 169, 97, 0.3);
}

.btn-primary:hover[b-pkf2dnpzyx] {
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(196, 169, 97, 0.4);
    text-decoration: none;
}

.btn-secondary[b-pkf2dnpzyx] {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #495057;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

.btn-secondary:hover[b-pkf2dnpzyx] {
    background: linear-gradient(135deg, #dee2e6 0%, #ced4da 100%);
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(108, 117, 125, 0.3);
    text-decoration: none;
}

.btn-danger[b-pkf2dnpzyx] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.3);
}

.btn-danger:hover[b-pkf2dnpzyx] {
    background: linear-gradient(135deg, #ee5a6f 0%, #c0392b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(238, 90, 111, 0.4);
    text-decoration: none;
    color: white;
}

.btn-primary:active[b-pkf2dnpzyx],
.btn-secondary:active[b-pkf2dnpzyx],
.btn-danger:active[b-pkf2dnpzyx] {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .twofa-header[b-pkf2dnpzyx] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .twofa-icon[b-pkf2dnpzyx] {
        font-size: 2rem;
    }

    .twofa-title[b-pkf2dnpzyx] {
        font-size: 1.5rem;
    }

    .authenticator-section[b-pkf2dnpzyx] {
        padding: 20px;
    }

    .action-buttons[b-pkf2dnpzyx] {
        flex-direction: column;
    }

    .btn-primary[b-pkf2dnpzyx],
    .btn-secondary[b-pkf2dnpzyx],
    .btn-danger[b-pkf2dnpzyx] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .twofa-title[b-pkf2dnpzyx] {
        font-size: 1.3rem;
    }

    .alert-box[b-pkf2dnpzyx],
    .authenticator-section[b-pkf2dnpzyx] {
        padding: 15px;
    }

    .section-title[b-pkf2dnpzyx] {
        font-size: 1.2rem;
    }
}

/* /Components/Account/Shared/ManageLayout.razor.rz.scp.css */
/* Manage Container */
.manage-container[b-ap6ej1li4m] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: calc(100vh - 80px);
}

/* Manage Header */
.manage-header[b-ap6ej1li4m] {
    margin-bottom: 40px;
}

.manage-title-wrapper[b-ap6ej1li4m] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.manage-header-icon[b-ap6ej1li4m] {
    font-size: 3rem;
    color: #C4A961;
}

.manage-title[b-ap6ej1li4m] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C1B1F;
    margin: 0;
}

.manage-subtitle[b-ap6ej1li4m] {
    font-size: 1.1rem;
    color: #666;
    margin: 5px 0 0 0;
}

/* Manage Content */
.manage-content[b-ap6ej1li4m] {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.manage-sidebar[b-ap6ej1li4m] {
    position: sticky;
    top: 20px;
    align-self: start;
}

.manage-main[b-ap6ej1li4m] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .manage-content[b-ap6ej1li4m] {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .manage-sidebar[b-ap6ej1li4m] {
        position: static;
    }

    .manage-title[b-ap6ej1li4m] {
        font-size: 2rem;
    }

    .manage-header-icon[b-ap6ej1li4m] {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .manage-container[b-ap6ej1li4m] {
        padding: 20px 15px;
    }

    .manage-main[b-ap6ej1li4m] {
        padding: 25px 20px;
    }

    .manage-title[b-ap6ej1li4m] {
        font-size: 1.8rem;
    }

    .manage-subtitle[b-ap6ej1li4m] {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .manage-title-wrapper[b-ap6ej1li4m] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .manage-title[b-ap6ej1li4m] {
        font-size: 1.5rem;
    }

    .manage-header-icon[b-ap6ej1li4m] {
        font-size: 2rem;
    }
}

/* /Components/Account/Shared/ManageNavMenu.razor.rz.scp.css */
/* Manage Navigation */
.manage-nav[b-sflrky2ur5] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 10px;
}

.manage-nav-list[b-sflrky2ur5] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.manage-nav-item[b-sflrky2ur5] {
    margin-bottom: 5px;
}

.manage-nav-link[b-sflrky2ur5] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.manage-nav-link i[b-sflrky2ur5] {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    color: #999;
    transition: color 0.2s ease;
}

.manage-nav-link:hover[b-sflrky2ur5] {
    background: #f8f8f8;
    color: #1C1B1F;
    text-decoration: none;
}

.manage-nav-link:hover i[b-sflrky2ur5] {
    color: #C4A961;
}

.manage-nav-link.active[b-sflrky2ur5] {
    background: linear-gradient(135deg, #F0E495 0%, #C4A961 100%);
    color: #1C1B1F;
    font-weight: 600;
}

.manage-nav-link.active i[b-sflrky2ur5] {
    color: #1C1B1F;
}

/* Responsive Design */
@media (max-width: 992px) {
    .manage-nav[b-sflrky2ur5] {
        margin-bottom: 20px;
    }

    .manage-nav-list[b-sflrky2ur5] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .manage-nav-list[b-sflrky2ur5] {
        grid-template-columns: 1fr;
    }

    .manage-nav-link[b-sflrky2ur5] {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
}

/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-shell[b-u1sx8180a5] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh + 20px);
    margin: -10px;
    width: calc(100% + 20px);
    background:
        radial-gradient(circle at top left, rgba(196, 169, 97, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(30, 66, 92, 0.16), transparent 26%),
        linear-gradient(180deg, #17161a 0%, #101012 100%);
    border-radius: 0;
    overflow: hidden;
}

.admin-shell.sidebar-collapsed[b-u1sx8180a5] {
    grid-template-columns: 88px 1fr;
}

.admin-sidebar[b-u1sx8180a5] {
    background:
        radial-gradient(circle at top left, rgba(196, 169, 97, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(16, 16, 20, 0.98) 0%, rgba(27, 26, 31, 0.98) 52%, rgba(18, 18, 22, 0.98) 100%);
    color: #f7f3ea;
    padding: 24px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.04);
    position: relative;
}

.admin-sidebar[b-u1sx8180a5]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18%);
    pointer-events: none;
}

.admin-sidebar-header[b-u1sx8180a5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 14px 14px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    position: relative;
    z-index: 1;
}

.admin-brand[b-u1sx8180a5] {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.admin-brand-button[b-u1sx8180a5] {
    flex: 1 1 auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.admin-brand-button:hover .admin-brand-title[b-u1sx8180a5],
.admin-brand-button:hover .admin-brand-subtitle[b-u1sx8180a5] {
    color: #ffffff;
}

.admin-brand-logo[b-u1sx8180a5] {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
}

.admin-brand-text[b-u1sx8180a5] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.admin-brand-title[b-u1sx8180a5] {
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.92rem;
    color: #f9f7f2;
}

.admin-brand-subtitle[b-u1sx8180a5] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.77rem;
    font-weight: 500;
    color: rgba(247, 243, 234, 0.68);
}

.admin-toggle[b-u1sx8180a5] {
    border: 0;
    background: linear-gradient(135deg, rgba(196, 169, 97, 0.22), rgba(145, 96, 39, 0.34));
    color: #f9f7f2;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.admin-toggle:hover[b-u1sx8180a5] {
    background: linear-gradient(135deg, rgba(196, 169, 97, 0.34), rgba(145, 96, 39, 0.44));
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.admin-nav[b-u1sx8180a5] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.admin-sidebar .admin-nav-item[b-u1sx8180a5],
.admin-sidebar .admin-nav-item:link[b-u1sx8180a5],
.admin-sidebar .admin-nav-item:visited[b-u1sx8180a5] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 18px;
    color: #f6f1e7 !important;
    text-decoration: none !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.028));
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.012em;
    position: relative;
    overflow: hidden;
}

.admin-nav-item[b-u1sx8180a5]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 999px;
    background: transparent;
    transition: background 0.18s ease;
}

.admin-sidebar .admin-nav-item:hover[b-u1sx8180a5],
.admin-sidebar .admin-nav-item:active[b-u1sx8180a5],
.admin-sidebar .admin-nav-item:focus[b-u1sx8180a5] {
    text-decoration: none !important;
    color: #ffffff !important;
}

.admin-sidebar .admin-nav-item:hover[b-u1sx8180a5] {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
    color: #ffffff !important;
    transform: translateX(3px);
    border-color: rgba(196, 169, 97, 0.24);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.admin-sidebar .admin-nav-item.active[b-u1sx8180a5],
.admin-sidebar .admin-nav-item.active:link[b-u1sx8180a5],
.admin-sidebar .admin-nav-item.active:visited[b-u1sx8180a5] {
    background: linear-gradient(135deg, #c4a961 0%, #916027 100%);
    color: #ffffff !important;
    box-shadow: 0 14px 30px rgba(145, 96, 39, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.admin-nav-item.active[b-u1sx8180a5]::before,
.admin-nav-item:hover[b-u1sx8180a5]::before {
    background: rgba(255, 255, 255, 0.92);
}

.admin-nav-icon[b-u1sx8180a5] {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex: 0 0 auto;
    color: #f7f3ea !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    font-size: 0.96rem;
    opacity: 1;
}

.admin-nav-label[b-u1sx8180a5] {
    color: #f6f1e7 !important;
    text-decoration: none;
    line-height: 1.2;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.admin-sidebar .admin-nav-item:hover .admin-nav-label[b-u1sx8180a5],
.admin-sidebar .admin-nav-item.active .admin-nav-label[b-u1sx8180a5],
.admin-sidebar .admin-nav-item:hover .admin-nav-icon[b-u1sx8180a5],
.admin-sidebar .admin-nav-item.active .admin-nav-icon[b-u1sx8180a5] {
    color: #ffffff !important;
}

.admin-sidebar .admin-nav-item.active .admin-nav-icon[b-u1sx8180a5] {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.14);
}

.admin-shell.sidebar-collapsed .admin-nav-icon[b-u1sx8180a5] {
    margin: 0 auto;
}

.admin-main[b-u1sx8180a5] {
    min-width: 0;
    padding: 18px;
    background:
        radial-gradient(circle at top right, rgba(196, 169, 97, 0.08), transparent 24%),
        linear-gradient(180deg, #f6f3ed 0%, #efebe4 100%);
}

.admin-content[b-u1sx8180a5] {
    min-height: calc(100vh - 56px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(251, 249, 244, 0.92) 100%);
    border: 1px solid rgba(28, 27, 31, 0.06);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(28, 27, 31, 0.1);
    padding: 28px;
    backdrop-filter: blur(10px);
}

.admin-shell.sidebar-collapsed .admin-brand-text[b-u1sx8180a5],
.admin-shell.sidebar-collapsed .admin-nav-label[b-u1sx8180a5] {
    display: none;
}

.admin-shell.sidebar-collapsed .admin-sidebar[b-u1sx8180a5] {
    padding-inline: 12px;
}

.admin-shell.sidebar-collapsed .admin-nav-item[b-u1sx8180a5] {
    justify-content: center;
    padding-inline: 12px;
}

.admin-sidebar-footer[b-u1sx8180a5] {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.admin-footer-pill[b-u1sx8180a5] {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f9f7f2;
    background: rgba(196, 169, 97, 0.16);
    border: 1px solid rgba(196, 169, 97, 0.2);
}

.admin-footer-text[b-u1sx8180a5] {
    margin: 0;
    color: rgba(247, 243, 234, 0.86);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.86rem;
    line-height: 1.45;
}

.admin-shell.sidebar-collapsed .admin-sidebar-footer[b-u1sx8180a5] {
    display: none;
}

.admin-unauthorized[b-u1sx8180a5] {
    min-height: calc(100vh + 20px);
    margin: -10px;
    width: calc(100% + 20px);
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top left, rgba(196, 169, 97, 0.12), transparent 28%),
        linear-gradient(180deg, #17161a 0%, #101012 100%);
    color: #f7f3ea;
    padding: 24px;
}

@media (max-width: 992px) {
    .admin-shell[b-u1sx8180a5],
    .admin-shell.sidebar-collapsed[b-u1sx8180a5] {
        grid-template-columns: 1fr;
        margin: 0;
        width: 100%;
        min-height: auto;
    }

    .admin-sidebar[b-u1sx8180a5] {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .admin-content[b-u1sx8180a5] {
        min-height: auto;
        padding: 20px;
        border-radius: 18px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-i173xvppdu] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-i173xvppdu] {
    flex: 1;
    width: 100%;
}

.content[b-i173xvppdu] {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

#blazor-error-ui[b-i173xvppdu] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-i173xvppdu] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

@media print {
    /* Hide sidebar and top row when printing */
    .sidebar[b-i173xvppdu] {
        display: none !important;
    }
    
    .top-row[b-i173xvppdu] {
        display: none !important;
    }
    
    /* Make main content full width for printing */
    .page[b-i173xvppdu] {
        display: block !important;
    }
    
    main[b-i173xvppdu] {
        width: 100% !important;
    }
    
    article[b-i173xvppdu] {
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    /* Hide error UI when printing */
    #blazor-error-ui[b-i173xvppdu] {
        display: none !important;
    }
}

/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Top Navbar */
.top-navbar[b-s3n9ij60h2] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: none;
    border-bottom: 1px solid #e0e0e0;
}

.navbar-container[b-s3n9ij60h2] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

/* Brand */
.navbar-brand[b-s3n9ij60h2] {
    display: flex;
    align-items: center;
}

.brand-link[b-s3n9ij60h2] {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
    font-size: 0;
    line-height: 0;
}

.brand-link:hover[b-s3n9ij60h2] {
    opacity: 0.8;
}

.brand-logo[b-s3n9ij60h2] {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle[b-s3n9ij60h2] {
    display: none;
    background: transparent;
    border: 1px solid #e8e8e8;
    color: #1C1B1F;
    font-size: 1.3rem;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover[b-s3n9ij60h2] {
    background: #f5f5f5;
    border-color: #C4A961;
    color: #C4A961;
}

.mobile-menu-toggle .bi[b-s3n9ij60h2] {
    width: auto;
    height: auto;
    background: none;
    margin: 0;
}

/* Navbar Menu */
.navbar-menu[b-s3n9ij60h2] {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: space-between;
    margin-left: 15px;
}

.menu-left[b-s3n9ij60h2],
.menu-right[b-s3n9ij60h2] {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Nav Items */
.nav-item[b-s3n9ij60h2] {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    color: #1C1B1F;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.nav-item:hover[b-s3n9ij60h2] {
    background: #f5f5f5;
    color: #C4A961;
    text-decoration: none;
}

.nav-item.active[b-s3n9ij60h2] {
    color: #C4A961;
    font-weight: 700;
    background: #fafafa;
}

.nav-item.active[b-s3n9ij60h2]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: #C4A961;
}

.nav-label[b-s3n9ij60h2] {
    white-space: nowrap;
    font-weight: 700;
}

/* Login Item - Always visible */
.login-item[b-s3n9ij60h2] {
    background: linear-gradient(135deg, #F0E495 0%, #C4A961 100%);
    color: #1C1B1F;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: none;
    padding: 5px 14px;
    border-radius: 18px;
}

.login-item:hover[b-s3n9ij60h2] {
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    color: white;
    text-decoration: none;
}

.login-item.active[b-s3n9ij60h2]::after {
    display: none;
}

/* User Item */
.user-item[b-s3n9ij60h2] {
    max-width: 200px;
    background: transparent;
}

.user-item .nav-label[b-s3n9ij60h2] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-item:hover[b-s3n9ij60h2] {
    background: #f5f5f5;
}

/* Logout Form & Button */
.logout-form[b-s3n9ij60h2] {
    margin: 0;
    display: flex;
}

.logout-btn[b-s3n9ij60h2] {
    background: transparent;
    border: none;
    color: #e74c3c;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logout-btn:hover[b-s3n9ij60h2] {
    background: #fff5f5;
    color: #c0392b;
    text-decoration: none;
}

/* Admin Items - only shown when logged in */
.admin-item[b-s3n9ij60h2] {
    background: transparent;
}

/* Icons from Bootstrap Icons */
.bi[b-s3n9ij60h2] {
    display: inline-block;
}

.bi-list[b-s3n9ij60h2]::before {
    content: "☰";
}

.bi-x-lg[b-s3n9ij60h2]::before {
    content: "✕";
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-menu[b-s3n9ij60h2] {
        gap: 20px;
        margin-left: 30px;
    }

    .menu-left[b-s3n9ij60h2],
    .menu-right[b-s3n9ij60h2] {
        gap: 6px;
    }

    .nav-item[b-s3n9ij60h2] {
        padding: 8px 16px;
        font-size: 0.95rem;
    }

    .nav-label[b-s3n9ij60h2] {
        display: none;
    }

    .nav-icon[b-s3n9ij60h2] {
        font-size: 1.5rem;
    }

    .login-item .nav-label[b-s3n9ij60h2],
    .user-item .nav-label[b-s3n9ij60h2] {
        display: inline;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle[b-s3n9ij60h2] {
        display: block;
    }

    .navbar-menu[b-s3n9ij60h2] {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        margin: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        border-top: 1px solid #e8e8e8;
    }

    .navbar-menu.mobile-open[b-s3n9ij60h2] {
        transform: translateY(0);
    }

    .menu-left[b-s3n9ij60h2],
    .menu-right[b-s3n9ij60h2] {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .nav-item[b-s3n9ij60h2] {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .nav-label[b-s3n9ij60h2] {
        display: inline;
    }

    .nav-icon[b-s3n9ij60h2] {
        font-size: 1.4rem;
    }

    .logout-form[b-s3n9ij60h2] {
        width: 100%;
    }

    .logout-btn[b-s3n9ij60h2] {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .navbar-container[b-s3n9ij60h2] {
        padding: 0 15px;
        height: 60px;
    }

    .brand-link[b-s3n9ij60h2] {
        font-size: 1.3rem;
        gap: 8px;
    }

    .brand-icon[b-s3n9ij60h2] {
        font-size: 1.6rem;
    }

    .navbar-menu[b-s3n9ij60h2] {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
}

/* Print Styles - Ocultar navbar completamente na impressão */
@media print {
    .top-navbar[b-s3n9ij60h2] {
        display: none !important;
    }
    
    .navbar-container[b-s3n9ij60h2] {
        display: none !important;
    }
    
    .navbar-brand[b-s3n9ij60h2] {
        display: none !important;
    }
    
    .brand-link[b-s3n9ij60h2] {
        display: none !important;
    }
    
    header[b-s3n9ij60h2] {
        display: none !important;
    }
}
/* /Components/Layout/SurveyLayout.razor.rz.scp.css */
.survey-page[b-u9zkw4blol] {
    min-height: 100vh;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    display: flex;
    flex-direction: column;
}

.survey-main[b-u9zkw4blol] {
    flex: 1;
    width: 100%;
    padding: 1rem;
}

@media (min-width: 768px) {
    .survey-main[b-u9zkw4blol] {
        padding: 2rem;
    }
}

#blazor-error-ui[b-u9zkw4blol] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-u9zkw4blol] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Admin/Dashboard.razor.rz.scp.css */
.dashboard-shell[b-xarpqs3yr5] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #1f2937;
}

.dashboard-hero[b-xarpqs3yr5],
.radar-card[b-xarpqs3yr5],
.autocomplete-panel[b-xarpqs3yr5],
.loading-state[b-xarpqs3yr5] {
    background:
        radial-gradient(circle at top left, rgba(196, 169, 97, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(18, 18, 22, 0.98), rgba(25, 24, 29, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    color: #f7f3ea;
}

.dashboard-empty-state[b-xarpqs3yr5],
.overview-card[b-xarpqs3yr5],
.metric-card[b-xarpqs3yr5],
.indicator-card[b-xarpqs3yr5],
.responses-card[b-xarpqs3yr5],
.selected-company-pill[b-xarpqs3yr5],
.empty-metric[b-xarpqs3yr5],
.overview-chip[b-xarpqs3yr5],
.overview-point[b-xarpqs3yr5],
.section-summary[b-xarpqs3yr5] {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 245, 238, 0.96));
    border: 1px solid rgba(28, 27, 31, 0.08);
    box-shadow: 0 18px 48px rgba(28, 27, 31, 0.08);
    color: #18212d;
}

.dashboard-hero[b-xarpqs3yr5] {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.95fr);
    gap: 24px;
    padding: 28px;
}

.dashboard-hero h2[b-xarpqs3yr5],
.dashboard-hero p[b-xarpqs3yr5],
.dashboard-hero small[b-xarpqs3yr5],
.dashboard-hero .form-label[b-xarpqs3yr5] {
    color: #f7f3ea;
}

.dashboard-hero .text-muted[b-xarpqs3yr5] {
    color: rgba(247, 243, 234, 0.68) !important;
}

.dashboard-hero-copy h2[b-xarpqs3yr5],
.dashboard-empty-state h3[b-xarpqs3yr5],
.section-head h3[b-xarpqs3yr5],
.overview-head h3[b-xarpqs3yr5] {
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dashboard-kicker[b-xarpqs3yr5] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.75rem;
    border-radius: 999px;
    background: rgba(196, 169, 97, 0.14);
    color: #735b19;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.dashboard-hero .dashboard-kicker[b-xarpqs3yr5] {
    color: #f1dfaa;
}

.dashboard-hero-panel[b-xarpqs3yr5] {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

.company-search[b-xarpqs3yr5] {
    position: relative;
}

.dashboard-search-input[b-xarpqs3yr5] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f7f3ea;
    padding: 0.9rem 1rem;
    border-radius: 16px;
}

.dashboard-search-input[b-xarpqs3yr5]::placeholder {
    color: rgba(247, 243, 234, 0.55);
}

.dashboard-search-input:focus[b-xarpqs3yr5] {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(196, 169, 97, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(196, 169, 97, 0.16);
}

.autocomplete-panel[b-xarpqs3yr5] {
    position: absolute;
    z-index: 20;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    max-height: 320px;
    overflow: auto;
    border-radius: 16px;
    padding: 8px;
}

.autocomplete-item[b-xarpqs3yr5] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
    border: 0;
    background: transparent;
    color: #f7f3ea;
    border-radius: 12px;
    padding: 0.85rem 0.9rem;
    transition: background 0.16s ease, transform 0.16s ease;
}

.autocomplete-item span[b-xarpqs3yr5] {
    color: rgba(247, 243, 234, 0.62);
    font-size: 0.85rem;
}

.autocomplete-item:hover[b-xarpqs3yr5],
.autocomplete-item:focus[b-xarpqs3yr5] {
    background: rgba(196, 169, 97, 0.12);
    transform: translateX(2px);
}

.selected-company-pill[b-xarpqs3yr5] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 239, 0.96));
    border: 1px solid rgba(28, 27, 31, 0.08);
}

.selected-company-pill strong[b-xarpqs3yr5] {
    font-size: 1.05rem;
    color: #18212d;
}

.selected-company-pill span:not(.badge)[b-xarpqs3yr5] {
    color: #5f6b7a;
}

.loading-state[b-xarpqs3yr5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 36px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.dashboard-empty-state[b-xarpqs3yr5] {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
    gap: 24px;
    align-items: center;
    padding: 28px;
}

.dashboard-empty-card[b-xarpqs3yr5] {
    display: grid;
    gap: 12px;
}

.empty-metric[b-xarpqs3yr5] {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 239, 0.96));
    border: 1px solid rgba(28, 27, 31, 0.08);
}

.empty-metric span[b-xarpqs3yr5] {
    color: #5f6b7a;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.empty-metric strong[b-xarpqs3yr5] {
    text-align: right;
    font-size: 0.95rem;
}

.dashboard-metrics[b-xarpqs3yr5] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.metric-card[b-xarpqs3yr5] {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(28, 27, 31, 0.08);
    background:
        radial-gradient(circle at top right, rgba(196, 169, 97, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 239, 0.96));
    box-shadow: 0 14px 34px rgba(28, 27, 31, 0.08);
}

.metric-card span[b-xarpqs3yr5] {
    display: block;
    color: #64748b;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.metric-card strong[b-xarpqs3yr5] {
    display: block;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 0.45rem;
}

.metric-card small[b-xarpqs3yr5] {
    color: #64748b;
}

.metric-primary[b-xarpqs3yr5] { border-color: rgba(13, 110, 253, 0.24); }
.metric-secondary[b-xarpqs3yr5] { border-color: rgba(32, 201, 151, 0.24); }
.metric-tertiary[b-xarpqs3yr5] { border-color: rgba(196, 169, 97, 0.26); }
.metric-warning[b-xarpqs3yr5] { border-color: rgba(220, 53, 69, 0.22); }

.dashboard-overview[b-xarpqs3yr5] {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 16px;
}

.overview-card[b-xarpqs3yr5] {
    padding: 24px;
}

.overview-head[b-xarpqs3yr5] {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.overview-chip[b-xarpqs3yr5] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 160px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
}

.overview-chip span[b-xarpqs3yr5],
.overview-point span[b-xarpqs3yr5] {
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.overview-chip strong[b-xarpqs3yr5],
.overview-point strong[b-xarpqs3yr5] {
    font-size: 0.96rem;
}

.overview-points[b-xarpqs3yr5] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.overview-point[b-xarpqs3yr5] {
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 239, 0.96));
    border: 1px solid rgba(28, 27, 31, 0.08);
    display: grid;
    gap: 0.35rem;
}

.overview-note[b-xarpqs3yr5] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.radar-section[b-xarpqs3yr5],
.responses-section[b-xarpqs3yr5] {
    display: grid;
    gap: 16px;
}

.radar-section[b-xarpqs3yr5] {
    position: relative;
}

.radar-section-empty .section-summary[b-xarpqs3yr5],
.radar-section-empty .radar-grid[b-xarpqs3yr5] {
    filter: blur(1px);
    opacity: 0.46;
    pointer-events: none;
}

.copsoq-data-overlay[b-xarpqs3yr5] {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 22px;
    background: rgba(248, 245, 238, 0.72);
    backdrop-filter: blur(2px);
}

.copsoq-data-overlay-card[b-xarpqs3yr5] {
    display: grid;
    gap: 0.5rem;
    max-width: 460px;
    padding: 20px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 238, 0.98));
    border: 1px solid rgba(28, 27, 31, 0.1);
    box-shadow: 0 18px 48px rgba(28, 27, 31, 0.14);
    text-align: center;
    color: #18212d;
}

.copsoq-data-overlay-card span[b-xarpqs3yr5] {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.copsoq-data-overlay-card strong[b-xarpqs3yr5] {
    font-size: 1.05rem;
    line-height: 1.35;
}

.section-head[b-xarpqs3yr5] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.section-badge[b-xarpqs3yr5] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-short[b-xarpqs3yr5] { background: rgba(255, 99, 132, 0.16); color: #ffb5c2; }
.section-medium[b-xarpqs3yr5] { background: rgba(13, 110, 253, 0.18); color: #b7d2ff; }
.section-long[b-xarpqs3yr5] { background: rgba(32, 201, 151, 0.16); color: #a8f0dd; }

.section-summary[b-xarpqs3yr5] {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 180px;
}

.section-summary span[b-xarpqs3yr5] {
    color: #64748b;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-summary strong[b-xarpqs3yr5] {
    font-size: 1.1rem;
}

.radar-grid[b-xarpqs3yr5] {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 16px;
    align-items: start;
}

.radar-card[b-xarpqs3yr5] {
    padding: 16px;
    overflow-x: auto;
}

.radar-svg[b-xarpqs3yr5] {
    width: 100%;
    min-width: 560px;
    height: auto;
    display: block;
}

.indicator-grid[b-xarpqs3yr5] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.indicator-card[b-xarpqs3yr5] {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(28, 27, 31, 0.08);
    background:
        radial-gradient(circle at top right, rgba(196, 169, 97, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 239, 0.96));
}

.indicator-card-top[b-xarpqs3yr5] {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.indicator-card h4[b-xarpqs3yr5] {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 700;
    color: #18212d;
}

.indicator-period[b-xarpqs3yr5] {
    display: block;
    color: #64748b;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}

.indicator-score[b-xarpqs3yr5] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    padding: 0.38rem 0.55rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.8rem;
}

.indicator-bar[b-xarpqs3yr5] {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    overflow: hidden;
    margin-bottom: 12px;
}

.indicator-bar-fill[b-xarpqs3yr5] {
    height: 100%;
    border-radius: inherit;
    transition: width 0.22s ease;
}

.indicator-meta[b-xarpqs3yr5] {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.indicator-description[b-xarpqs3yr5] {
    color: #5f6b7a;
    font-size: 0.86rem;
}

.score-high[b-xarpqs3yr5],
.text-bg-success[b-xarpqs3yr5],
.text-bg-primary[b-xarpqs3yr5],
.text-bg-warning[b-xarpqs3yr5],
.text-bg-danger[b-xarpqs3yr5] {
    color: #fff !important;
}

.score-high[b-xarpqs3yr5],
.indicator-bar-fill.score-high[b-xarpqs3yr5] { background: linear-gradient(135deg, #10b981, #34d399); }

.score-mid[b-xarpqs3yr5],
.indicator-bar-fill.score-mid[b-xarpqs3yr5] { background: linear-gradient(135deg, #0d6efd, #5ea0ff); }

.score-low[b-xarpqs3yr5],
.indicator-bar-fill.score-low[b-xarpqs3yr5] { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

.score-danger[b-xarpqs3yr5],
.indicator-bar-fill.score-danger[b-xarpqs3yr5] { background: linear-gradient(135deg, #ef4444, #fb7185); }

.responses-card[b-xarpqs3yr5] {
    padding: 0;
    overflow: hidden;
}

.responses-card thead th[b-xarpqs3yr5] {
    background: rgba(241, 237, 229, 0.9);
    color: #475569;
    border-bottom: 1px solid rgba(28, 27, 31, 0.08);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.responses-card tbody td[b-xarpqs3yr5] {
    color: #18212d;
    border-top-color: rgba(28, 27, 31, 0.06);
}

.responses-card tbody tr:hover[b-xarpqs3yr5] {
    background: rgba(196, 169, 97, 0.1);
}

.responses-pagination[b-xarpqs3yr5] {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

@media (max-width: 1200px) {
    .dashboard-hero[b-xarpqs3yr5],
    .dashboard-empty-state[b-xarpqs3yr5],
    .dashboard-overview[b-xarpqs3yr5],
    .radar-grid[b-xarpqs3yr5] {
        grid-template-columns: 1fr;
    }

    .dashboard-metrics[b-xarpqs3yr5] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .dashboard-hero[b-xarpqs3yr5],
    .dashboard-empty-state[b-xarpqs3yr5],
    .overview-card[b-xarpqs3yr5],
    .radar-card[b-xarpqs3yr5] {
        padding: 18px;
    }

    .radar-svg[b-xarpqs3yr5] {
        min-width: 620px;
    }

    .dashboard-metrics[b-xarpqs3yr5],
    .indicator-grid[b-xarpqs3yr5],
    .overview-points[b-xarpqs3yr5] {
        grid-template-columns: 1fr;
    }

    .section-head[b-xarpqs3yr5],
    .overview-head[b-xarpqs3yr5],
    .responses-pagination[b-xarpqs3yr5] {
        align-items: flex-start;
        flex-direction: column;
    }

    .metric-card strong[b-xarpqs3yr5] {
        font-size: 1.6rem;
    }
}
/* /Components/Pages/Admin/Empresas.razor.rz.scp.css */
.admin-page-header[b-cu46wjlh3y] {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-toolbar[b-cu46wjlh3y] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.empresa-filters[b-cu46wjlh3y] {
    max-width: 420px;
}

.admin-table thead th[b-cu46wjlh3y] {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    border-bottom: 1px solid rgba(28, 27, 31, 0.08);
}

.admin-table tbody td[b-cu46wjlh3y] {
    padding-top: 14px;
    padding-bottom: 14px;
}

.empresa-form-card[b-cu46wjlh3y] {
    top: 18px;
}

.empty-state[b-cu46wjlh3y] {
    min-height: 280px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    border: 1px dashed rgba(28, 27, 31, 0.12);
    border-radius: 18px;
    background: rgba(196, 169, 97, 0.05);
}

.empty-state i[b-cu46wjlh3y] {
    font-size: 2rem;
    color: var(--color-primary-dark);
}

@media (max-width: 992px) {
    .empresa-filters[b-cu46wjlh3y] {
        max-width: none;
    }

    .empresa-form-card[b-cu46wjlh3y] {
        position: static;
    }
}
/* /Components/Pages/Admin/EmpresaUpsertCard.razor.rz.scp.css */
.empresa-form-card[b-ad6roiaded] {
    position: sticky;
    top: 18px;
}

@media (max-width: 1200px) {
    .empresa-form-card[b-ad6roiaded] {
        position: static;
    }
}
/* /Components/Pages/Admin/Funcionarios.razor.rz.scp.css */
.funcionarios-page[b-38qvj0m0vj] {
    position: relative;
}

.funcionarios-page[b-38qvj0m0vj]::before {
    content: "";
    position: absolute;
    inset: -10px -12px auto;
    height: 280px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(196, 169, 97, 0.16), transparent 42%),
        radial-gradient(circle at top right, rgba(30, 66, 92, 0.12), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(250, 246, 238, 0.92));
    pointer-events: none;
    z-index: 0;
}

.funcionarios-page > *[b-38qvj0m0vj] {
    position: relative;
    z-index: 1;
}

.funcionarios-page[b-38qvj0m0vj]  .admin-page-banner {
    margin-bottom: 1.6rem;
    padding: 1.5rem 1.6rem;
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(248, 244, 236, 0.98));
    border: 1px solid rgba(28, 27, 31, 0.06);
    box-shadow: 0 18px 42px rgba(28, 27, 31, 0.08);
    backdrop-filter: blur(10px);
}

.funcionarios-page[b-38qvj0m0vj]  .admin-breadcrumbs {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(30, 66, 92, 0.72);
}

.funcionarios-page[b-38qvj0m0vj]  .admin-breadcrumb-link {
    color: var(--color-primary-dark);
}

.funcionarios-page[b-38qvj0m0vj]  .admin-page-header {
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 0;
}

.funcionarios-page[b-38qvj0m0vj]  h1 {
    margin-bottom: 0.4rem !important;
    font-size: clamp(2.3rem, 3vw, 3.35rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #16141a;
}

.funcionarios-page[b-38qvj0m0vj]  .admin-page-header p {
    max-width: 62ch;
    font-size: 1.02rem;
    line-height: 1.65;
    color: #5d6472 !important;
}

.funcionarios-page[b-38qvj0m0vj]  .admin-toolbar {
    gap: 0.75rem;
}

.funcionarios-toolbar-btn[b-38qvj0m0vj] {
    min-height: 48px;
    padding: 0.78rem 1.1rem;
    border-radius: 16px;
    border-width: 1px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(28, 27, 31, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.funcionarios-toolbar-btn.btn-outline-secondary[b-38qvj0m0vj] {
    color: #314457;
    border-color: rgba(30, 66, 92, 0.14);
    background: rgba(255, 255, 255, 0.8);
}

.funcionarios-toolbar-btn.btn-outline-secondary:hover[b-38qvj0m0vj] {
    color: #173047;
    border-color: rgba(30, 66, 92, 0.24);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.funcionarios-toolbar-btn-primary[b-38qvj0m0vj] {
    box-shadow: 0 14px 30px rgba(145, 96, 39, 0.22);
}

.funcionarios-filters[b-38qvj0m0vj] {
    max-width: 540px;
    margin-bottom: 1.5rem !important;
}

.funcionarios-search[b-38qvj0m0vj] {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(30, 66, 92, 0.1);
    box-shadow: 0 16px 32px rgba(28, 27, 31, 0.06);
}

.funcionarios-search .input-group-text[b-38qvj0m0vj],
.funcionarios-search .form-control[b-38qvj0m0vj] {
    border: 0;
    background: transparent;
}

.funcionarios-search .input-group-text[b-38qvj0m0vj] {
    padding-left: 1rem;
    color: var(--color-primary-dark);
}

.funcionarios-search .form-control[b-38qvj0m0vj] {
    min-height: 58px;
    font-size: 1.05rem;
    color: #15212e;
}

.funcionarios-search .form-control[b-38qvj0m0vj]::placeholder {
    color: #7d8795;
}

.funcionarios-search:focus-within[b-38qvj0m0vj] {
    border-color: rgba(196, 169, 97, 0.45);
    box-shadow: 0 0 0 4px rgba(196, 169, 97, 0.12), 0 20px 40px rgba(28, 27, 31, 0.07);
}

.funcionarios-card[b-38qvj0m0vj] {
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 247, 240, 0.96));
    box-shadow: 0 26px 60px rgba(28, 27, 31, 0.09);
    overflow: hidden;
}

.funcionarios-card-header[b-38qvj0m0vj] {
    padding: 1.4rem 1.5rem 0 !important;
}

.funcionarios-card-body[b-38qvj0m0vj] {
    padding: 1.25rem 1.5rem 1.5rem !important;
}

.funcionarios-section-heading h5[b-38qvj0m0vj] {
    font-size: 1.65rem;
    margin-bottom: 0.2rem !important;
    color: #182434;
}

.funcionarios-eyebrow[b-38qvj0m0vj] {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.55rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(196, 169, 97, 0.14);
    color: #7d561d;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.funcionarios-page-size[b-38qvj0m0vj] {
    min-width: 150px;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(245, 241, 232, 0.9);
    border: 1px solid rgba(28, 27, 31, 0.06);
}

.funcionarios-page-size .form-label[b-38qvj0m0vj] {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #6d7582;
}

.funcionarios-page-size .form-select[b-38qvj0m0vj] {
    border-radius: 12px;
    border-color: rgba(30, 66, 92, 0.12);
    min-height: 42px;
    font-weight: 600;
}

.funcionarios-table[b-38qvj0m0vj] {
    --bs-table-bg: transparent;
    margin-bottom: 0;
}

.funcionarios-table thead th[b-38qvj0m0vj] {
    padding: 0.9rem 0.6rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    color: #758092;
    border-bottom: 1px solid rgba(30, 66, 92, 0.09);
}

.funcionarios-table tbody td[b-38qvj0m0vj] {
    padding: 1rem 0.6rem;
    border-color: rgba(28, 27, 31, 0.06);
    vertical-align: middle;
}

.funcionarios-row[b-38qvj0m0vj] {
    transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.funcionarios-row:hover[b-38qvj0m0vj] {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 0 0 999px rgba(196, 169, 97, 0.05);
}

.funcionarios-index[b-38qvj0m0vj] {
    font-weight: 700;
    color: #78808d !important;
}

.funcionarios-name[b-38qvj0m0vj] {
    font-size: 1rem;
    letter-spacing: -0.01em;
    color: #162130;
}

.funcionarios-email[b-38qvj0m0vj],
.funcionarios-phone[b-38qvj0m0vj] {
    font-size: 0.97rem;
    color: #5c6472 !important;
}

.funcionarios-level-badge[b-38qvj0m0vj] {
    padding: 0.55rem 0.85rem;
    background: linear-gradient(180deg, rgba(30, 66, 92, 0.08), rgba(30, 66, 92, 0.04)) !important;
    color: #1c3850 !important;
    font-weight: 700;
    border: 1px solid rgba(30, 66, 92, 0.08);
}

.funcionarios-actions[b-38qvj0m0vj] {
    gap: 0.35rem;
    padding: 0.2rem;
    border-radius: 16px;
    background: rgba(248, 245, 239, 0.92);
    border: 1px solid rgba(28, 27, 31, 0.05);
}

.funcionarios-actions .btn[b-38qvj0m0vj] {
    border-radius: 12px !important;
    min-width: 38px;
    min-height: 38px;
}

.funcionarios-loading-state[b-38qvj0m0vj] {
    min-height: 300px;
    display: grid;
    place-items: center;
}

.funcionarios-page[b-38qvj0m0vj]  .alert {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(28, 27, 31, 0.06);
}

.funcionarios-page[b-38qvj0m0vj]  .empty-state {
    min-height: 320px;
    border-radius: 24px;
    border-style: solid;
    border-color: rgba(196, 169, 97, 0.18);
    background:
        radial-gradient(circle at top, rgba(196, 169, 97, 0.1), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(248, 245, 239, 0.9));
}

.funcionarios-page[b-38qvj0m0vj]  .empresa-pagination {
    margin-top: 1.4rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(28, 27, 31, 0.06);
}

.funcionarios-page[b-38qvj0m0vj]  .page-link {
    border-radius: 12px !important;
    border: 1px solid rgba(30, 66, 92, 0.1);
    color: #25445d;
    background: rgba(255, 255, 255, 0.86);
    font-weight: 600;
}

.funcionarios-page[b-38qvj0m0vj]  .page-item.active .page-link {
    background: linear-gradient(135deg, #c4a961 0%, #916027 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(145, 96, 39, 0.22);
}

@media (max-width: 992px) {
    .funcionarios-page[b-38qvj0m0vj]::before {
        inset: 0 0 auto;
        height: 220px;
        border-radius: 22px;
    }

    .funcionarios-page[b-38qvj0m0vj]  .admin-page-banner {
        padding: 1.15rem;
        border-radius: 22px;
    }

    .funcionarios-page[b-38qvj0m0vj]  .admin-page-header {
        align-items: start;
    }

    .funcionarios-page[b-38qvj0m0vj]  .admin-toolbar {
        width: 100%;
    }

    .funcionarios-toolbar-btn[b-38qvj0m0vj] {
        flex: 1 1 220px;
        justify-content: center;
    }

    .funcionarios-card-header[b-38qvj0m0vj],
    .funcionarios-card-body[b-38qvj0m0vj] {
        padding-inline: 1rem !important;
    }
}

@media (max-width: 768px) {
    .funcionarios-filters[b-38qvj0m0vj] {
        max-width: none;
    }

    .funcionarios-search .form-control[b-38qvj0m0vj] {
        min-height: 54px;
        font-size: 1rem;
    }

    .funcionarios-section-heading h5[b-38qvj0m0vj] {
        font-size: 1.35rem;
    }

    .funcionarios-actions[b-38qvj0m0vj] {
        flex-wrap: wrap;
        justify-content: end;
    }
}
/* /Components/Pages/Copsoq.razor.rz.scp.css */
.copsoq-page[b-ccxypanl70] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 0 56px;
    color: #0f172a;
}

.copsoq-hero[b-ccxypanl70] {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: stretch;
    padding: 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(45, 212, 191, 0.22), transparent 30%),
        radial-gradient(circle at bottom left, rgba(250, 204, 21, 0.18), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #111827 42%, #1f2937 100%);
    color: #f8fafc;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.hero-copy[b-ccxypanl70] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.hero-kicker[b-ccxypanl70] {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1[b-ccxypanl70] {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    font-weight: 800;
    max-width: 11ch;
}

.hero-copy p[b-ccxypanl70] {
    margin: 0;
    max-width: 62ch;
    font-size: 1.04rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.9);
}

.hero-panel[b-ccxypanl70] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.44);
    border: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(16px);
}

.filter-label[b-ccxypanl70] {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.78);
}

.version-select[b-ccxypanl70] {
    min-height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background-color: rgba(255, 255, 255, 0.96);
    font-weight: 600;
}

.version-note[b-ccxypanl70] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(226, 232, 240, 0.9);
}

.version-pill[b-ccxypanl70] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2dd4bf 0%, #22c55e 100%);
    color: #06281f;
    font-weight: 800;
}

.groups-grid[b-ccxypanl70] {
    display: grid;
    gap: 20px;
    margin-top: 22px;
}

.group-card[b-ccxypanl70] {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.group-header[b-ccxypanl70] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.group-badge[b-ccxypanl70] {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f172a 0%, #14b8a6 100%);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.group-heading h2[b-ccxypanl70] {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    line-height: 1.2;
    color: #0f172a;
}

.group-heading p[b-ccxypanl70] {
    margin: 6px 0 0;
    color: #64748b;
}

.question-list[b-ccxypanl70] {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.question-text[b-ccxypanl70] {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
    color: #111827;
}

.loading-state[b-ccxypanl70],
.empty-state[b-ccxypanl70] {
    margin-top: 22px;
    padding: 32px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.92);
    color: #f8fafc;
    text-align: center;
}

.loading-state[b-ccxypanl70] {
    display: grid;
    justify-items: center;
    gap: 14px;
}

.empty-state[b-ccxypanl70] {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.empty-state code[b-ccxypanl70] {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 6px;
}

@media (max-width: 992px) {
    .copsoq-hero[b-ccxypanl70] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .copsoq-page[b-ccxypanl70] {
        padding-top: 20px;
    }

    .copsoq-hero[b-ccxypanl70],
    .group-card[b-ccxypanl70] {
        border-radius: 20px;
    }

    .copsoq-hero[b-ccxypanl70] {
        padding: 22px;
    }

    .hero-panel[b-ccxypanl70] {
        padding: 18px;
    }

    .group-header[b-ccxypanl70] {
        gap: 12px;
    }

    .group-badge[b-ccxypanl70] {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-container[b-lco7drv9v9] {
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section[b-lco7drv9v9] {
    background: linear-gradient(135deg, #F0E495 0%, #916027 100%);
    color: #1C1B1F;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section[b-lco7drv9v9]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content[b-lco7drv9v9] {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title[b-lco7drv9v9] {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    color: #1C1B1F;
}

.hero-subtitle[b-lco7drv9v9] {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #1E425C;
}

.hero-buttons[b-lco7drv9v9] {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn[b-lco7drv9v9] {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary[b-lco7drv9v9] {
    background: #1E425C;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover[b-lco7drv9v9] {
    background: #1C1B1F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary[b-lco7drv9v9] {
    background: transparent;
    color: #1E425C;
    border: 2px solid #1E425C;
}

.btn-secondary:hover[b-lco7drv9v9] {
    background: #1E425C;
    color: white;
    transform: translateY(-2px);
}

.btn-large[b-lco7drv9v9] {
    padding: 20px 50px;
    font-size: 1.2rem;
}

/* Section Containers */
.section-container[b-lco7drv9v9] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title[b-lco7drv9v9] {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2d3748;
}

.section-intro[b-lco7drv9v9] {
    font-size: 1.2rem;
    text-align: center;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Power Section */
.power-section[b-lco7drv9v9] {
    background: #f7fafc;
}

.benefits-grid[b-lco7drv9v9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card[b-lco7drv9v9] {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover[b-lco7drv9v9] {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.benefit-icon[b-lco7drv9v9] {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h3[b-lco7drv9v9] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.benefit-card p[b-lco7drv9v9] {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Core10 Highlight */
.core10-highlight[b-lco7drv9v9] {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(240, 228, 149, 0.2) 0%, rgba(145, 96, 39, 0.15) 100%);
    border-radius: 16px;
    border-left: 5px solid #916027;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.core10-highlight p[b-lco7drv9v9] {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #2d3748;
    margin: 0;
    text-align: center;
}

.core10-highlight strong[b-lco7drv9v9] {
    color: #1E425C;
    font-weight: 600;
}

/* How It Works Section */
.how-it-works-section[b-lco7drv9v9] {
    background: white;
}

.steps-container[b-lco7drv9v9] {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step[b-lco7drv9v9] {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: #f7fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.step:hover[b-lco7drv9v9] {
    background: #edf2f7;
    transform: translateX(10px);
}

.step-number[b-lco7drv9v9] {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F0E495 0%, #916027 100%);
    color: #1C1B1F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(196, 169, 97, 0.4);
}

.step-content h3[b-lco7drv9v9] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
}

.step-content p[b-lco7drv9v9] {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Target Audience Section */
.target-audience-section[b-lco7drv9v9] {
    background: linear-gradient(135deg, #1E425C 0%, #1C1B1F 100%);
    color: white;
}

.target-audience-section .section-title[b-lco7drv9v9] {
    color: white;
}

.audience-grid[b-lco7drv9v9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audience-card[b-lco7drv9v9] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.audience-card:hover[b-lco7drv9v9] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.audience-icon[b-lco7drv9v9] {
    font-size: 3rem;
    margin-bottom: 20px;
}

.audience-card h3[b-lco7drv9v9] {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.audience-card p[b-lco7drv9v9] {
    opacity: 0.95;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section[b-lco7drv9v9] {
    background: white;
}

.testimonials-grid[b-lco7drv9v9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card[b-lco7drv9v9] {
    background: #f7fafc;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover[b-lco7drv9v9] {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial-stars[b-lco7drv9v9] {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #f59e0b;
}

.testimonial-text[b-lco7drv9v9] {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author[b-lco7drv9v9] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.testimonial-author strong[b-lco7drv9v9] {
    color: #2d3748;
    font-size: 1.1rem;
}

.testimonial-author span[b-lco7drv9v9] {
    color: #718096;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section[b-lco7drv9v9] {
    background: linear-gradient(135deg, #F0E495 0%, #916027 100%);
    color: #1C1B1F;
    padding: 100px 20px;
    text-align: center;
}

.cta-content h2[b-lco7drv9v9] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1C1B1F;
}

.cta-content p[b-lco7drv9v9] {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #1E425C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title[b-lco7drv9v9] {
        font-size: 2.5rem;
    }

    .hero-subtitle[b-lco7drv9v9] {
        font-size: 1.2rem;
    }

    .section-title[b-lco7drv9v9] {
        font-size: 2rem;
    }

    .section-intro[b-lco7drv9v9] {
        font-size: 1.1rem;
    }

    .hero-buttons[b-lco7drv9v9] {
        flex-direction: column;
        gap: 15px;
    }

    .btn[b-lco7drv9v9] {
        width: 100%;
        max-width: 300px;
    }

    .benefits-grid[b-lco7drv9v9],
    .audience-grid[b-lco7drv9v9],
    .testimonials-grid[b-lco7drv9v9] {
        grid-template-columns: 1fr;
    }

    .step[b-lco7drv9v9] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step:hover[b-lco7drv9v9] {
        transform: translateY(-5px);
    }

    .cta-content h2[b-lco7drv9v9] {
        font-size: 2rem;
    }

    .cta-content p[b-lco7drv9v9] {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section[b-lco7drv9v9] {
        padding: 80px 15px;
    }

    .hero-title[b-lco7drv9v9] {
        font-size: 2rem;
    }

    .hero-subtitle[b-lco7drv9v9] {
        font-size: 1.1rem;
    }

    .section-container[b-lco7drv9v9] {
        padding: 60px 15px;
    }
}

/* /Components/Pages/Pesquisa.razor.rz.scp.css */
/* Survey Container */
.survey-container[b-z2dplcq05u] {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
}

/* Survey Header */
.survey-header[b-z2dplcq05u] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.survey-title[b-z2dplcq05u] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C1B1F;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.survey-subtitle[b-z2dplcq05u] {
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Group Indicator */
.group-indicator[b-z2dplcq05u] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.group-badge[b-z2dplcq05u] {
    display: inline-block;
    background: linear-gradient(135deg, #1E425C 0%, #1C1B1F 100%);
    color: white;
    padding: 0.4rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.group-name[b-z2dplcq05u] {
    font-size: 0.875rem;
    color: #916027;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Progress Bar */
.progress-container[b-z2dplcq05u] {
    max-width: 600px;
    margin: 0 auto;
}

.progress-bar[b-z2dplcq05u] {
    width: 100%;
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.375rem;
}

.progress-fill[b-z2dplcq05u] {
    height: 100%;
    background: linear-gradient(90deg, #C4A961 0%, #916027 100%);
    transition: width 0.3s ease;
    border-radius: 999px;
}

.progress-text[b-z2dplcq05u] {
    font-size: 0.8rem;
    color: #a0aec0;
    text-align: center;
}

/* Loading */
.loading-container[b-z2dplcq05u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    color: #718096;
}

.spinner[b-z2dplcq05u] {
    width: 48px;
    height: 48px;
    border: 4px solid #e2e8f0;
    border-top-color: #C4A961;
    border-radius: 50%;
    animation: spin-b-z2dplcq05u 0.8s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-z2dplcq05u {
    to { transform: rotate(360deg); }
}

/* Question Card */
.questions-container[b-z2dplcq05u] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.question-card[b-z2dplcq05u] {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.question-card:hover[b-z2dplcq05u] {
    border-color: #DCCDA2;
    box-shadow: 0 4px 6px -1px rgba(196, 169, 97, 0.1), 0 2px 4px -1px rgba(196, 169, 97, 0.06);
}

.question-card.answered[b-z2dplcq05u] {
    border-color: #C4A961;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.question-header[b-z2dplcq05u] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.question-number[b-z2dplcq05u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1E425C 0%, #1C1B1F 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.question-text[b-z2dplcq05u] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1C1B1F;
    line-height: 1.6;
    margin: 0;
}

.question-category[b-z2dplcq05u] {
    display: inline-block;
    background-color: #edf2f7;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Answer Options */
.answers-grid[b-z2dplcq05u] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.answer-option[b-z2dplcq05u] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
    width: 100%;
    text-align: left;
}

.answer-option:hover[b-z2dplcq05u] {
    background: #DCCDA2;
    border-color: #C4A961;
    transform: translateX(4px);
}

.answer-option.selected[b-z2dplcq05u] {
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    border-color: #C4A961;
    color: white;
    transform: translateX(4px);
}

.answer-radio[b-z2dplcq05u] {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.answer-radio-dot[b-z2dplcq05u] {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.answer-text[b-z2dplcq05u] {
    flex: 1;
}

/* Submit Container */
.submit-container[b-z2dplcq05u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

/* Navigation Container */
.navigation-container[b-z2dplcq05u] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
    flex-wrap: wrap;
}

.btn-nav[b-z2dplcq05u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: white;
    color: #1E425C;
    border: 2px solid #1E425C;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-nav:hover:not(:disabled)[b-z2dplcq05u] {
    background: linear-gradient(135deg, #1E425C 0%, #1C1B1F 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(30, 66, 92, 0.3);
}

.btn-nav:disabled[b-z2dplcq05u] {
    opacity: 0.3;
    cursor: not-allowed;
}

.btn-next[b-z2dplcq05u] {
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(196, 169, 97, 0.4);
}

.nav-hint[b-z2dplcq05u] {
    font-size: 0.875rem;
    color: #a0aec0;
    text-align: center;
    width: 100%;
}

.btn-submit[b-z2dplcq05u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(196, 169, 97, 0.4);
}

.btn-submit:hover:not(:disabled)[b-z2dplcq05u] {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(196, 169, 97, 0.5);
}

.btn-submit:disabled[b-z2dplcq05u] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-spinner[b-z2dplcq05u] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-z2dplcq05u 0.6s linear infinite;
}

.submit-hint[b-z2dplcq05u] {
    font-size: 0.875rem;
    color: #a0aec0;
    text-align: center;
}

/* Result Container */
.result-container[b-z2dplcq05u] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.result-card[b-z2dplcq05u] {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 500px;
    width: 100%;
}

.result-icon[b-z2dplcq05u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    color: white;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.result-title[b-z2dplcq05u] {
    font-size: 2rem;
    font-weight: 700;
    color: #1C1B1F;
    margin-bottom: 0.75rem;
}

.result-subtitle[b-z2dplcq05u] {
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.result-score[b-z2dplcq05u] {
    margin-bottom: 1.5rem;
}

.score-value[b-z2dplcq05u] {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.score-label[b-z2dplcq05u] {
    font-size: 1rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-classification[b-z2dplcq05u] {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Analysis Info Section */
.analysis-info[b-z2dplcq05u] {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #e2e8f0;
}

.analysis-icon[b-z2dplcq05u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.analysis-title[b-z2dplcq05u] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1C1B1F;
    margin-bottom: 1rem;
}

.analysis-description[b-z2dplcq05u] {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Email Notification Section */
.email-notification[b-z2dplcq05u] {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.email-icon[b-z2dplcq05u] {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2);
}

.email-content[b-z2dplcq05u] {
    flex: 1;
    text-align: left;
}

.email-title[b-z2dplcq05u] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.email-text[b-z2dplcq05u] {
    font-size: 0.95rem;
    color: #047857;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    word-break: break-word;
}

.email-text strong[b-z2dplcq05u] {
    font-weight: 700;
    color: #064e3b;
    word-break: break-all;
}

.email-deadline[b-z2dplcq05u] {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin: 0;
}

/* Result Actions */
.result-actions[b-z2dplcq05u] {
    margin-top: 1.5rem;
}

.btn-primary[b-z2dplcq05u] {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover[b-z2dplcq05u] {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(196, 169, 97, 0.5);
}

.btn-large[b-z2dplcq05u] {
    font-size: 1.125rem;
    padding: 1.125rem 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .survey-container[b-z2dplcq05u] {
        padding: 1rem 0.5rem;
    }

    .survey-title[b-z2dplcq05u] {
        font-size: 1.75rem;
    }

    .question-card[b-z2dplcq05u] {
        padding: 1.5rem;
    }

    .question-text[b-z2dplcq05u] {
        font-size: 1rem;
    }

    .answer-option[b-z2dplcq05u] {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .result-container[b-z2dplcq05u] {
        padding: 1rem;
        min-height: auto;
    }

    .result-card[b-z2dplcq05u] {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .result-icon[b-z2dplcq05u] {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }

    .result-icon svg[b-z2dplcq05u] {
        width: 48px;
        height: 48px;
    }

    .result-title[b-z2dplcq05u] {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .result-subtitle[b-z2dplcq05u] {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .analysis-info[b-z2dplcq05u] {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .analysis-icon svg[b-z2dplcq05u] {
        width: 36px;
        height: 36px;
    }

    .analysis-title[b-z2dplcq05u] {
        font-size: 1.25rem;
    }

    .analysis-description[b-z2dplcq05u] {
        font-size: 0.9rem;
    }

    .email-notification[b-z2dplcq05u] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .email-content[b-z2dplcq05u] {
        text-align: center;
    }

    .email-title[b-z2dplcq05u] {
        font-size: 1.125rem;
    }

    .email-text[b-z2dplcq05u] {
        font-size: 0.875rem;
    }

    .email-deadline[b-z2dplcq05u] {
        justify-content: center;
        font-size: 0.85rem;
    }

    .btn-large[b-z2dplcq05u] {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        width: 100%;
    }

    .btn-large svg[b-z2dplcq05u] {
        width: 18px;
        height: 18px;
    }

    .score-value[b-z2dplcq05u] {
        font-size: 3rem;
    }
    
    .identification-card[b-z2dplcq05u] {
        padding: 2rem 1.5rem;
    }
    
    .patient-header[b-z2dplcq05u] {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .result-card[b-z2dplcq05u] {
        padding: 1.5rem 1rem;
    }

    .result-title[b-z2dplcq05u] {
        font-size: 1.25rem;
    }

    .result-subtitle[b-z2dplcq05u] {
        font-size: 0.9rem;
    }

    .analysis-info[b-z2dplcq05u] {
        padding: 1.25rem;
    }

    .analysis-title[b-z2dplcq05u] {
        font-size: 1.125rem;
    }

    .email-notification[b-z2dplcq05u] {
        padding: 1.25rem;
    }

    .email-icon[b-z2dplcq05u] {
        width: 48px;
        height: 48px;
    }

    .email-icon svg[b-z2dplcq05u] {
        width: 24px;
        height: 24px;
    }
}

/* Identification Container */
.identification-container[b-z2dplcq05u] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.identification-card[b-z2dplcq05u] {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 600px;
    width: 100%;
}

.identification-title[b-z2dplcq05u] {
    font-size: 2rem;
    font-weight: 700;
    color: #1C1B1F;
    margin-bottom: 0.5rem;
    text-align: center;
}

.identification-subtitle[b-z2dplcq05u] {
    font-size: 1rem;
    color: #718096;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group[b-z2dplcq05u] {
    margin-bottom: 1.5rem;
}

.form-group label[b-z2dplcq05u] {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1C1B1F;
    margin-bottom: 0.5rem;
}

.form-control[b-z2dplcq05u] {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-control:focus[b-z2dplcq05u] {
    outline: none;
    border-color: #C4A961;
    box-shadow: 0 0 0 3px rgba(196, 169, 97, 0.1);
}

.alert[b-z2dplcq05u] {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.alert-danger[b-z2dplcq05u] {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.btn-start-survey[b-z2dplcq05u] {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.btn-start-survey:disabled[b-z2dplcq05u] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Patient Header */
.patient-header[b-z2dplcq05u] {
    background: linear-gradient(135deg, #1E425C 0%, #1C1B1F 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.patient-info[b-z2dplcq05u] {
    font-size: 0.95rem;
}

.patient-info strong[b-z2dplcq05u] {
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Privacy Notice */
.privacy-notice[b-z2dplcq05u] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.privacy-notice-title[b-z2dplcq05u] {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-notice-text[b-z2dplcq05u] {
    font-size: 0.875rem;
    color: #1e40af;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

.privacy-link[b-z2dplcq05u] {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.privacy-link:hover[b-z2dplcq05u] {
    color: #1d4ed8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-notice[b-z2dplcq05u] {
        padding: 1.25rem;
    }

    .privacy-notice-title[b-z2dplcq05u] {
        font-size: 0.95rem;
    }

    .privacy-notice-text[b-z2dplcq05u] {
        font-size: 0.8rem;
    }

    .privacy-link[b-z2dplcq05u] {
        font-size: 0.8rem;
    }
}

/* /Components/Pages/PesquisaCopSoq.razor.rz.scp.css */
.copsoq-survey-page[b-18v7iv4gjs] {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 16px 56px;
    color: #0f172a;
}

.copsoq-survey-hero[b-18v7iv4gjs] {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(45, 212, 191, 0.22), transparent 28%),
        radial-gradient(circle at bottom left, rgba(250, 204, 21, 0.18), transparent 32%),
        linear-gradient(135deg, #0f172a 0%, #111827 42%, #1f2937 100%);
    color: #f8fafc;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.hero-copy[b-18v7iv4gjs] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.hero-kicker[b-18v7iv4gjs] {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1[b-18v7iv4gjs] {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    font-weight: 800;
}

.hero-copy p[b-18v7iv4gjs] {
    margin: 0;
    max-width: 62ch;
    font-size: 1.04rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.9);
}

.hero-panel[b-18v7iv4gjs] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.44);
    border: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(16px);
}

.filter-label[b-18v7iv4gjs] {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.78);
}

.version-select[b-18v7iv4gjs] {
    min-height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background-color: rgba(255, 255, 255, 0.96);
    font-weight: 600;
}

.version-note[b-18v7iv4gjs] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(226, 232, 240, 0.9);
}

.locked-version[b-18v7iv4gjs] {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.14);
    color: #f8fafc;
    font-size: 1.05rem;
    font-weight: 700;
}

.version-pill[b-18v7iv4gjs] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2dd4bf 0%, #22c55e 100%);
    color: #06281f;
    font-weight: 800;
}

.survey-shell[b-18v7iv4gjs] {
    max-width: 920px;
    margin: 0 auto;
    padding: 6px 0 0;
}

.survey-header[b-18v7iv4gjs] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.group-indicator[b-18v7iv4gjs] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.group-badge[b-18v7iv4gjs] {
    display: inline-block;
    background: linear-gradient(135deg, #1e425c 0%, #1c1b1f 100%);
    color: white;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.group-name[b-18v7iv4gjs] {
    font-size: 0.9rem;
    color: #916027;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.progress-container[b-18v7iv4gjs] {
    max-width: 620px;
    margin: 0 auto;
}

.progress-bar[b-18v7iv4gjs] {
    width: 100%;
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.375rem;
}

.progress-fill[b-18v7iv4gjs] {
    height: 100%;
    background: linear-gradient(90deg, #c4a961 0%, #916027 100%);
    transition: width 0.3s ease;
}

.progress-text[b-18v7iv4gjs] {
    font-size: 0.82rem;
    color: #94a3b8;
    text-align: center;
}

.loading-container[b-18v7iv4gjs],
.empty-state[b-18v7iv4gjs] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    color: #64748b;
    text-align: center;
}

.spinner[b-18v7iv4gjs] {
    width: 48px;
    height: 48px;
    border: 4px solid #e2e8f0;
    border-top-color: #c4a961;
    border-radius: 50%;
    animation: spin-b-18v7iv4gjs 0.8s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-18v7iv4gjs {
    to {
        transform: rotate(360deg);
    }
}

.questions-container[b-18v7iv4gjs] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.question-card[b-18v7iv4gjs] {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.35rem;
    transition: all 0.25s ease;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.question-card:hover[b-18v7iv4gjs] {
    border-color: #dccda2;
    box-shadow: 0 16px 38px rgba(196, 169, 97, 0.12);
}

.question-card.answered[b-18v7iv4gjs] {
    border-color: #c4a961;
    background: linear-gradient(135deg, #ffffff 0%, #fcfaf5 100%);
}

.question-meta[b-18v7iv4gjs] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}

.question-headline[b-18v7iv4gjs] {
    display: inline-flex;
    align-items: center;
    max-width: min(680px, 100%);
    padding: 0.48rem 0.95rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #0f172a;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}

.question-position[b-18v7iv4gjs] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.question-header[b-18v7iv4gjs] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.question-number[b-18v7iv4gjs] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1e425c 0%, #1c1b1f 100%);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.question-text[b-18v7iv4gjs] {
    font-size: 1.08rem;
    font-weight: 600;
    color: #1c1b1f;
    line-height: 1.6;
    margin: 0;
}

.answers-grid[b-18v7iv4gjs] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.answer-option[b-18v7iv4gjs] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.94rem;
    color: #475569;
    font-weight: 600;
    width: 100%;
    text-align: left;
}

.answer-option:hover[b-18v7iv4gjs] {
    background: #dccda2;
    border-color: #c4a961;
    transform: translateX(4px);
}

.answer-option.selected[b-18v7iv4gjs] {
    background: linear-gradient(135deg, #c4a961 0%, #916027 100%);
    border-color: #c4a961;
    color: white;
    transform: translateX(4px);
}

.answer-radio[b-18v7iv4gjs] {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.answer-radio-dot[b-18v7iv4gjs] {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.answer-text[b-18v7iv4gjs] {
    flex: 1;
}

.navigation-container[b-18v7iv4gjs] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
}

.btn-nav[b-18v7iv4gjs] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: white;
    color: #1e425c;
    border: 2px solid #1e425c;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-nav:hover:not(:disabled)[b-18v7iv4gjs] {
    background: linear-gradient(135deg, #1e425c 0%, #1c1b1f 100%);
    color: white;
    transform: translateY(-2px);
}

.btn-nav:disabled[b-18v7iv4gjs],
.btn-submit:disabled[b-18v7iv4gjs] {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-next[b-18v7iv4gjs],
.btn-submit[b-18v7iv4gjs],
.btn-primary[b-18v7iv4gjs] {
    background: linear-gradient(135deg, #c4a961 0%, #916027 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(196, 169, 97, 0.24);
}

.btn-submit[b-18v7iv4gjs],
.btn-primary[b-18v7iv4gjs] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.8rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-submit:hover:not(:disabled)[b-18v7iv4gjs],
.btn-primary:hover[b-18v7iv4gjs] {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(196, 169, 97, 0.3);
}

.btn-large[b-18v7iv4gjs] {
    font-size: 1.08rem;
    padding: 1rem 2.4rem;
}

.nav-hint[b-18v7iv4gjs] {
    width: 100%;
    text-align: center;
    font-size: 0.88rem;
    color: #94a3b8;
}

.result-container[b-18v7iv4gjs] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48vh;
}

.result-card[b-18v7iv4gjs] {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 520px;
    width: 100%;
}

.result-icon[b-18v7iv4gjs] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, #c4a961 0%, #916027 100%);
    border-radius: 50%;
    margin-bottom: 1.75rem;
}

.result-title[b-18v7iv4gjs] {
    font-size: 2rem;
    font-weight: 700;
    color: #1c1b1f;
    margin-bottom: 0.7rem;
}

.result-subtitle[b-18v7iv4gjs] {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.empty-state code[b-18v7iv4gjs] {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 6px;
}

@media (max-width: 992px) {
    .copsoq-survey-hero[b-18v7iv4gjs] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .copsoq-survey-page[b-18v7iv4gjs] {
        padding: 16px 12px 40px;
    }

    .copsoq-survey-hero[b-18v7iv4gjs] {
        padding: 22px;
        border-radius: 22px;
    }

    .hero-panel[b-18v7iv4gjs],
    .question-card[b-18v7iv4gjs],
    .result-card[b-18v7iv4gjs] {
        border-radius: 18px;
    }

    .question-text[b-18v7iv4gjs] {
        font-size: 1rem;
    }

    .answer-option[b-18v7iv4gjs] {
        padding: 0.9rem 1rem;
        font-size: 0.88rem;
    }

    .result-card[b-18v7iv4gjs] {
        padding: 2rem 1.5rem;
    }
}
/* /Components/Pages/PoliticaPrivacidade.razor.rz.scp.css */
/* Privacy Policy Container */
.privacy-policy-container[b-lsyktxtzgr] {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
    min-height: 100vh;
}

.privacy-policy-content[b-lsyktxtzgr] {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-title[b-lsyktxtzgr] {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.3;
}

.last-updated[b-lsyktxtzgr] {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 24px;
    font-style: italic;
}

.policy-intro[b-lsyktxtzgr] {
    background: #f7fafc;
    border-left: 4px solid #3b82f6;
    padding: 20px;
    margin-bottom: 32px;
    border-radius: 4px;
}

.policy-intro p[b-lsyktxtzgr] {
    margin: 0;
    color: #2d3748;
    line-height: 1.6;
}

.policy-section[b-lsyktxtzgr] {
    margin-bottom: 32px;
}

.policy-section h2[b-lsyktxtzgr] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.policy-section p[b-lsyktxtzgr] {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-section ul[b-lsyktxtzgr] {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-section li[b-lsyktxtzgr] {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
}

.policy-section strong[b-lsyktxtzgr] {
    color: #2d3748;
    font-weight: 600;
}

.policy-section a[b-lsyktxtzgr] {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover[b-lsyktxtzgr] {
    text-decoration: underline;
}

.back-to-survey[b-lsyktxtzgr] {
    margin-top: 40px;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.btn-back[b-lsyktxtzgr] {
    display: inline-block;
    padding: 12px 32px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-back:hover[b-lsyktxtzgr] {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-policy-content[b-lsyktxtzgr] {
        padding: 24px;
    }

    .privacy-title[b-lsyktxtzgr] {
        font-size: 1.5rem;
    }

    .policy-section h2[b-lsyktxtzgr] {
        font-size: 1.25rem;
    }
}

/* /Components/Pages/RespostaDetalhes.razor.rz.scp.css */
/* ===== Cabeçalho da Página ===== */
.page-header[b-d70tdrntcy] {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #1E425C;
}

.page-header h2[b-d70tdrntcy] {
    color: #1E425C;
}

/* ===== Headers de Seção ===== */
.section-header h4[b-d70tdrntcy] {
    color: #1E425C;
    border-bottom: 2px solid #C4A961;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.section-header p[b-d70tdrntcy] {
    font-size: 0.95rem;
}

/* ===== Cards de Informação ===== */
.info-section .card[b-d70tdrntcy] {
    border: none;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.info-section .card:hover[b-d70tdrntcy] {
    transform: translateY(-2px);
}

.info-item[b-d70tdrntcy] {
    padding: 0.5rem;
    border-left: 3px solid #C4A961;
    padding-left: 0.75rem;
}

.info-item small[b-d70tdrntcy] {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Card de Resultado ===== */
.result-card[b-d70tdrntcy] {
    background: linear-gradient(135deg, #1E425C 0%, #2a5470 100%);
    color: white;
    border: none;
    border-radius: 12px;
}

.result-card .card-title[b-d70tdrntcy] {
    color: white;
}

.result-card .display-4[b-d70tdrntcy] {
    color: #C4A961;
}

.result-card .text-muted[b-d70tdrntcy] {
    color: rgba(255, 255, 255, 0.8) !important;
}

.classification-badge-large[b-d70tdrntcy] {
    background-color: #C4A961;
    color: #1C1B1F;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
}

/* ===== Cards de Competências ===== */
.competency-card[b-d70tdrntcy] {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
}

.competency-card:hover[b-d70tdrntcy] {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 66, 92, 0.15) !important;
}

.competency-card-title[b-d70tdrntcy] {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1E425C;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.donut-chart-wrapper[b-d70tdrntcy] {
    max-width: 140px;
    margin: 0 auto;
}

.donut-chart[b-d70tdrntcy] {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.donut-segment[b-d70tdrntcy] {
    transition: stroke-dashoffset 1s ease-in-out;
}

.badge-classification[b-d70tdrntcy] {
    background: linear-gradient(135deg, #C4A961 0%, #916027 100%);
    color: white;
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

/* ===== Sub-Modalidades ===== */
.sub-modalities-section .card[b-d70tdrntcy] {
    border: none;
    border-radius: 12px;
}

.sub-modality-card[b-d70tdrntcy] {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
}

.sub-modality-card:hover[b-d70tdrntcy] {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(196, 169, 97, 0.15) !important;
}

.sub-modality-title[b-d70tdrntcy] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1E425C;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.circular-chart-wrapper[b-d70tdrntcy] {
    max-width: 140px;
    margin: 0 auto;
}

.circular-chart[b-d70tdrntcy] {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.circular-segment[b-d70tdrntcy] {
    transition: stroke-dashoffset 1s ease-in-out;
}

.badge-modality-baixo[b-d70tdrntcy] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.badge-modality-médio[b-d70tdrntcy] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.badge-modality-alto[b-d70tdrntcy] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

/* ===== Gráfico Radar ===== */
.radar-section .card[b-d70tdrntcy] {
    border: none;
    border-radius: 12px;
}

.radar-chart-container[b-d70tdrntcy] {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.radar-svg[b-d70tdrntcy] {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}

/* ===== Legenda ===== */
.legend-section .card[b-d70tdrntcy] {
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.legend-item[b-d70tdrntcy] {
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.legend-item:hover[b-d70tdrntcy] {
    background-color: rgba(30, 66, 92, 0.05);
}

.legend-text[b-d70tdrntcy] {
    font-size: 0.9rem;
    font-weight: 500;
}

.legend-item .badge[b-d70tdrntcy] {
    min-width: 50px;
    text-align: center;
    font-weight: 600;
}

/* ===== Accordion de Detalhes ===== */
.details-section .card[b-d70tdrntcy] {
    border: none;
    border-radius: 12px;
}

.accordion-flush .accordion-item[b-d70tdrntcy] {
    border-radius: 8px !important;
    margin-bottom: 0.5rem;
    border: 1px solid #e2e8f0 !important;
}

.accordion-flush .accordion-button[b-d70tdrntcy] {
    border-radius: 8px !important;
    background-color: #f8f9fa;
    font-weight: 500;
    padding: 1rem 1.25rem;
}

.accordion-flush .accordion-button:not(.collapsed)[b-d70tdrntcy] {
    background: linear-gradient(135deg, #1E425C 0%, #2a5470 100%);
    color: white;
}

.accordion-flush .accordion-button:not(.collapsed) .badge[b-d70tdrntcy] {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.accordion-flush .accordion-button:focus[b-d70tdrntcy] {
    box-shadow: none;
    border-color: #C4A961;
}

.accordion-body[b-d70tdrntcy] {
    padding: 1.25rem;
    background-color: #fafbfc;
}

.progress[b-d70tdrntcy] {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-bar[b-d70tdrntcy] {
    font-weight: 600;
    transition: width 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Cores do Tema ===== */
.theme-header[b-d70tdrntcy] {
    background: linear-gradient(135deg, #1E425C 0%, #1C1B1F 100%);
    color: white;
}

.theme-badge[b-d70tdrntcy] {
    background-color: #1E425C;
    color: white;
}

.classification-badge[b-d70tdrntcy] {
    background-color: #C4A961;
    color: #1C1B1F;
}

/* ===== Print Styles ===== */
.print-only[b-d70tdrntcy] {
    display: none;
}

/* ===== Banner Section ===== */
.banner-section[b-d70tdrntcy] {
    margin: 1rem 0;
    overflow: hidden;
}

.banner-section img[b-d70tdrntcy] {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media print {
    /* Hide elements that shouldn't be printed */
    .no-print[b-d70tdrntcy] {
        display: none !important;
    }
    
    /* Show print-only elements */
    .print-only[b-d70tdrntcy] {
        display: block !important;
    }
    
    /* Garantir que o header de impressão mostre apenas o logo */
    .print-only h2[b-d70tdrntcy]::before {
        content: "" !important;
    }
    
    .print-only[b-d70tdrntcy]::before,
    .print-only[b-d70tdrntcy]::after {
        content: "" !important;
        display: none !important;
    }
    
    /* Remover qualquer texto "iHappy" que possa aparecer */
    *[b-d70tdrntcy]::before,
    *[b-d70tdrntcy]::after {
        content: none !important;
    }
    
    /* Compact page layout */
    @page {
        margin: 0.5cm;
        size: A4;
    }
    
    body[b-d70tdrntcy] {
        font-size: 10pt;
    }
    
    h4[b-d70tdrntcy], h5[b-d70tdrntcy], h6[b-d70tdrntcy] {
        font-size: 11pt !important;
    }
    
    .small[b-d70tdrntcy] {
        font-size: 9pt !important;
    }
    
    /* Compact containers */
    .container-fluid[b-d70tdrntcy] {
        padding: 0 !important;
    }
    
    .card[b-d70tdrntcy] {
        page-break-inside: avoid;
        break-inside: avoid;
        margin-bottom: 0.3cm !important;
        box-shadow: none !important;
        border: 1px solid #dee2e6 !important;
    }
    
    .section-header[b-d70tdrntcy] {
        margin-bottom: 0.2cm !important;
    }
    
    .section-header h4[b-d70tdrntcy] {
        font-size: 12pt !important;
    }
    
    .section-header p[b-d70tdrntcy] {
        display: none;
    }
    
    /* Info section compact */
    .info-section .card-body[b-d70tdrntcy] {
        padding: 0.3cm !important;
    }
    
    .result-card[b-d70tdrntcy] {
        background: white !important;
        border: 2px solid #1E425C !important;
    }
    
    .result-card *[b-d70tdrntcy] {
        color: #1C1B1F !important;
    }
    
    /* Sub-modalidades circulares - 6 por linha */
    .sub-modalities-section .row[b-d70tdrntcy] {
        display: flex;
        flex-wrap: wrap;
    }
    
    .sub-modality-card[b-d70tdrntcy] {
        width: 15% !important;
        max-width: 15% !important;
        float: left;
        margin: 0.2cm !important;
        page-break-inside: avoid;
    }
    
    .sub-modality-title[b-d70tdrntcy] {
        font-size: 6pt !important;
        min-height: 1rem !important;
    }
    
    .circular-chart-wrapper[b-d70tdrntcy] {
        max-width: 60px !important;
    }
    
    /* Gráficos circulares - 5 por linha para caber todos */
    .competencies-section .row[b-d70tdrntcy] {
        display: flex;
        flex-wrap: wrap;
    }
    
    .competency-card[b-d70tdrntcy] {
        width: 19% !important;
        max-width: 19% !important;
        float: left;
        margin: 0.2cm !important;
        page-break-inside: avoid;
    }
    
    .competency-card-title[b-d70tdrntcy] {
        font-size: 7pt !important;
        min-height: 1rem !important;
    }
    
    .donut-chart-wrapper[b-d70tdrntcy] {
        max-width: 70px !important;
    }
    
    .badge-classification[b-d70tdrntcy] {
        font-size: 6pt !important;
        padding: 0.2cm !important;
    }
    
    /* Radar chart compacto */
    .radar-chart-container[b-d70tdrntcy] {
        max-width: 500px;
        max-height: 500px;
        margin: 0 auto;
    }
    
    .radar-svg[b-d70tdrntcy] {
        max-height: 500px;
    }
    
    /* Banner na impressão */
    .banner-section[b-d70tdrntcy] {
        page-break-inside: avoid;
        margin: 0.5cm 0 !important;
    }
    
    .banner-section img[b-d70tdrntcy] {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    
    /* Legenda compacta */
    .legend-section .col-md-4[b-d70tdrntcy],
    .legend-section .col-sm-6[b-d70tdrntcy] {
        width: 33.333% !important;
        float: left;
        font-size: 8pt !important;
    }
    
    /* Accordion expandido */
    .accordion-collapse[b-d70tdrntcy] {
        display: block !important;
        height: auto !important;
    }
    
    .accordion-item[b-d70tdrntcy] {
        margin-bottom: 0.2cm !important;
        page-break-inside: avoid;
    }
    
    .accordion-button[b-d70tdrntcy] {
        background-color: #f8f9fa !important;
        color: #1C1B1F !important;
        padding: 0.2cm !important;
        font-size: 9pt !important;
    }
    
    .accordion-body[b-d70tdrntcy] {
        padding: 0.3cm !important;
        font-size: 9pt !important;
    }
    
    .progress[b-d70tdrntcy] {
        height: 15px !important;
        margin-bottom: 0.2cm !important;
    }
    
    /* Ensure background colors print */
    .badge[b-d70tdrntcy],
    .progress-bar[b-d70tdrntcy],
    .result-card[b-d70tdrntcy] {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    
    /* Limpar floats */
    .row[b-d70tdrntcy]::after {
        content: "";
        display: table;
        clear: both;
    }
}

.radar-chart-container[b-d70tdrntcy] {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
    background: #ffffff;
}

.radar-svg[b-d70tdrntcy] {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.05));
}

.card[b-d70tdrntcy] {
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: none;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.card-header[b-d70tdrntcy] {
    border-radius: 6px 6px 0 0 !important;
    padding: 0.5rem 1rem;
}

.accordion-button[b-d70tdrntcy] {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

.accordion-button:not(.collapsed)[b-d70tdrntcy] {
    background-color: #f8f9fa;
    color: #000;
}

.badge[b-d70tdrntcy] {
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
}

/* Modal de exclusão */
.modal.show[b-d70tdrntcy] {
    display: block;
    animation: fadeIn-b-d70tdrntcy 0.2s;
}

.modal-dialog[b-d70tdrntcy] {
    animation: slideDown-b-d70tdrntcy 0.3s;
}

@keyframes fadeIn-b-d70tdrntcy {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown-b-d70tdrntcy {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content[b-d70tdrntcy] {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-header.bg-danger[b-d70tdrntcy] {
    border-radius: 10px 10px 0 0;
}

@media (max-width: 768px) {
    .radar-chart-container[b-d70tdrntcy] {
        padding: 0.5rem;
    }
    
    .competency-item[b-d70tdrntcy] {
        margin-bottom: 0.5rem;
    }
    
    .progress[b-d70tdrntcy] {
        height: 20px !important;
    }
    
    .donut-chart-wrapper[b-d70tdrntcy] {
        max-width: 120px;
    }
    
    .competency-title[b-d70tdrntcy] {
        font-size: 0.7rem;
        min-height: 2.5rem;
    }
}

@media (min-width: 1400px) {
    .donut-chart-wrapper[b-d70tdrntcy] {
        max-width: 140px;
    }
}
/* /Components/Pages/Respostas.razor.rz.scp.css */
h1[b-e4yq7iyw1g] {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.card[b-e4yq7iyw1g] {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header[b-e4yq7iyw1g] {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
}

.table[b-e4yq7iyw1g] {
    margin-bottom: 0;
}

.table thead th[b-e4yq7iyw1g] {
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    padding: 1rem;
}

.table tbody td[b-e4yq7iyw1g] {
    padding: 1rem;
    vertical-align: middle;
}

.table tbody tr:hover[b-e4yq7iyw1g] {
    background-color: #f8f9fa;
}

.badge[b-e4yq7iyw1g] {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
}

.spinner-border[b-e4yq7iyw1g] {
    width: 3rem;
    height: 3rem;
}

.btn-primary[b-e4yq7iyw1g] {
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover[b-e4yq7iyw1g] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.alert-info[b-e4yq7iyw1g] {
    border-radius: 12px;
    border: none;
    background-color: #e7f3ff;
    color: #004085;
}

.alert-info .alert-heading[b-e4yq7iyw1g] {
    color: #004085;
    font-weight: 700;
}

tfoot[b-e4yq7iyw1g] {
    font-weight: 600;
}

tfoot td[b-e4yq7iyw1g] {
    padding: 1rem !important;
    background-color: #f8f9fa;
}

/* Estilos para busca */
.form-label[b-e4yq7iyw1g] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control:focus[b-e4yq7iyw1g] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Estilos para paginação */
.pagination[b-e4yq7iyw1g] {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.pagination .page-link[b-e4yq7iyw1g] {
    border-radius: 6px;
    margin: 0 3px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-link:hover[b-e4yq7iyw1g] {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pagination .page-item.active .page-link[b-e4yq7iyw1g] {
    background-color: #0d6efd;
    border-color: #0d6efd;
    font-weight: 700;
}

.pagination .page-item.disabled .page-link[b-e4yq7iyw1g] {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.form-select:focus[b-e4yq7iyw1g] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

