/* 
 * 👥 PERFIL PÚBLICO NETFLIX PREMIUM - CSS
 * Página de visualização de perfil de outro usuário
 * Gradient: #667eea → #764ba2
 */

.alert.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    color: #842029;
}

/* ============================================
   🎬 PUBLIC PROFILE HEADER
   ============================================ */
.public-profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem 0 1rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.public-profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: floating 8s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.03);
    }
}

.public-profile-content {
    position: relative;
    z-index: 1;
}

.header-wcoin-display {
    padding-right: 1rem;
}

.wcoin-header-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wcoin-header-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.wcoin-header-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.wcoin-header-info {
    display: flex;
    flex-direction: column;
}

.wcoin-header-value {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wcoin-header-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ============================================
   👤 PUBLIC PROFILE CARD
   ============================================ */
.public-profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    margin-top: -4rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.public-profile-card:hover {
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
    transform: translateY(-5px);
}

/* ============================================
   👤 PUBLIC AVATAR
   ============================================ */
.public-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.public-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    background: white;
}

.public-avatar-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* ============================================
   📝 PUBLIC PROFILE INFO
   ============================================ */
.public-username {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.public-username::before {
    content: '@';
    opacity: 0.6;
}


.public-member-since {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.public-member-since i {
    color: #667eea;
    margin-right: 0.5rem;
}

/* ============================================
   📊 PUBLIC STATS
   ============================================ */
.public-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 2px solid #f1f5f9;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 1.5rem;
}

.public-stat-item {
    text-align: center;
}

.public-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.25rem;
}

.public-stat-label {
    color: #718096;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ============================================
   🎯 PUBLIC ACTIONS
   ============================================ */
.public-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-follow-action {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-follow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-follow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-unfollow {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-unfollow:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    color: #667eea;
}


.btn-report {
    background: white;
    color: #ef4444;
    border: 2px solid #ef4444;
}

.btn-report:hover {
    background: #fef2f2;
    transform: translateY(-2px);
    color: #ef4444;
}

.btn-block-user {
    background: white;
    color: #f59e0b;
    border: 2px solid #f59e0b;
}

.btn-block-user:hover {
    background: #fffbeb;
    transform: translateY(-2px);
    color: #f59e0b;
}


/* ============================================
   📚 SIMULADOS SECTION
   ============================================ */
.simulados-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.simulados-section:hover {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}

.simulados-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 2px solid #e9ecef;
}

.simulados-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.simulados-title i {
    color: #667eea;
    font-size: 1.75rem;
}

.simulados-body {
    padding: 0;
}

/* ============================================
   📋 SIMULADO ITEM (PUBLIC)
   ============================================ */
.public-simulado-item {
    padding: 1.5rem;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.public-simulado-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.public-simulado-item:last-child {
    margin-bottom: 0;
}

.public-simulado-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
}

.public-simulado-item:hover::before {
    opacity: 1;
}


.public-simulado-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}


.public-simulado-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
}

.public-simulado-title a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.public-simulado-title a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.public-simulado-desc {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.public-simulado-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.public-simulado-meta .meta-questoes {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.public-simulado-meta .meta-data {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #718096;
    font-size: 0.85rem;
}

.public-simulado-meta .meta-categoria {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    color: #475569;
    font-size: 0.85rem;
}

.public-simulado-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.25rem;
}

.public-simulado-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.public-simulado-stats .stat-likes {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #e53e3e;
    font-size: 0.85rem;
}

.public-simulado-stats .stat-users {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #38a169;
    font-size: 0.85rem;
}

.btn-iniciar-simulado {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-iniciar-simulado:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/* ============================================
   📭 EMPTY STATE (PUBLIC)
   ============================================ */
.public-empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.public-empty-icon {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.public-empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.public-empty-text {
    color: #718096;
}

/* ============================================
   🚨 MODAL DENÚNCIA
   ============================================ */
.modal-denuncia .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-denuncia .modal-header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-denuncia .modal-title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-denuncia .modal-title i {
    font-size: 1.5rem;
}

.modal-denuncia .btn-close {
    filter: brightness(0) invert(1);
}

.modal-denuncia .modal-body {
    padding: 2rem;
}

.modal-denuncia .form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.modal-denuncia .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.modal-denuncia .form-control:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.modal-denuncia .alert-warning {
    border-radius: 8px;
    border: none;
    background: #fef3c7;
    color: #92400e;
    padding: 1rem;
}

.modal-denuncia .modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid #f1f5f9;
}

.btn-submit-report {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit-report:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    color: white;
}

.modal-denuncia .alert-info {
    border-radius: 8px;
    border: none;
    background: #dbeafe;
    color: #1e40af;
    padding: 1rem;
}

.modal-denuncia .alert-info ul {
    padding-left: 1.25rem;
}

.modal-denuncia .alert-info li {
    margin-bottom: 0.25rem;
}

.modal-denuncia .alert-success {
    border-radius: 8px;
    border: none;
    background: #d1fae5;
    color: #065f46;
    padding: 1rem;
}

.modal-denuncia .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.modal-denuncia .form-select:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ============================================
   📱 RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .public-profile-header {
        padding: 2rem 0 1.5rem;
    }

    .public-profile-card {
        margin-top: -3rem;
    }

    .public-avatar {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .public-username {
        font-size: 1.75rem;
    }

    .public-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .public-stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }

    .public-stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .public-stat-label {
        font-size: 0.9rem;
    }

    .public-simulado-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-view-simulado {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .public-profile-header {
        padding: 1.5rem 0 1rem;
    }

    .public-profile-card {
        padding: 1.5rem;
        margin-top: -2rem;
        border-radius: 16px;
    }

    .public-username {
        font-size: 1.5rem;
    }

    .public-avatar {
        width: 100px;
        height: 100px;
    }

    .simulados-title {
        font-size: 1.25rem;
    }

    .public-simulado-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .public-account-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.85rem;
    }

    .btn-follow-action {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }

    .share-profile-container .btn-share-profile {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }

    .social-links-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-link-btn {
        justify-content: center;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {

    /* Modais */
    .modal-denuncia .modal-dialog {
        margin: 0.5rem;
    }

    .modal-denuncia .modal-content {
        border-radius: 10px;
    }

    .modal-denuncia .modal-header {
        padding: 1rem;
        border-radius: 10px 10px 0 0;
    }

    .modal-denuncia .modal-title {
        font-size: 1rem;
        gap: 0.6rem;
    }

    .modal-denuncia .modal-title i {
        font-size: 1.25rem;
    }

    .modal-denuncia .modal-body {
        padding: 1.25rem;
    }

    .modal-denuncia .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.65rem;
    }

    .modal-denuncia .form-label i {
        font-size: 0.85rem;
    }

    .modal-denuncia .form-control,
    .modal-denuncia .form-select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .modal-denuncia .form-control {
        border-radius: 6px;
    }

    .modal-denuncia .alert-warning,
    .modal-denuncia .alert-info,
    .modal-denuncia .alert-success {
        padding: 0.75rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .modal-denuncia .alert-info ul {
        padding-left: 0.85rem;
        margin-top: 0.5rem;
    }

    .modal-denuncia .alert-info li {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .modal-denuncia .modal-footer {
        padding: 1rem 1.25rem;
        gap: 0.4rem;
    }

    .modal-denuncia .modal-footer .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .btn-submit-report {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .public-profile-header {
        padding: 1.25rem 0 0.75rem;
    }

    .public-profile-card {
        padding: 1.25rem;
        margin-top: -1.5rem;
        border-radius: 12px;
    }

    .public-avatar {
        width: 85px;
        height: 85px;
        border-width: 3px;
    }

    .public-username {
        font-size: 1.3rem;
    }

    .public-account-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }

    .public-member-since {
        font-size: 0.85rem;
    }

    .public-stat-number {
        font-size: 1.4rem;
    }

    .public-stat-label {
        font-size: 0.75rem;
    }

    .btn-follow-action {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .share-profile-container .btn-share-profile {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .kpi-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .kpi-value {
        font-size: 1.75rem;
    }

    .kpi-label {
        font-size: 0.8rem;
    }

    .expertise-pill {
        padding: 0.85rem;
    }

    .expertise-name {
        font-size: 0.95rem;
    }

    .expertise-percentage {
        font-size: 1.25rem;
    }

    .badge-item {
        padding: 1rem;
    }

    .badge-icon {
        font-size: 2rem;
    }

    .badge-name {
        font-size: 0.85rem;
    }

    .simulados-header {
        padding: 1.25rem;
    }

    .simulados-title {
        font-size: 1.15rem;
    }

    .public-simulado-item {
        padding: 1.25rem;
    }

    .public-simulado-title {
        font-size: 1rem;
    }

    .public-tipo-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.65rem;
    }

    .btn-view-simulado {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {

    /* Modais */
    .modal-denuncia .modal-dialog {
        margin: 0.35rem;
    }

    .modal-denuncia .modal-header {
        padding: 0.85rem;
    }

    .modal-denuncia .modal-title {
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .modal-denuncia .modal-title i {
        font-size: 1.15rem;
    }

    .modal-denuncia .modal-body {
        padding: 1rem;
    }

    .modal-denuncia .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .modal-denuncia .form-control,
    .modal-denuncia .form-select {
        padding: 0.55rem;
        font-size: 0.85rem;
    }

    .modal-denuncia .alert-warning,
    .modal-denuncia .alert-info,
    .modal-denuncia .alert-success {
        padding: 0.65rem;
        font-size: 0.8rem;
    }

    .modal-denuncia .alert-info ul {
        padding-left: 0.75rem;
    }

    .modal-denuncia .alert-info li {
        font-size: 0.75rem;
    }

    .modal-denuncia .modal-footer {
        padding: 0.85rem 1rem;
    }

    .modal-denuncia .modal-footer .btn {
        padding: 0.55rem 0.85rem;
        font-size: 0.85rem;
    }

    .btn-submit-report {
        padding: 0.55rem 0.85rem;
        font-size: 0.85rem;
    }

    .public-profile-card {
        padding: 1rem;
    }

    .public-avatar {
        width: 75px;
        height: 75px;
    }

    .public-username {
        font-size: 1.2rem;
    }

    .public-account-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.65rem;
    }

    .public-member-since {
        font-size: 0.8rem;
    }

    .public-stats {
        gap: 1rem;
        padding: 1rem 0;
    }

    .public-stat-number {
        font-size: 1.25rem;
    }

    .public-stat-label {
        font-size: 0.7rem;
    }

    .btn-follow-action {
        padding: 0.55rem 0.85rem;
        font-size: 0.85rem;
    }

    .share-profile-container .btn-share-profile {
        padding: 0.55rem 0.85rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .kpi-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .kpi-value {
        font-size: 1.5rem;
    }

    .kpi-label {
        font-size: 0.75rem;
    }

    .expertise-pill {
        padding: 0.75rem;
    }

    .expertise-name {
        font-size: 0.9rem;
    }

    .expertise-percentage {
        font-size: 1.15rem;
    }

    .badge-item {
        padding: 0.85rem;
    }

    .badge-icon {
        font-size: 1.75rem;
    }

    .badge-name {
        font-size: 0.8rem;
    }

    .simulados-header {
        padding: 1rem;
    }

    .simulados-title {
        font-size: 1.05rem;
    }

    .public-simulado-item {
        padding: 1rem;
    }

    .public-simulado-title {
        font-size: 0.95rem;
    }

    .public-simulado-date {
        font-size: 0.8rem;
    }

    .btn-view-simulado {
        padding: 0.45rem 0.85rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {

    /* Modais */
    .modal-denuncia .modal-dialog {
        margin: 0.25rem;
    }

    .modal-denuncia .modal-content {
        border-radius: 8px;
    }

    .modal-denuncia .modal-header {
        padding: 0.75rem;
        border-radius: 8px 8px 0 0;
    }

    .modal-denuncia .modal-title {
        font-size: 0.9rem;
        gap: 0.45rem;
    }

    .modal-denuncia .modal-title i {
        font-size: 1.05rem;
    }

    .modal-denuncia .btn-close {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .modal-denuncia .modal-body {
        padding: 0.85rem;
    }

    .modal-denuncia .mb-3 {
        margin-bottom: 0.85rem !important;
    }

    .modal-denuncia .form-label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .modal-denuncia .form-label i {
        font-size: 0.75rem;
    }

    .modal-denuncia .form-control,
    .modal-denuncia .form-select {
        padding: 0.5rem;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .modal-denuncia .form-control::placeholder {
        font-size: 0.75rem;
    }

    .modal-denuncia .alert-warning,
    .modal-denuncia .alert-info,
    .modal-denuncia .alert-success {
        padding: 0.6rem;
        font-size: 0.75rem;
        border-radius: 6px;
    }

    .modal-denuncia .alert-warning strong,
    .modal-denuncia .alert-info strong,
    .modal-denuncia .alert-success strong {
        font-size: 0.8rem;
    }

    .modal-denuncia .alert-info ul {
        padding-left: 0.65rem;
        margin-top: 0.4rem;
        margin-bottom: 0;
    }

    .modal-denuncia .alert-info li {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }

    .modal-denuncia .modal-footer {
        padding: 0.75rem 0.85rem;
        gap: 0.35rem;
    }

    .modal-denuncia .modal-footer .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .modal-denuncia .modal-footer .btn i {
        font-size: 0.75rem;
    }

    .btn-submit-report {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .public-profile-card {
        padding: 0.85rem;
    }

    .public-avatar {
        width: 70px;
        height: 70px;
    }

    .public-username {
        font-size: 1.1rem;
    }

    .public-account-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.55rem;
    }

    .public-member-since {
        font-size: 0.75rem;
    }

    .public-stat-number {
        font-size: 1.15rem;
    }

    .public-stat-label {
        font-size: 0.65rem;
    }

    .btn-follow-action {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .share-profile-container .btn-share-profile {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1rem;
    }

    .kpi-icon {
        width: 45px;
        height: 45px;
        font-size: 1.35rem;
    }

    .kpi-value {
        font-size: 1.35rem;
    }

    .kpi-label {
        font-size: 0.7rem;
    }

    .expertise-pill {
        padding: 0.65rem;
    }

    .expertise-name {
        font-size: 0.85rem;
    }

    .expertise-percentage {
        font-size: 1.05rem;
    }

    .expertise-count {
        font-size: 0.7rem;
    }

    .badge-item {
        padding: 0.75rem;
    }

    .badge-icon {
        font-size: 1.5rem;
    }

    .badge-name {
        font-size: 0.75rem;
    }

    .badge-description {
        font-size: 0.7rem;
    }

    .simulados-header {
        padding: 0.85rem;
    }

    .simulados-title {
        font-size: 0.95rem;
    }

    .public-simulado-item {
        padding: 0.85rem;
    }

    .public-simulado-title {
        font-size: 0.9rem;
    }

    .public-simulado-date {
        font-size: 0.75rem;
    }

    .public-tipo-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.55rem;
    }

    .btn-view-simulado {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   ✨ ANIMATIONS
   ============================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideInUp 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease;
}

/* Stagger animation for list items */
.public-simulado-item:nth-child(1) {
    animation-delay: 0.1s;
}

.public-simulado-item:nth-child(2) {
    animation-delay: 0.2s;
}

.public-simulado-item:nth-child(3) {
    animation-delay: 0.3s;
}

.public-simulado-item:nth-child(4) {
    animation-delay: 0.4s;
}

.public-simulado-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* ============================================
   📊 SEÇÕES DE ESTATÍSTICAS
   ============================================ */

.section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: #667eea;
    font-size: 1.4rem;
}

/* ============================================
   📊 ESTATÍSTICAS DE PERFORMANCE (KPI CARDS)
   ============================================ */

.performance-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}


.performance-summary {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.performance-summary-item {
    text-align: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.performance-summary-value {
    font-size: 1.75rem;
    font-weight: 800;
}

.performance-summary-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }
}

.kpi-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--kpi-color, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.kpi-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.kpi-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.kpi-content {
    flex: 1;
}

.kpi-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.kpi-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 0.15rem;
}


.kpi-progress {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.kpi-progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.kpi-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #999;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}


/* ============================================
   🎯 EXPERTISE (ESPECIALISTA EM)
   ============================================ */

.expertise-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.expertise-pill {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    padding: 1.5rem 2rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.expertise-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.expertise-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.expertise-percentage {
    font-size: 1.5rem;
    font-weight: 800;
}

.expertise-count {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ============================================
   🏆 CONQUISTAS & BADGES
   ============================================ */

.badges-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
}

.badge-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.badge-item:hover::before {
    transform: scaleX(1);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.badge-unlocked {
    background: linear-gradient(135deg, #fff3cd 0%, #fff9e6 100%);
    border: 2px solid #ffc107;
}

.badge-locked {
    opacity: 0.5;
    filter: grayscale(100%);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.badge-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.badge-description {
    font-size: 0.85rem;
    color: #6c757d;
}

/* ============================================
   📈 GRÁFICO DE EVOLUÇÃO
   ============================================ */

.grafico-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.grafico-container {
    height: 300px;
    position: relative;
}

/* ============================================
   📅 ATIVIDADE RECENTE (TIMELINE)
   ============================================ */

.atividades-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.atividades-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.atividade-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.atividade-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.atividade-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.atividade-content {
    flex: 1;
}

.atividade-texto {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.atividade-detalhe {
    font-size: 0.9rem;
    color: #6c757d;
}

.atividade-tempo {
    font-size: 0.85rem;
    color: #999;
    white-space: nowrap;
}


/* ============================================
   ❤️ SIMULADOS FAVORITOS
   ============================================ */

.favoritos-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.favoritos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.favorito-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.favorito-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}


.favorito-titulo {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.favorito-titulo a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.favorito-titulo a:hover {
    color: #667eea;
}

.favorito-meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.favorito-meta i {
    margin-right: 0.25rem;
}

.btn-view-favorito {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-view-favorito:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* ============================================
   🔗 BOTÃO COMPARTILHAR PERFIL
   ============================================ */

.share-profile-container {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.btn-share-profile {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-share-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-share-profile i {
    font-size: 1.2rem;
}

/* ============================================
   🔗 REDES SOCIAIS
   ============================================ */
.social-links-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.social-links-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.social-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    color: white;
    text-decoration: none;
}

.social-link-btn i {
    font-size: 1.3rem;
}

.instagram-btn {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.twitter-btn {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
}

.youtube-btn {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}

.linkedin-btn {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
}

.github-btn {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
}

/* Toast de confirmação de compartilhamento */
.share-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.share-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.share-toast i {
    font-size: 1.5rem;
}

/* ============================================
   📱 RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .badges-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .favoritos-grid {
        grid-template-columns: 1fr;
    }

    .proof-social-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .kpi-card {
        flex-direction: column;
        text-align: center;
    }

    .kpi-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .grafico-container {
        height: 250px;
    }

    .share-toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .performance-section,
    .expertise-section,
    .badges-section,
    .grafico-section,
    .atividades-section,
    .proof-social-section,
    .favoritos-section {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .atividade-item {
        padding: 0.85rem;
    }

    .atividade-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .atividade-texto {
        font-size: 0.95rem;
    }

    .atividade-detalhe {
        font-size: 0.85rem;
    }

    .atividade-tempo {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {

    /* Modais */
    .modal-denuncia .modal-content {
        border-radius: 12px;
    }

    .modal-denuncia .modal-header {
        padding: 1.25rem;
        border-radius: 12px 12px 0 0;
    }

    .modal-denuncia .modal-title {
        font-size: 1.1rem;
        gap: 0.65rem;
    }

    .modal-denuncia .modal-title i {
        font-size: 1.35rem;
    }

    .modal-denuncia .modal-body {
        padding: 1.5rem;
    }

    .modal-denuncia .form-label {
        font-size: 0.95rem;
    }

    .modal-denuncia .form-control,
    .modal-denuncia .form-select {
        padding: 0.65rem;
        font-size: 0.95rem;
    }

    .modal-denuncia .alert-warning,
    .modal-denuncia .alert-info,
    .modal-denuncia .alert-success {
        padding: 0.85rem;
        font-size: 0.9rem;
    }

    .modal-denuncia .alert-info ul {
        padding-left: 1rem;
    }

    .modal-denuncia .modal-footer {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .modal-denuncia .modal-footer .btn {
        width: 100%;
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-submit-report {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }

    .performance-section,
    .expertise-section,
    .badges-section,
    .grafico-section,
    .atividades-section,
    .proof-social-section,
    .favoritos-section {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .section-header {
        margin-bottom: 1.25rem;
    }

    .section-title {
        font-size: 1.25rem;
        gap: 0.65rem;
    }

    .section-title i {
        font-size: 1.25rem;
    }

    .performance-grid {
        gap: 1.25rem;
    }

    .kpi-card {
        padding: 1.25rem;
    }

    .expertise-pill {
        padding: 1.25rem 1.5rem;
    }

    .expertise-name {
        font-size: 1rem;
    }

    .expertise-percentage {
        font-size: 1.35rem;
    }

    .expertise-count {
        font-size: 0.8rem;
    }

    .badges-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 1.25rem;
    }

    .badge-item {
        padding: 1.25rem;
    }

    .badge-icon {
        font-size: 2.5rem;
    }

    .badge-name {
        font-size: 0.9rem;
    }

    .badge-description {
        font-size: 0.8rem;
    }

    .atividades-timeline {
        gap: 0.85rem;
    }

    .atividade-item {
        padding: 0.75rem;
        gap: 0.85rem;
    }

    .atividade-icon {
        width: 42px;
        height: 42px;
        font-size: 1.35rem;
    }

    .atividade-texto {
        font-size: 0.9rem;
    }

    .atividade-detalhe {
        font-size: 0.8rem;
    }

    .atividade-tempo {
        font-size: 0.75rem;
    }

    .proof-social-section {
        padding: 1.5rem;
    }

    .proof-social-content {
        gap: 1.25rem;
    }

    .proof-stat {
        gap: 0.85rem;
    }

    .proof-stat i {
        font-size: 2.25rem;
    }

    .proof-value {
        font-size: 1.6rem;
    }

    .proof-label {
        font-size: 0.85rem;
    }

    .favoritos-grid {
        gap: 1.25rem;
    }

    .favorito-card {
        padding: 1.25rem;
    }

    .favorito-tipo {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }

    .favorito-titulo {
        font-size: 0.95rem;
    }

    .favorito-meta {
        font-size: 0.8rem;
    }

    .btn-view-favorito {
        padding: 0.55rem;
        font-size: 0.85rem;
    }

    .grafico-container {
        height: 220px;
    }
}

/* ============================================
   📑 PROFILE TABS NAVIGATION
   ============================================ */
.profile-tabs-container {
    position: sticky;
    top: 60px;
    z-index: 10;
}

.profile-tabs-nav {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 0.4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.12);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.profile-tabs-nav::-webkit-scrollbar {
    display: none;
}

.profile-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex: 1;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.profile-tab-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-tab-btn:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
}

.profile-tab-btn.active {
    color: #fff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
}

.profile-tab-btn.active::before {
    opacity: 1;
}

.profile-tab-btn i,
.profile-tab-btn span {
    position: relative;
    z-index: 1;
}

.profile-tab-btn i {
    font-size: 0.95rem;
}

/* Tab Content */
.profile-tab-content {
    display: none;
    animation: tabFadeIn 0.35s ease-out;
}

.profile-tab-content.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tabs */
@media (max-width: 576px) {
    .profile-tab-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.35rem;
    }

    .profile-tab-btn span {
        display: none;
    }

    .profile-tab-btn i {
        font-size: 1.1rem;
    }

    .profile-tabs-container {
        top: 50px;
    }
}

@media (max-width: 768px) {
    .profile-tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}