/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores do Tema */
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-tertiary: #2d2d2d;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    --accent-orange: #FF6600;
    --accent-purple: #8B5CF6;
    --border-color: #333333;
    --hover-bg: #2a2a2a;
    --red-500: #B22D00;

    /* Gradientes */
    --gradient-orange: linear-gradient(135deg, #FF6600, #FF8533);
    --gradient-purple: linear-gradient(135deg, #8B5CF6, #A78BFA);

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body a {
    text-decoration: none !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--bg-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-categories {
    background: var(--red-500);
    color: white;
    border: none;
}

.btn-categories:hover {
    background: #e55a00;
    transform: translateY(-1px);
}

.btn-indicate {
    background: white;
    color: var(--bg-primary);
    border: none;
}

.btn-indicate:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* Barra de Pesquisa */
.search-container {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--red-500);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-btn:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

/* Perfil do Usuário */
.user-profile {
    position: relative;
}

.avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
}

.avatar-icon {
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    border-radius: 50%;
}

.avatar:hover {
    transform: scale(1.05);
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10B981;
    border: 2px solid var(--bg-primary);
    border-radius: 50%;
}

/* Layout Principal */
.main-layout {
    display: flex;
    margin-top: 70px;
    /* min-height: calc(100vh - 70px); */
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    padding: 2rem 0;
    transition: var(--transition-normal);
    overflow-y: auto;
    min-height: calc(100vh - 212px);
}

.sidebar-content {
    padding: 0 1.5rem;
}

/* Seções da Sidebar */
.menu-section,
.communities-section,
.social-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

/* Navegação da Sidebar */
.sidebar-nav {
    margin-bottom: 0;
}

.nav-list {
    list-style: none;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-fast);
    font-weight: 500;
}

.nav-link:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.nav-item.active .nav-link {
    /* background: var(--hover-bg); */
    color: var(--text-primary);
}

.nav-icon {
    flex-shrink: 0;
}

/* Seção de Comunidades */
.communities-header {
    margin-bottom: 1rem;
}

.communities-list {
    list-style: none;
    margin-bottom: 1rem;
}

.community-item {
    margin-bottom: 0.5rem;
}

.community-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-fast);
    justify-content: space-between;
}

.community-link:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.community-diamond {
    width: 8px;
    height: 8px;
    background: var(--red-500);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.arrow-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.show-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.show-more:hover {
    color: var(--text-primary);
}

/* Redes Sociais */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

/* Rodapé da Sidebar */
.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.sidebar-footer .company-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.sidebar-footer .cnpj,
.sidebar-footer .location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

/* Conteúdo Principal */
.main-content {
    flex: 1;
    padding: 2rem;
    max-width: calc(100vw - 280px);
    background: var(--bg-primary);
}

/* Carrossel de Cursos */
.courses-carousel {
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform var(--transition-normal);
    padding: 1rem 0;
}

.course-card {
    min-width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
    cursor: pointer;
    position: relative;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-500);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.badge-rocketseat {
    background: var(--red-500);
    color: white;
}

.badge-udemy {
    background: #EC5252;
    color: white;
}

.course-image {
    width: 100%;
    height: 180px;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: 700;
    position: relative;
}

.course-content {
    padding: 1.5rem;
}

.course-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.course-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.course-price-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.course-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.course-price-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.course-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--red-500);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.course-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Controles do Carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--red-500);
    color: white;
    border-color: var(--red-500);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Seção de Postagens */
.posts-section {
    margin-bottom: 3rem;
}

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

/* Filtros */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tab:hover {
    border-color: var(--red-500);
    color: var(--red-500);
}

.filter-tab.active {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

/* Postagens */
.posts-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-fast);
    cursor: pointer;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-purple);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.post-author-info {
    flex: 1;
}

.post-author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.post-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.post-content {
    margin-bottom: 1rem;
}

.post-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.post-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.post-actions {
    display: flex;
    gap: 2rem;
}

.post-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.post-action:hover {
    color: var(--red-500);
}

.post-action svg {
    width: 16px;
    height: 16px;
}

.hype-action {
    background: var(--red-500);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-info .company-name {
    font-weight: 700;
    color: var(--text-primary);
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--red-500);
}

/* BY DEV FOR DEV */
.by-dev-for-dev {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 100;
    pointer-events: none;
}

/* Botão para recolher/expandir sidebar (mobile) */
.sidebar-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.sidebar-toggle:hover {
    background: var(--red-500);
    color: white;
}

/* Responsividade */
@media (max-width: 1200px) {
    .main-content {
        max-width: calc(100vw - 240px);
    }

    .sidebar {
        width: 240px;
    }
}

@media (max-width: 968px) {
    .header {
        padding: 0 1rem;
    }

    .header-actions {
        gap: 1rem;
    }

    .search-container {
        max-width: 250px;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .main-content {
        padding: 1.5rem;
        max-width: 100vw;
    }

    .carousel-track {
        gap: 1rem;
    }

    .course-card {
        min-width: 250px;
    }

    .filter-tabs {
        gap: 0.25rem;
    }

    .filter-tab {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -280px;
        top: 70px;
        height: calc(100vh - 70px);
        z-index: 999;
        transition: left var(--transition-normal);
    }

    .sidebar.open {
        left: 0;
    }

    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-content {
        padding: 1rem;
    }

    .carousel-track {
        gap: 1rem;
    }

    .course-card {
        min-width: 200px;
    }

    .course-image {
        height: 120px;
        font-size: 1.5rem;
    }

    .course-content {
        padding: 1rem;
    }

    .post-card {
        padding: 1rem;
    }

    .post-actions {
        gap: 1rem;
    }

    .by-dev-for-dev {
        bottom: 1rem;
        right: 1rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        height: 60px;
    }

    .header {
        padding: 0 0.5rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .search-container {
        max-width: 150px;
    }

    .search-input {
        padding: 0.6rem 0.8rem 0.6rem 2.5rem;
        font-size: 0.8rem;
    }

    .search-icon {
        left: 0.8rem;
    }

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

    .avatar {
        width: 32px;
        height: 32px;
    }

    .notification-btn {
        width: 32px;
        height: 32px;
    }

    .main-layout {
        margin-top: 60px;
    }

    .sidebar {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .course-card {
        min-width: 180px;
    }

    .course-image {
        height: 100px;
        font-size: 1.25rem;
    }

    .post-card {
        padding: 0.75rem;
    }

    .post-actions {
        gap: 0.75rem;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.post-card {
    animation: fadeIn 0.5s ease-out;
}

.course-card {
    animation: fadeIn 0.5s ease-out;
}

/* Estados de Loading */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--red-500);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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

/* Scrollbar Customizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-500);
}

/* Seleção de Texto */
::selection {
    background: var(--red-500);
    color: white;
}

::-moz-selection {
    background: var(--red-500);
    color: white;
}

/* Página de Perfil - Layout de duas colunas */

/* Layout principal da página de perfil */
.profile-layout {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Coluna da esquerda - Perfil e opções */
.profile-sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* Seção do perfil do usuário */
.user-profile-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    text-align: center;
}

.user-avatar {
    margin-bottom: 16px;
}

.avatar-circle {
    width: 64px;
    height: 64px;
    background: var(--gradient-purple);
    border-radius: 50%;
    margin: 0 auto;
}

.user-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.user-handle {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Menu de opções da conta */
.account-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
}

.menu-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.875rem;
    font-weight: 500;
}

.menu-option:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.menu-option.active {
    background: var(--red-500);
    color: white;
}

.menu-option svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Coluna da direita - Conteúdo */
.content-area {
    flex: 1;
    min-width: 0;
}

.content-header {
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb svg {
    color: var(--red-500);
}

/* Grid de indicações */
.indications-list {
    display: grid;
    gap: 16px;
}

.indications-list a {
    text-decoration: none;
}

/* Cards das indicações */
.indication-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.indication-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bar-comment {
    width: 100%;
    padding: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
}

.bar-comment input {
    width: 100%;
    border: solid 1px #4C4C4C;
    border-radius: 4px 0 0 4px;
    border-right: none;
    height: 40px;
    background-color: #2C2C2C;
    padding: 0 20px;
    color: #696969;
    outline: none;
}

.bar-comment button {
    background-color: var(--red-500);
    color: white;
    padding: 12px 50px;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.comentarios {
    background-color: #1f1f1f;
    border-radius: 4px;
    overflow: hidden;
}

.comentarios .head {
    height: 60px;
    background-color: #1c1c1c;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    color: #989898;
    font-size: 12px;
    border-bottom: 1px solid #2c2c2c;
}

.comentarios img {
    height: 14px;
    width: 14px;
}

.comentarios .body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comentarios .body .user-comment {
    padding-bottom: 20px;
    border-bottom:solid 1px #2c2c2c ;
}

.comentarios .body .user-comment:last-child {
    padding-bottom: 20px;
    border-bottom:none;
}

.comentarios .body .head-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comentarios .body .head-user img {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comentarios .body .head-user .name {
    color: #BABABA;
    font-size: 12px;
    font-weight: bold;
}

.comentarios .body .head-user .date {
    color: #BABABA;
    font-size: 10px;
    font-weight: lighter;
}

.comentarios .body .text {
    margin-top: 12px;
    padding:  0px 0px 0px 28px;
    color: white;
    font-size: 12px;
    font-weight: lighter;
}

.card-thumbnail {
    height: 120px;
    position: relative;
    overflow: hidden;
}

.thumbnail-bg {
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    opacity: 0.8;
}

.card-body {
    padding: 16px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.author-info svg {
    width: 14px;
    height: 14px;
}

.author {
    color: var(--text-primary);
    font-weight: 600;
}

.handle {
    color: var(--text-muted);
}

.card-actions {
    position: relative;
}

.options-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.options-btn:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.options-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    display: none;
}

.card-actions:hover .options-menu {
    display: block;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 0.875rem;
    transition: background 0.2s ease;
}

.menu-item:hover {
    background: var(--hover-bg);
}

.menu-item.delete {
    color: #ff4757;
}

.menu-item svg {
    width: 14px;
    height: 14px;
}

.card-title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.card-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0 0 12px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-description-2 {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-ago {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .profile-layout {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .profile-sidebar {
        width: 100%;
    }

    .account-menu {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
    }

    .menu-option {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 4px;
        padding: 12px 8px;
    }

    .menu-option span {
        font-size: 0.75rem;
    }
}

/* Cards das indicações (layout antigo - mantido para compatibilidade) */
.indication-item {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    transition: var(--transition-fast);
}

.indication-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-purple);
}

/* Thumbnail das indicações */
.item-thumbnail {
    flex-shrink: 0;
}

.thumbnail-image {
    width: 100px;
    height: 100px;
    background: var(--gradient-purple);
    border-radius: 8px;
}

/* Detalhes do item */
.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header do item com autor e ações */
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.author-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.author-section svg {
    width: 16px;
    height: 16px;
}

.author-name {
    color: var(--text-primary);
    font-weight: 500;
}

.author-username {
    color: var(--text-muted);
}

/* Menu de ações */
.item-actions {
    position: relative;
}

.action-menu-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.action-menu-btn:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.action-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 150px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.action-menu-btn:hover+.action-menu,
.action-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    text-align: left;
}

.menu-item:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.menu-item.delete:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.menu-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Título da indicação */
.item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

/* Descrição da indicação */
.item-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer do item */
.item-footer {
    margin-top: auto;
}

.item-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .user-profile-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }

    .user-name {
        font-size: 1.5rem;
    }

    .account-options-card {
        margin-bottom: 1.5rem;
    }

    .indication-item {
        flex-direction: column;
        gap: 1rem;
    }

    .thumbnail-image {
        width: 100%;
        height: 120px;
    }

    .item-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .action-menu {
        right: auto;
        left: 0;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem;
    }

    .avatar-circle {
        width: 50px;
        height: 50px;
    }

    .user-name {
        font-size: 1.25rem;
    }

    .account-option {
        padding: 0.875rem 1rem;
    }

    .indication-item {
        padding: 1rem;
    }

    .thumbnail-image {
        height: 100px;
    }

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

    .item-description {
        font-size: 0.9rem;
    }


}