* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: url('assets/fundo.png') no-repeat center center fixed;
    background-size: cover;
    color: #e5e5e7;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #ff0066 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}


.nav-link {
    color: #7e7e7e;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1rem 0;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

.register-btn {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #ff0066 0%, #ff4d94 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    color: #b0b0b8;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0066 0%, #cc0052 100%);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 102, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.9rem 2rem;
    border-radius: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.8rem;
    color: #8b8b9c;
}

/* CATEGORIES SECTION */
.categories {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.section-header p {
    color: #8b8b9c;
    font-size: 1rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 102, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.category-card p {
    font-size: 0.85rem;
    color: #8b8b9c;
    line-height: 1.5;
}

/* HOW TO PLAY */
.how-to-play {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.steps-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    text-align: center;
    background: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.25rem;
    padding: 2rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ff0066;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step p {
    font-size: 0.85rem;
    color: #8b8b9c;
}

.step-arrow {
    font-size: 2rem;
    color: #ff0066;
}

/* SERVER INFO */
.server-info {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(255, 0, 102, 0.05));
    border: 1px solid rgba(255, 0, 102, 0.2);
    border-radius: 0.25rem;
    padding: 2rem;
    text-align: center;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.server-ip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.server-ip code {
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1.5rem;
    border-radius: 0.25rem;
    font-family: monospace;
    font-size: 1rem;
    color: #ff0066;
}

.copy-btn {
    background: #ff0066;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0.25rem;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #cc0052;
    transform: translateY(-2px);
}

.info-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.detail {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.detail span {
    color: #8b8b9c;
}

.detail strong {
    color: #ff0066;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #ff0066;
}

/* CARD (reutilizado do register) */
.card {
    background: rgba(19, 19, 22, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.25rem;
    padding: 2rem;
    border: 1px solid #25252b;
}

.card-header {
    margin-bottom: 1.75rem;
}

.card-header h2 {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.2px;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.card-header .sub {
    font-size: 0.75rem;
    color: #6b6b7a;
}

.input-group {
    margin-bottom: 1.25rem;
}

.input-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8b8b9c;
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    background: #0a0a0c;
    border: 1px solid #25252b;
    border-radius: 0.25rem;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    font-family: 'Inter', monospace;
    color: #f0f0f5;
    transition: all 0.2s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #ff0066;
    background: #0e0e12;
}

.input-group input::placeholder {
    color: #3a3a44;
    font-size: 0.85rem;
}

.btn {
    width: 100%;
    background: linear-gradient(135deg, #ff0066 0%, #cc0052 100%);
    border: none;
    border-radius: 0.25rem;
    padding: 0.9rem;
    margin-top: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #ff1a75 0%, #e6005c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.3);
}

.btn:active {
    transform: scale(0.98);
}

.feedback {
    margin-top: 1rem;
    min-height: 3rem;
}

.msg {
    padding: 0.7rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    text-align: center;
}

.msg-error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #f87171;
}

.msg-loading {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #6b6b7a;
    border-top: 1px solid #1e1e24;
    padding-top: 1.25rem;
}

.footer a {
    color: #ff0066;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    color: #ff4d94;
    text-decoration: underline;
}

/* RESPONSIVO PARA O MENU */
@media (max-width: 768px) {
    .nav-left {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.8rem 0;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 600px) {
    .nav-menu {
        display: none;
    }
}

/* RESPONSIVO GERAL */
@media (max-width: 768px) {
    .hero {
        padding-top: 8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats {
        gap: 1.5rem;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .server-ip {
        flex-direction: column;
    }
    
    .info-details {
        flex-direction: column;
        align-items: center;
    }
}

/* NOVIDADES SECTION */
.novidades {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.novidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.novidade-card {
    background: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.novidade-imagem {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.novidade-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.novidade-card:hover .novidade-imagem img {
    transform: scale(1.05);
}

.novidade-categoria {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background:rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
}

.novidade-conteudo {
    padding: 1.5rem;
}

.novidade-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: #8b8b9c;
}

.novidade-conteudo h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
    line-height: 1.4;
}

.novidade-conteudo p {
    font-size: 0.85rem;
    color: #b0b0b8;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.novidade-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.novidade-tags span {
    background: rgba(255, 0, 102, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.65rem;
    color: #ff0066;
    font-weight: 500;
}

.ler-mais-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.ler-mais-btn:hover {
    color: #ff4d94;
    transform: translateX(5px);
}

/* 
.ver-mais-container {
    text-align: center;
    margin-top: 3rem;
}

.ver-mais-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 2rem;
    border-radius: 0.25rem;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ver-mais-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.9rem 2rem;
    border-radius: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
} */


/* MODAL DE NOVIDADES */
.novidade-modal-content {
    max-width: 800px;
    background: rgba(19, 19, 22, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 0;
    overflow: hidden;
}

.novidade-detalhe {
    display: flex;
    flex-direction: column;
}

.novidade-detalhe-imagem {
    height: 300px;
    overflow: hidden;
}

.novidade-detalhe-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.novidade-detalhe-conteudo {
    padding: 2rem;
}

.novidade-detalhe-categoria {
    display: inline-block;
    background: linear-gradient(135deg, #ff0066, #cc0052);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.novidade-detalhe-conteudo h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.novidade-detalhe-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #8b8b9c;
}

.novidade-detalhe-texto p {
    color: #b0b0b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.novidade-detalhe-texto h4 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.novidade-detalhe-texto ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.novidade-detalhe-texto ul li {
    color: #b0b0b8;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.novidade-detalhe-texto ul li::before {
    position: absolute;
    left: 0;
    color: #ff0066;
}

.novidade-detalhe-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.novidade-detalhe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.novidade-detalhe-tags span {
    background: rgba(255, 0, 102, 0.15);
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    color: #ff0066;
}

.btn-compartilhar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-compartilhar:hover {
    background: rgba(255, 0, 102, 0.2);
    border-color: #ff0066;
}

/* Botão do usuário */
.user-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff0066, #cc0052);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.user-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
}


/* Responsivo */
@media (max-width: 768px) {
    .novidades {
        padding: 3rem 1rem;
    }
    
    .novidades-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .novidade-detalhe-conteudo h2 {
        font-size: 1.4rem;
    }
    
    .novidade-detalhe-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .novidade-detalhe-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .novidade-imagem {
        height: 180px;
    }
    
    .novidade-detalhe-conteudo {
        padding: 1.5rem;
    }
}

.user-dropdown {
    position: fixed;
    top: 80px;
    right: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff0066, #cc0052);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-avatar span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-info span:first-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.dropdown-info span:last-child {
    font-size: 0.7rem;
    color: #8b8b9c;
}

.dropdown-menu {
    padding: 0.5rem;
}

.dropdown-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #e5e5e7;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-dropdown {
    color: #f87171;
    justify-content: center;
}

.logout-dropdown .dropdown-icon {
    display: none;
}

.logout-dropdown:hover {
    background: rgba(248, 113, 113, 0.1);
}


/* Responsivo para dropdown */
@media (max-width: 768px) {
    .user-dropdown {
        top: 70px;
        right: 1rem;
        width: 260px;
    }
    
    .user-name {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .user-dropdown {
        right: 0.5rem;
        left: 0.5rem;
        width: auto;
    }
}

.footer {
    background: linear-gradient(135deg, #0a0b0f 0%, #0f1117 100%);
    padding: 70px 20px 30px;
    color: #9ca3af;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff006a, #ff6fa6);
}

.footer-logo {
    width: 70px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}


.footer-logo:hover {
    transform: scale(1.05);
}

.footer-legal {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 12px;
}


.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-links-col {
    list-style: none;
    padding: 0;
}

.footer-links-col li {
    margin-bottom: 12px;
}

.footer-links-col a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-links-col a:hover {
    color: #ff0077;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact i {
    width: 25px;
    color: #ff0077;
}

.footer-community {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

.footer-community h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-community p {
    color: #6b7280;
    margin-bottom: 25px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon.discord:hover {
    background: #ff0077;
    color: #fff;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 110%, #ffdb8b, #d4407e, #a23283);
    color: #fff;
}

.social-icon.youtube:hover {
    background: #FF0000;
    color: #fff;
}

.social-icon.tiktok:hover {
    background: #000000;
    color: #00f2ea;
}

.social-icon.twitter:hover {
    background: #000000;
    color: #fff;
}

.social-icon.github:hover {
    background: #333;
    color: #fff;
}

.legal-text {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.legal-text i {
    color: #ff0077;
    margin-right: 8px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 13px;
}

.footer-links a:hover {
    color: #ff0077;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 25px;
    }
    
    .footer-grid {
        gap: 30px;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-community h3 {
        font-size: 22px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .socials {
        gap: 12px;
    }
    
    .footer-links {
        justify-content: center;
    }
}
.faq {
            padding: 80px 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #111217;
            border: 1px solid #1f2128;
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: 0.3s;
        }

        .faq-question {
            padding: 18px 20px;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff;
        }

        .faq-question span {
            font-size: 20px;
            transition: 0.3s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            font-size: 14px;
            color: #a1a1aa;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 15px 20px;
        }

        .faq-item.active .faq-question span {
            transform: rotate(45deg);
        }