/* 
 * 👥 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: 3rem 0 2rem;
    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;
}

/* ============================================
   👤 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-account-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.badge-premium-public {
    background: linear-gradient(135deg, #ffd000 0%, #ff9500 100%);
    color: #111;
}

.badge-basic-public {
    background: #94a3b8;
    color: white;
}

.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-message {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
}

.btn-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
    color: white;
}

.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;
}

.report-info {
    font-size: 0.8rem;
    color: #718096;
    text-align: center;
    padding: 0.5rem;
    background: #f1f5f9;
    border-radius: 6px;
}

/* ============================================
   📚 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-bottom: 2px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.public-simulado-item:last-child {
    border-bottom: none;
}

.public-simulado-item:hover {
    background: #f8f9fa;
    transform: translateX(8px);
}

.public-simulado-info {
    flex-grow: 1;
    min-width: 0;
}

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

.public-tipo-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.public-tipo-badge-premium {
    background: linear-gradient(135deg, #ffd000 0%, #ff9500 100%);
    color: #111;
}

.public-tipo-badge-basic {
    background: #94a3b8;
    color: white;
}

.public-simulado-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

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

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

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

.btn-view-simulado {
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-view-simulado:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* ============================================
   📭 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-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.kpi-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.kpi-content {
    flex: 1;
}

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

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

.kpi-detail {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.25rem;
    font-style: italic;
}

/* ============================================
   🎯 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;
}

/* ============================================
   💰 PROOF SOCIAL (VENDAS)
   ============================================ */

.proof-social-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.proof-social-section .section-title {
    color: white;
}

.proof-social-section .section-title i {
    color: rgba(255, 255, 255, 0.9);
}

.proof-social-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.proof-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.proof-stat i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.proof-value {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.proof-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   ❤️ 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-tipo {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.favorito-tipo.tipo-premium {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
}

.favorito-tipo.tipo-basico {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
}

.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%);
}

/* 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;
    }
}

