/* Tooltip */
.tooltip-container {
    position: relative;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #2d2d2d;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    transition: all 0.3s ease;
}

.info-icon:hover {
    background: #3d3d3d;
    transform: scale(1.1);
}

.tooltip {
    position: absolute;
    bottom: calc(100% - 90px); /* Move ainda mais para baixo */
    left: 50%;
    transform: translateX(-50%);
    background: #202020;
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #202020;
}

.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tooltip-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #2d2d2d;
    font-size: 0.95rem;
}

.tooltip-row:last-child {
    border-bottom: none;
}


  .mobile-error {
    color: #ff4444;
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Espaço entre ícone e texto */
    }
    /* Reset e estilos globais */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes float {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    
    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        background-color: #0c0c0c;
        color: #ffffff;
    }
    
    /* Header e Navegação */
    header {
        background-color: transparent;
        padding: 1.5rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    header.scrolled {
        background-color: rgba(12, 12, 12, 0.8);
        backdrop-filter: blur(10px);
    }
    
    nav {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
    }
    
    .logo {
        font-size: 1.0rem;
        font-weight: 500;
        color: #fff;
        animation: fadeIn 1s ease;
        text-decoration: none;
        display: flex;
        align-items: center; /* Centraliza verticalmente */
        gap: 0.8rem; /* Espaço entre a imagem e o texto */
        white-space: nowrap; /* Evita quebra de linha */
    }
    
    .logo-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        /* Remova margin-right se estiver usando gap no .logo */
    }
    
    /* Estilo para o span "MODZ" (opcional) */
    .logo span {
       /* margin-left: 0.3rem;  Pequeno espaço entre "TIAGO" e "MODZ" */
        /* Outros estilos personalizados, se necessário */
    }
    .logo-top {
        transform: translateY(-200px); /* Move 5px para cima */
    }
    
    .nav-links {
        display: flex;
        list-style: none;
        gap: 2.5rem;
    }
    
    .nav-links li {
        animation: fadeIn 1s ease;
        animation-fill-mode: both;
    }
    
    .nav-links li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links li:nth-child(4) { animation-delay: 0.4s; }
    .nav-links li:nth-child(5) { animation-delay: 0.5s; }
    
    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s;
        text-transform: uppercase;
    }
    
    .nav-links a:hover {
        color: #fff;
        opacity: 0.7;
    }
    .nav-links i.fas {
        margin-right: 8px; /* Espaço à direita do ícone */
    }
    .discord-btn {
        background-color: #7289da;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
    }
    
    .discord-btn:hover {
        background-color: #5f73bc;
    }
    
    /* Menu Mobile */
    .menu-btn {
        display: none;
        cursor: pointer;
        font-size: 1.5rem;
        color: #fff;
        background: none;
        border: none;
        padding: 0.5rem;
        transition: all 0.3s;
        z-index: 1001;
    }
    
    .menu-btn:hover {
        opacity: 0.8;
    }
    
    /* Hero Section */
    .hero {
        position: relative;
        padding: 8rem 2rem;
        text-align: left;
        background-color: #0c0c0c;
        overflow: hidden;
        display: flex;
        align-items: center;
        min-height: 100vh;
    }
    
    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 4rem;
        z-index: 1;
    }
    
    .hero-text {
        max-width: 800px;
        text-align: left;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: #fff;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        letter-spacing: 1px;
    }
    
    .hero p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 2rem;
        line-height: 1.6;
        max-width: 600px;
    }
    
    .hero-image {
        flex: 1;
        max-width: 450px;
        position: relative;
        margin-right: -2rem;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        transform: scale(0.9);
    }
    
    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: flex-start;
    }
    
    .btn {
        display: inline-block;
        padding: 0.8rem 2.5rem;
        background-color: #ff3e3e;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
        transition: all 0.3s;
        font-size: 0.95rem;
        min-width: 160px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(255, 62, 62, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 62, 62, 0.4);
        background-color: #ff2525;
    }
    
    .btn.secondary {
        background-color: transparent;
        border: 2px solid #ff3e3e;
    }
    
    /* Features Section */
    .features {
        padding: 8rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        background-color: #0c0c0c;
    }
    
    .feature-card {
        background-color: #151515;
        padding: 2.5rem;
        border-radius: 10px;
        text-align: center;
        transition: all 0.3s;
        border: 1px solid #222;
        animation: float 6s ease-in-out infinite;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .feature-card i {
        font-size: 2.5rem;
        color: #ff3e3e;
        margin-bottom: 1.5rem;
    }
    
    .feature-card h3 {
        margin-bottom: 1rem;
        color: #fff;
        font-size: 1.5rem;
    }
    
    .feature-card p {
        color: #888;
        font-size: 0.95rem;
    }
    
    /* Pricing Section */
    .pricing {
        padding: 8rem 2rem;
        background-color: #0c0c0c;
    }
    
    .pricing h2 {
        text-align: center;
        margin-bottom: 4rem;
        font-size: 3rem;
        font-weight: 800;
        color: #fff;
        animation: fadeIn 1s ease;
    }
    
    .pricing-cards {
            display: flex;
    flex-wrap: wrap;           /* permite quebrar linha quando faltar espaço */
    justify-content: center;   /* centraliza os cards */
    gap: 20px;  
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
       
        padding: 0 2rem;
    }
    
    
    
    /* FAQ Section */
    .faq {
        padding: 8rem 2rem;
        background-color: #0c0c0c;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .faq h2 {
        text-align: center;
        margin-bottom: 4rem;
        font-size: 3rem;
        font-weight: 800;
        color: #fff;
        animation: fadeIn 1s ease;
    }
    
    .faq-item {
        background-color: #151515;
        border: 1px solid #222;
        border-radius: 10px;
        margin-bottom: 1rem;
        overflow: hidden;
        animation: fadeIn 1s ease;
        animation-fill-mode: both;
    }
    
    .faq-item:nth-child(1) { animation-delay: 0.1s; }
    .faq-item:nth-child(2) { animation-delay: 0.2s; }
    .faq-item:nth-child(3) { animation-delay: 0.3s; }
    .faq-item:nth-child(4) { animation-delay: 0.4s; }
    
    .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s;
        position: relative; /* Permite posicionamento absoluto interno */
        flex: 1;
        min-width: 100px;
        text-align: center;

    }
    
    #nigga {
        flex: 0 0 auto;
        text-align: center;
        font-size: 1rem;
        margin: 0 10px;
    }
    
    /* Opcional: Alinhar h2 à esquerda e span à direita */
    .faq-question h2 {
        margin-right: auto; /* Empurra para a esquerda */
    }
    


    .faq-question:hover {
        background-color: #1a1a1a;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        color: #fff;
        margin: 0;
    }
    
    .faq-question i {
        color: #666;
        transition: transform 0.3s;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        color: #888;
        display: flex;
        flex-direction: column; /* Empilha verticalmente */
    }
    
    .faq-item.active .faq-question {
        background-color: #1a1a1a;
    }
    
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
        max-height: 500px;
    }
    
    /* Footer */
    footer {
        background-color: #0c0c0c;
        padding: 3rem 2rem;
        text-align: center;
        border-top: 1px solid #222;
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        animation: fadeIn 1s ease;
    }
    
    .social-links {
        margin-top: 1.5rem;
    }
    
    .social-links a {
        color: #fff;
        font-size: 1.8rem;
        margin: 0 1rem;
        transition: all 0.3s;
    }
    
    .social-links a:hover {
        opacity: 0.7;
    }
    
    /* Responsividade */
    @media (max-width: 1200px) {
        .pricing-cards {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        /* Header e Navegação */
        header {
            padding: 1rem 0;
            background: rgba(12, 12, 12, 0.95);
        }

        nav {
            padding: 0 1rem;
        }

        .logo {
            display: none;
        }

        .menu-btn {
            display: block;
        }

        .nav-links {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: rgba(12, 12, 12, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem;
            flex-direction: column;
            gap: 0.5rem;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .nav-links.active {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .nav-links li {
            width: 100%;
        }

        .nav-links a {
            display: block;
            padding: 1rem;
            width: 100%;
            text-align: center;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            opacity: 1;
        }

        /* Status Container */
        .status-container {
            margin-top: 8rem;
            padding: 0 1.5rem;
        }

        .status-header h1 {
            font-size: 2.2rem;
        }

        .status-section h2 {
            font-size: 2rem;
        }

        .status-item {
            padding: 1.2rem 1.5rem;
        }

        .status-info {
            gap: 1.5rem;
        }

        /* Footer */
        .status-footer {
            padding: 1.5rem 1rem;
        }

        .footer-content {
            padding: 1rem 0;
        }

        .social-links {
            margin-top: 1rem;
        }

        .social-links a {
            font-size: 1.5rem;
            margin: 0 0.8rem;
        }
    }
    
    @media (max-width: 480px) {
        .status-container {
            margin-top: 5rem;
        }

        .status-header h1 {
            font-size: 1.8rem;
        }

        .status-tabs {
            padding: 0 0.5rem;
        }

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

        .status-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
            margin: 0 0.5rem;
        }

        .status-info {
            width: 100%;
            justify-content: space-between;
            gap: 1rem;
        }

        .status-badge {
            min-width: 70px;
            font-size: 0.85rem;
        }

        .footer-content {
            padding: 0.5rem 0;
        }
    }

    /* Ajustes para telas muito altas */
    @media (min-height: 1000px) {
        .status-container {
            min-height: calc(100vh - 100px);
        }

        .dashboard-container {
            min-height: 100vh;
        }
    }
    
    /* Better Workflow Section */
    .workflow {
        padding: 8rem 2rem;
        background-color: #0c0c0c;
    }
    
    .workflow-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .workflow-content {
        animation: fadeIn 1s ease;
    }
    
    .workflow-content h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 3rem;
        color: #fff;
    }
    
    .workflow-features {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .workflow-feature {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    .workflow-feature i {
        font-size: 1.5rem;
        color: #ff3e3e;
        width: 40px;
    }
    
    .workflow-feature p {
        color: #888;
        font-size: 1rem;
        margin: 0;
    }
    
    /* Code Editor */
    .code-editor {
        background-color: #1a1f2c;
        border-radius: 10px;
        overflow: hidden;
        animation: fadeIn 1s ease 0.2s;
        animation-fill-mode: both;
        min-height: 400px;
        display: flex;
        flex-direction: column;
    }
    
    .code-header {
        background-color: #ff3e3e;
        padding: 1rem 1.5rem;
        color: #fff;
        font-size: 1rem;
        font-family: monospace;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .copy-btn {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        padding: 0.3rem 1rem;
        color: #fff;
        border-radius: 4px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.3s;
    }
    
    .copy-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .code-content {
        padding: 2rem;
        font-family: monospace;
        line-height: 3;
        font-size: 1.2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .code-content .function {
        color: #569cd6;
    }
    
    .code-content .string {
        color: #ce9178;
    }
    
    .code-content .keyword {
        color: #c586c0;
    }
    
    .code-line {
        margin-bottom: 1rem;
        display: block;
    }
    
    /* Video Section */
    .video-section {
        padding: 8rem 2rem;
        background-color: #0c0c0c;
        position: relative;
    }
    
    .video-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .video-wrapper {
        position: relative;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        aspect-ratio: 16/9;
        background: #151515;
        display: block;
        text-decoration: none;
    }
    
    .video-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .video-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background-color: #ff3e3e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .video-play:hover {
        transform: translate(-50%, -50%) scale(1.1);
        background-color: #ff2525;
    }
    
    .video-play i {
        color: #fff;
        font-size: 1.8rem;
        margin-left: 4px;
    }
    
    .video-content {
        animation: fadeIn 1s ease;
    }
    
    .video-content::before {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background-color: #ff3e3e;
        margin-bottom: 1.5rem;
    }
    
    .video-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 2rem;
        color: #fff;
    }
    
    .video-features {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .video-feature {
        color: #888;
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    @media (max-width: 1200px) {
        .video-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
    }
    
    @media (max-width: 768px) {
        .video-section {
            display: none;
        }
    }
    
    .plan-selector {
        background: #151515;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .plan-counter {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }
    
    .counter-controls {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .counter-btn {
        background: none;
        border: none;
        color: #ff3e3e;
        font-size: 1.5rem;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    
    .counter-btn:hover {
        opacity: 0.8;
    }
    
    .counter-value {
        background: #0c0c0c;
        padding: 0.5rem 1.5rem;
        border-radius: 4px;
        color: #fff;
        font-weight: bold;
        min-width: 60px;
        text-align: center;
    }
    
    .plan-options {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .plan-option {
        background: #151515;
        padding: 1rem;
        border-radius: 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .plan-option:hover {
        background: #1a1a1a;
    }
    
    .plan-option.selected {
        background: #ff3e3e;
    }
    
    .plan-option.selected .plan-price {
        color: #fff;
    }
    
    .plan-price {
        color: #fff;
        font-weight: bold;
    }
    
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        backdrop-filter: blur(5px);
    }
    
    .modal {
        background: #0c0c0c;
        padding: 2rem;
        border-radius: 10px;
        width: 90%;
        max-width: 400px;
        position: relative;
    }
    
    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        opacity: 0.7;
        transition: opacity 0.3s;
    }
    
    .modal-close:hover {
        opacity: 1;
    }
    
    .modal-title {
        font-size: 2rem;
        color: #fff;
        text-align: center;
        margin-bottom: 2rem;
        font-weight: 800;
    }
    
    .modal-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .quantity-selector {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .quantity-btn {
        background: none;
        border: none;
        color: #ff3e3e;
        font-size: 1.5rem;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .quantity-value {
        background: #151515;
        padding: 0.5rem 2rem;
        border-radius: 4px;
        color: #fff;
        font-weight: bold;
    }
    
    .modal.active {
        display: block;
    }
    
    .modal-overlay.active {
        display: flex;
    }
    
    .modal-product-image {
        width: 200px;
        height: 250px;
        margin: 0 auto 2rem;
        border-radius: 10px;
        overflow: hidden;
        padding: 0;
        background: none;
    }
    
    .modal-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .buy-button {
        background: #ff3e3e;
        color: #fff;
        border: none;
        padding: 1rem;
        border-radius: 4px;
        width: 100%;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        margin-top: 1.5rem;
        text-transform: uppercase;
        transition: all 0.3s;
    }
    
    .buy-button:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }
    
    /* Login Section */
    .login-container {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        background: #0c0c0c;
        position: relative;
    }
    
    .login-box {
        background-color: #151515;
        padding: 2rem;
        border-radius: 15px;
        width: 100%;
        max-width: 380px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        position: relative;
        overflow: hidden;
    }
    
    .login-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #ff0000, #ff3e3e, #ff0000);
        animation: shine 3s linear infinite;
        background-size: 200% 100%;
    }
    
    @keyframes shine {
        0% {
            background-position: 200% 0;
        }
        100% {
            background-position: -200% 0;
        }
    }
    
    .login-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .login-header h1 {
        font-size: 2.5rem;
        color: #fff;
        font-weight: 800;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }
    
    .login-header p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
    }
    
    .login-form {
        margin-top: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input {
        width: 100%;
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid #222;
        background-color: #1a1a1a;
        color: #fff;
        font-size: 1rem;
        transition: all 0.3s;
        text-align: center;
    }
    
    .form-group input:focus {
        outline: none;
        border-color: #ff3e3e;
        background-color: #1f1f1f;
    }
    
    .login-button {
        width: 100%;
        padding: 1rem;
        border: none;
        border-radius: 8px;
        background: #ff3e3e;
        color: white;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .login-button:hover {
        background: #ff2525;
        transform: translateY(-2px);
    }
    
    .login-footer {
        margin-top: 1.5rem;
        text-align: center;
        color: #666;
        font-size: 0.9rem;
    }
    
    .login-footer a {
        color: #ff3e3e;
        text-decoration: none;
        font-weight: 600;
        margin-left: 0.5rem;
    }
    
    .login-footer a:hover {
        color: #ff2525;
    }
    /* Esconde só o cadeado, se quiser */
    .license-input-wrapper > i.fa-lock {
        display: none;
    }

    /* Garante que ícone do toggle password apareça */
    #togglePasswordLogin i {
        display: inline-block;
    }
    
    @media (max-width: 768px) {
        .login-container {
            padding: 1rem;
        }
    
        .login-box {
            padding: 2rem;
        }
    
        .login-header h1 {
            font-size: 2rem;
        }
    }
    
    /* Dashboard Styles */
    .dashboard-container {
        min-height: 100vh;
        background: #0c0c0c;
        display: flex;
    }
    
    .dashboard-sidebar {
        width: 200px;
        background: #151515;
        padding: 2rem;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    .sidebar-header {
        margin-bottom: 1.5rem;
    }
    
   .sidebar-header {
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
    padding: 0; /* remove o espaçamento extra que empurra o texto */
}

.sidebar-header h2 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center; /* centraliza o texto internamente */
    margin: 0; /* remove espaçamento externo */
}
    
    
    .dashboard-nav {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        color: #666;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s;
        font-weight: 500;
    }
    
    .nav-link:hover, .nav-link.active {
        background: rgba(255, 62, 62, 0.1);
        color: #ff3e3e;
    }
    
    .nav-link i {
        font-size: 1.2rem;
    }
    
    .dashboard-main {
        flex: 1;
        padding: 2rem;
    }
    
    .welcome-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .welcome-header i {
        color: #ff3e3e;
        font-size: 1.8rem;
    }
    
    .status-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .status-card {
        background: linear-gradient(145deg, #151515, #1a1a1a);
        padding: 1.8rem;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        overflow: hidden;
        transition: all 0.3s;
    }
    
    .status-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .card-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
        color: rgba(255, 62, 62, 0.2);
    }
    
    .status-card h3 {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }
    
    .status-card .value {
        color: #888;
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .status-card .value i {
        color: #ff3e3e;
        font-size: 1rem;
    }
    
    .action-button {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        margin-top: 1rem;
    }
    
    .action-button.reset {
        background: #ff3e3e;
        color: white;
    }
    
    .action-button.reset:hover {
        background: #ff2525;
        transform: translateY(-2px);
    }
    
    .action-button.download {
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
    }
    
    .action-button.download:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    @media (max-width: 1200px) {
        .status-cards {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .dashboard-container {
            flex-direction: column;
        }
    
        .dashboard-sidebar {
            width: 100%;
            padding: 1.5rem;
        }
    
        .status-cards {
            grid-template-columns: 1fr;
        }
    
        .welcome-header {
            font-size: 1.3rem;
        }
    }
    
    .status-card.server .card-icon,
    .status-card.maintenance .card-icon,
    .status-card.updates .card-icon {
        background: rgba(255, 62, 62, 0.1);
        color: #ff3e3e;
    }
    
    .status-card .value i {
        margin-right: 0.5rem;
        font-size: 0.9rem;
    }
    
    .status-card.server .value i.fa-circle {
        font-size: 0.8rem;
        margin-right: 0.5rem;
    }
    
    .status-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #fff;
    }
    
    .status-card .value {
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* Status Page Styles */
    .status-container {
        max-width: 1200px;
        margin: 12rem auto 0;
        padding: 0 2rem;
        min-height: calc(100vh - 100px);
        display: flex;
        flex-direction: column;
    }
    
    .status-header {
        text-align: center;
        padding: 4rem 2rem;
        background: #0c0c0c;
    }
    
    .status-header h1 {
        font-size: 2.5rem;
        color: #fff;
        margin-bottom: 1rem;
        font-weight: 800;
    }
    
    .status-header p {
        color: #666;
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .status-section {
        padding: 4rem 2rem;
        background: #151515;
    }
    
    .status-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .status-box {
        background: #1a1a1a;
        border-radius: 15px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .status-box:hover {
        background: #1f1f1f;
        transform: translateY(-5px);
    }
    
    .status-box-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .status-box-header i {
        font-size: 1.5rem;
        color: #666;
    }
    
    .status-box-header h3 {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .status-box-content {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .status-box-footer {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .status-box-footer span {
        color: #666;
        font-size: 0.9rem;
    }
    
    .status-box-footer i {
        color: #666;
        font-size: 1rem;
    }
    
    .status-tabs {
        max-width: 1200px;
        margin: 0 auto 3rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
        padding: 0 2rem;
    }
    
    .status-tab {
        padding: 1rem 2rem;
        background: #1a1a1a;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        color: #fff;
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .status-tab:hover {
        background: #1f1f1f;
    }
    
    .status-tab.active {
        background: #ff3e3e;
        border-color: #ff3e3e;
    }
    
    .status-content {
        display: none;
        animation: fadeIn 0.5s ease;
    }
    
    .status-content.active {
        display: grid;
    }
    
    @media (max-width: 768px) {
        .status-header {
            padding: 3rem 1.5rem;
        }
    
        .status-header h1 {
            font-size: 2rem;
        }
    
        .status-section {
            padding: 3rem 1.5rem;
        }
    }
    /* Reset e estilos globais */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes float {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    
    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        background-color: #0c0c0c;
        color: #ffffff;
    }
    
    /* Header e Navegação */
    header {
        background-color: transparent;
        padding: 1.5rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    header.scrolled {
        background-color: rgba(12, 12, 12, 0.8);
        backdrop-filter: blur(10px);
    }
    
    nav {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
        
    }
    
    .logo {
        font-size: 1.8rem;
        font-weight: 800;
        color: #fff;
        animation: fadeIn 1s ease;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 1%;
        white-space: nowrap;
    }
    
    .logo img {
        margin-right: 5%;
    }


    .logo span {
        color: #ff3e3e;
        font-weight: 800;
    }
    
    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-links li {
        animation: fadeIn 1s ease;
        animation-fill-mode: both;
    }
    
    .nav-links li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links li:nth-child(4) { animation-delay: 0.4s; }
    .nav-links li:nth-child(5) { animation-delay: 0.5s; }
    
    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s;
        text-transform: uppercase;
    }
    
    .nav-links a:hover {
        color: #fff;
        opacity: 0.7;
    }
    
    .discord-btn {
        background-color: #7289da;
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
    }
    
    .discord-btn:hover {
        background-color: #5f73bc;
    }
    
    .hero-buttons .btn {
        font-size: 10px; /* Reduz o tamanho do texto */
        padding: 10px 10px; /* Ajusta o espaçamento interno */
        min-width: 50px; /* Ajusta a largura mínima */
    }

    .hero-buttons .btn.fas::before {
        margin-right: 8px; /* Espaço à direita do ícone */
    }
    .hero-buttons .btn.fas {
        font-size: 9px; /* Tamanho personalizado (padrão Font Awesome é 14px) */
    }
    /* Menu Mobile */
    .menu-btn {
        display: none;
        cursor: pointer;
        font-size: 1.5rem;
        color: #fff;
        background: none;
        border: none;
        padding: 0.5rem;
        transition: all 0.3s;
        z-index: 1001;
    }

    .menu-btn {
        position: absolute; /* Ou 'fixed' se quiser que fique sempre visível */
        right: 20px; /* Ajuste conforme necessário */
        top: 10px; /* Ajuste conforme necessário */
    }
    
    .menu-btn:hover {
        opacity: 0.8;
    }
    
    /* Hero Section */
    .hero {
        position: relative;
        padding: 8rem 2rem;
        text-align: left;
        background-color: #0c0c0c;
        overflow: hidden;
        display: flex;
        align-items: center;
        min-height: 100vh;
    }
    
    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 4rem;
        z-index: 1;
    }
    
    .hero-text {
        max-width: 800px;
        text-align: left;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: #fff;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        letter-spacing: 1px;
    }
    
    .hero p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 2rem;
        line-height: 1.6;
        max-width: 600px;
    }
    
    .hero-image {
        flex: 1;
        max-width: 450px;
        position: relative;
        margin-right: -2rem;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        transform: scale(0.9);
    }
    
    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: flex-start;
    }
    
    .btn {
        display: inline-block;
        padding: 0.8rem 2.5rem;
        background-color: #ff3e3e;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
        transition: all 0.3s;
        font-size: 0.95rem;
        min-width: 160px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(255, 62, 62, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 62, 62, 0.4);
        background-color: #ff2525;
    }
    
    .btn.secondary {
        background-color: transparent;
        border: 2px solid #ff3e3e;
    }
    
    /* Features Section */
    .features {
        padding: 8rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        background-color: #0c0c0c;
    }
    
    .feature-card {
        background-color: #151515;
        padding: 2.5rem;
        border-radius: 10px;
        text-align: center;
        transition: all 0.3s;
        border: 1px solid #222;
        animation: float 6s ease-in-out infinite;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .feature-card i {
        font-size: 2.5rem;
        color: #ff3e3e;
        margin-bottom: 1.5rem;
    }
    
    .feature-card h3 {
        margin-bottom: 1rem;
        color: #fff;
        font-size: 1.5rem;
    }
    
    .feature-card p {
        color: #888;
        font-size: 0.95rem;
    }
    
    /* Pricing Section */
    .pricing {
        padding: 8rem 2rem;
        background-color: #0c0c0c;
    }
    
    .pricing h2 {
        text-align: center;
        margin-bottom: 4rem;
        font-size: 3rem;
        font-weight: 800;
        color: #fff;
        animation: fadeIn 1s ease;
    }
    

    
    .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.price-card {
    width: 250px;
}

    .price-card {
         background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
        background-color: #151515;
        
        
      
        position: relative;
        border: 1px solid #222;
        transition: all 0.3s;
        display: flex;
        flex-direction: column;
        min-height: 500px;
        animation: fadeIn 1s ease;
        animation-fill-mode: both;
    }
    

    /* Etiqueta MAIS POPULAR */
    .tag-popular {
        position: absolute;
        top: -5px;
        right: -3px;
        background-color: #ff5a5f;
        color: #fff;
        font-size: 0.9rem;
        font-weight: bold;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    /* Torna o card destacado mais visível */
    .price-card.popular {
        border: 100px solid #ff5a5f;
        box-shadow: 0 0 100px rgba(255, 90, 95, 0.4);
        position: relative;
        transform: scale(3.03);
    }


    .price-card:nth-child(1) { animation-delay: 0.1s; }
    .price-card:nth-child(2) { animation-delay: 0.2s; }
    .price-card:nth-child(3) { animation-delay: 0.3s; }
    .price-card:nth-child(4) { animation-delay: 0.4s; }
    
    .price-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .price-card .product-image {
        width: 100%;
        height: 250px;
        margin-bottom: 1.5rem;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }
    
    .price-card .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform: perspective(800px) rotateY(-15deg);
        transition: transform 0.3s;
        background-color: #0c0c0c;
        padding: 1rem;
    }
    
    .price-card:hover .product-image img {
        transform: perspective(800px) rotateY(0deg);
    }
    
    .price-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
        color: #fff;
    }
    
    .price-card .subtitle {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
    }
    
    .price-card ul {
        list-style: none;
        margin-bottom: 2rem;
        flex-grow: 1;
    }
    
    .price-card li {
        margin-bottom: 0.8rem;
        color: #888;
        font-size: 0.9rem;
    }
    
    .price-card .login-btn {
        display: inline-block;
        padding: 0.5rem 2rem;
        background-color: transparent;
        border: 1px solid #333;
        color: #666;
        text-decoration: none;
        border-radius: 4px;
        margin-top: 1rem;
        transition: all 0.3s;
    }
    
    .price-card .login-btn:hover {
        border-color: rgba(255, 255, 255, 0.2);
        color: #fff;
    }
    
    .price-card .choose-plan {
        display: inline-block;
        padding: 0.8rem 2rem;
        background-color: #ff3e3e;
        color: white;
        text-decoration: none;
        border-radius: 4px;
        margin-top: auto;
        transition: all 0.3s;
        text-transform: uppercase;
        font-weight: bold;
        width: 100%;
    }
    
    .price-card .choose-plan:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }
    
    /* FAQ Section */
    .faq {
        padding: 8rem 2rem;
        background-color: #0c0c0c;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .faq h2 {
        text-align: center;
        margin-bottom: 4rem;
        font-size: 3rem;
        font-weight: 800;
        color: #fff;
        animation: fadeIn 1s ease;
    }
    
    .faq-item {
        background-color: #151515;
        border: 1px solid #222;
        border-radius: 10px;
        margin-bottom: 1rem;
        overflow: hidden;
        animation: fadeIn 1s ease;
        animation-fill-mode: both;
    }
    
    .faq-item:nth-child(1) { animation-delay: 0.1s; }
    .faq-item:nth-child(2) { animation-delay: 0.2s; }
    .faq-item:nth-child(3) { animation-delay: 0.3s; }
    .faq-item:nth-child(4) { animation-delay: 0.4s; }
    
    .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        transition: all 0.3s;
    }

    #niggas {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            position: relative; /* Permite posicionamento absoluto interno */
            flex: 1;
            min-width: 100px;
            text-align: center;
            gap: 10px;
    }
    
    .faq-question:hover {
        background-color: #1a1a1a;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        color: #fff;
        margin: 0;
    }
    
    .faq-question i {
        color: #666;
        transition: transform 0.3s;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        color: #888;
        display: flex;
    }
    
    .faq-item.active .faq-question {
        background-color: #1a1a1a;
    }
    
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
        max-height: 500px;
    }
    
    /* Footer */
    footer {
        background-color: #0c0c0c;
        padding: 3rem 2rem;
        text-align: center;
        border-top: 1px solid #222;
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        animation: fadeIn 1s ease;
    }
    
    .social-links {
        margin-top: 1.5rem;
    }
    
    .social-links a {
        color: #fff;
        font-size: 1.8rem;
        margin: 0 1rem;
        transition: all 0.3s;
    }
    
    .social-links a:hover {
        opacity: 0.7;
    }
    
    /* Responsividade */
    @media (max-width: 1200px) {
        .pricing-cards {
                display: flex;
    flex-wrap: wrap;           /* permite quebrar linha quando faltar espaço */
    justify-content: center;   /* centraliza os cards */
    gap: 20px;  
            grid-template-columns: repeat(2, 1fr);
        }
    }


    @media (max-width: 1200px) {
        .faq-question {
            flex-direction: column;
            align-items: center
        }
    
        .faq-question h2 {
            width: 100%;
            max-width: 300px;
            text-align: center;
            margin-right: 0;
        }
        
        #nigga {
            order: 5;
            margin-top: 15px;
        }

        #niggas {
            gap: 0
        }
    }








    
    @media (max-width: 1158px) {
        /* Header e Navegação */
        header {
            padding: 1rem 0;
            background: rgba(12, 12, 12, 0.95);
        }

        #nigga {
            order: 5;
            margin-top: 15px;
        }




        nav {
            padding: 0 1rem;
        }

        .logo {
            display: none;
        }

        .menu-btn {
            display: block;
        }

        .nav-links {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: rgba(12, 12, 12, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem;
            flex-direction: column;
            gap: 0.5rem;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .nav-links.active {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .nav-links li {
            width: 100%;
        }

        .nav-links a {
            display: block;
            padding: 1rem;
            width: 100%;
            text-align: center;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            opacity: 1;
        }

        /* Status Container */
        .status-container {
            margin-top: 8rem;
            padding: 0 1.5rem;
        }

        .status-header h1 {
            font-size: 2.2rem;
        }

        .status-section h2 {
            font-size: 2rem;
        }

        .status-item {
            padding: 1.2rem 1.5rem;
        }

        .status-info {
            gap: 1.5rem;
        }

        /* Footer */
        .status-footer {
            padding: 1.5rem 1rem;
        }

        .footer-content {
            padding: 1rem 0;
        }

        .social-links {
            margin-top: 1rem;
        }

        .social-links a {
            font-size: 1.5rem;
            margin: 0 0.8rem;
        }
    }
    
    @media (max-width: 480px) {
        .status-container {
            margin-top: 5rem;
        }

        .status-header h1 {
            font-size: 1.8rem;
        }

        .status-tabs {
            padding: 0 0.5rem;
        }

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

        .status-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.8rem;
            margin: 0 0.5rem;
        }

        .status-info {
            width: 100%;
            justify-content: space-between;
            gap: 1rem;
        }

        .status-badge {
            min-width: 70px;
            font-size: 0.85rem;
        }

        .footer-content {
            padding: 0.5rem 0;
        }
    }

    /* Ajustes para telas muito altas */
    @media (min-height: 1000px) {
        .status-container {
            min-height: calc(100vh - 100px);
        }

        .dashboard-container {
            min-height: 100vh;
        }
    }
    
    /* Better Workflow Section */
    .workflow {
        padding: 8rem 2rem;
        background-color: #0c0c0c;
    }
    
    .workflow-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .workflow-content {
        animation: fadeIn 1s ease;
    }
    
    .workflow-content h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 3rem;
        color: #fff;
    }
    
    .workflow-features {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .workflow-feature {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    .workflow-feature i {
        font-size: 1.5rem;
        color: #ff3e3e;
        width: 40px;
    }
    
    .workflow-feature p {
        color: #888;
        font-size: 1rem;
        margin: 0;
    }
    
    /* Code Editor */
    .code-editor {
        background-color: #1a1f2c;
        border-radius: 10px;
        overflow: hidden;
        animation: fadeIn 1s ease 0.2s;
        animation-fill-mode: both;
        min-height: 400px;
        display: flex;
        flex-direction: column;
    }
    
    .code-header {
        background-color: #ff3e3e;
        padding: 1rem 1.5rem;
        color: #fff;
        font-size: 1rem;
        font-family: monospace;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .copy-btn {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        padding: 0.3rem 1rem;
        color: #fff;
        border-radius: 4px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.3s;
    }
    
    .copy-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .code-content {
        padding: 2rem;
        font-family: monospace;
        line-height: 3;
        font-size: 1.2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .code-content .function {
        color: #569cd6;
    }
    
    .code-content .string {
        color: #ce9178;
    }
    
    .code-content .keyword {
        color: #c586c0;
    }
    
    .code-line {
        margin-bottom: 1rem;
        display: block;
    }
    
    /* Video Section */
    .video-section {
        padding: 8rem 2rem;
        background-color: #0c0c0c;
        position: relative;
    }
    
    .video-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .video-wrapper {
        position: relative;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        aspect-ratio: 16/9;
        background: #151515;
        display: block;
        text-decoration: none;
    }
    
    .video-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .video-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background-color: #ff3e3e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .video-play:hover {
        transform: translate(-50%, -50%) scale(1.1);
        background-color: #ff2525;
    }
    
    .video-play i {
        color: #fff;
        font-size: 1.8rem;
        margin-left: 4px;
    }
    
    .video-content {
        animation: fadeIn 1s ease;
    }
    
    .video-content::before {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background-color: #ff3e3e;
        margin-bottom: 1.5rem;
    }
    
    .video-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 2rem;
        color: #fff;
    }
    
    .video-features {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .video-feature {
        color: #888;
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    @media (max-width: 1200px) {
        .video-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
    }
    
    @media (max-width: 768px) {
        .video-section {
            display: none;
        }
    }
    
    .plan-selector {
        background: #151515;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .plan-counter {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }
    
    .counter-controls {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .counter-btn {
        background: none;
        border: none;
        color: #ff3e3e;
        font-size: 1.5rem;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    
    .counter-btn:hover {
        opacity: 0.8;
    }
    
    .counter-value {
        background: #0c0c0c;
        padding: 0.5rem 1.5rem;
        border-radius: 4px;
        color: #fff;
        font-weight: bold;
        min-width: 60px;
        text-align: center;
    }
    
    .plan-options {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .plan-option {
        background: #151515;
        padding: 1rem;
        border-radius: 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .plan-option:hover {
        background: #1a1a1a;
    }
    
    .plan-option.selected {
        background: #ff3e3e;
    }
    
    .plan-option.selected .plan-price {
        color: #fff;
    }
    
    .plan-price {
        color: #fff;
        font-weight: bold;
    }
    
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        backdrop-filter: blur(5px);
    }
    
    .modal {
        background: #0c0c0c;
        padding: 2rem;
        border-radius: 10px;
        width: 90%;
        max-width: 400px;
        position: relative;
    }
    
    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        opacity: 0.7;
        transition: opacity 0.3s;
    }
    
    .modal-close:hover {
        opacity: 1;
    }
    
    .modal-title {
        font-size: 2rem;
        color: #fff;
        text-align: center;
        margin-bottom: 2rem;
        font-weight: 800;
    }
    
    .modal-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .quantity-selector {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .quantity-btn {
        background: none;
        border: none;
        color: #ff3e3e;
        font-size: 1.5rem;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .quantity-value {
        background: #151515;
        padding: 0.5rem 2rem;
        border-radius: 4px;
        color: #fff;
        font-weight: bold;
    }
    
    .modal.active {
        display: block;
    }
    
    .modal-overlay.active {
        display: flex;
    }
    
    .modal-product-image {
        width: 200px;
        height: 250px;
        margin: 0 auto 2rem;
        border-radius: 10px;
        overflow: hidden;
        padding: 0;
        background: none;
    }
    
    .modal-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .buy-button {
        background: #ff3e3e;
        color: #fff;
        border: none;
        padding: 1rem;
        border-radius: 4px;
        width: 100%;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        margin-top: 1.5rem;
        text-transform: uppercase;
        transition: all 0.3s;
    }
    
    .buy-button:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }
    
    /* Login Section */
    .login-container {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        background: transparent;
        position: relative;
    }
    
    .login-box {
        background-color: #151515;
        padding: 2rem;
        border-radius: 15px;
        width: 100%;
        max-width: 380px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        position: relative;
        overflow: hidden;
    }
    
    .login-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #ff0000, #ff3e3e, #ff0000);
        animation: shine 3s linear infinite;
        background-size: 200% 100%;
    }
    
    @keyframes shine {
        0% {
            background-position: 200% 0;
        }
        100% {
            background-position: -200% 0;
        }
    }
    
    .login-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .login-header h1 {
        font-size: 2.5rem;
        color: #fff;
        font-weight: 800;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }
    
    .login-header p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
    }
    
    .login-form {
        margin-top: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input {
        width: 100%;
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid #222;
        background-color: #1a1a1a;
        color: #fff;
        font-size: 1rem;
        transition: all 0.3s;
        text-align: center;
    }
    
    .form-group input:focus {
        outline: none;
        border-color: #ff3e3e;
        background-color: #1f1f1f;
    }
    
    .login-button {
        width: 100%;
        padding: 1rem;
        border: none;
        border-radius: 8px;
        background: #ff3e3e;
        color: white;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .login-button:hover {
        background: #ff2525;
        transform: translateY(-2px);
    }
    
    .login-footer {
        margin-top: 1.5rem;
        text-align: center;
        color: #666;
        font-size: 0.9rem;
    }
    
    .login-footer a {
        color: #ff3e3e;
        text-decoration: none;
        font-weight: 600;
        margin-left: 0.5rem;
    }
    
    .login-footer a:hover {
        color: #ff2525;
    }
    
    .license-input-wrapper i {
        display: none;
    }
    
    @media (max-width: 768px) {
        .login-container {
            padding: 1rem;
        }
    
        .login-box {
            padding: 2rem;
        }
    
        .login-header h1 {
            font-size: 2rem;
        }
    }
    
    /* Dashboard Styles */
    .dashboard-container {
        min-height: 100vh;
        background: #0c0c0c;
        display: flex;
    }
    
    .dashboard-sidebar {
        width: 200px;
        background: #151515;
        padding: 2rem;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    .sidebar-header {
        margin-bottom: 1.5rem;
    }
    
    .sidebar-header h2 {
        color: #fff;
        font-size: 1.1rem;
        font-weight: 500;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        letter-spacing: 0.5px;
    }
    
    .dashboard-nav {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        color: #666;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s;
        font-weight: 500;
    }
    
    .nav-link:hover, .nav-link.active {
        background: rgba(255, 62, 62, 0.1);
        color: #ff3e3e;
    }
    
    .nav-link i {
        font-size: 1.2rem;
    }
    
    .dashboard-main {
        flex: 1;
        padding: 2rem;
    }
    
    .welcome-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .welcome-header i {
        color: #ff3e3e;
        font-size: 1.8rem;
    }
    
    .status-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .status-card {
        background: linear-gradient(145deg, #151515, #1a1a1a);
        padding: 1.8rem;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        overflow: hidden;
        transition: all 0.3s;
    }
    
    .status-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .card-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
        color: rgba(255, 62, 62, 0.2);
    }
    
    .status-card h3 {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }
    
    .status-card .value {
        color: #888;
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .status-card .value i {
        color: #ff3e3e;
        font-size: 1rem;
    }
    
    .action-button {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        margin-top: 1rem;
    }
    
    .action-button.reset {
        background: #ff3e3e;
        color: white;
    }
    
    .action-button.reset:hover {
        background: #ff2525;
        transform: translateY(-2px);
    }
    
    .action-button.download {
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
    }
    
    .action-button.download:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    @media (max-width: 1200px) {
        .status-cards {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .dashboard-container {
            flex-direction: column;
        }
    
        .dashboard-sidebar {
            width: 100%;
            padding: 1.5rem;
        }
    
        .status-cards {
            grid-template-columns: 1fr;
        }
    
        .welcome-header {
            font-size: 1.3rem;
        }
    }
    
    .status-card.server .card-icon,
    .status-card.maintenance .card-icon,
    .status-card.updates .card-icon {
        background: rgba(255, 62, 62, 0.1);
        color: #ff3e3e;
    }
    
    .status-card .value i {
        margin-right: 0.5rem;
        font-size: 0.9rem;
    }
    
    .status-card.server .value i.fa-circle {
        font-size: 0.8rem;
        margin-right: 0.5rem;
    }
    
    .status-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #fff;
    }
    
    .status-card .value {
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* Status Page Styles */
    .status-container {
        max-width: 1200px;
        margin: 12rem auto 0;
        padding: 0 2rem;
        min-height: calc(100vh - 100px);
        display: flex;
        flex-direction: column;
    }
    
    .status-header {
        text-align: center;
        padding: 4rem 2rem;
        background: #0c0c0c;
    }
    
    .status-header h1 {
        font-size: 2.5rem;
        color: #fff;
        margin-bottom: 1rem;
        font-weight: 800;
    }
    
    .status-header p {
        color: #666;
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .status-section {
        padding: 4rem 2rem;
        background: #151515;
    }
    
    .status-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .status-box {
        background: #1a1a1a;
        border-radius: 15px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .status-box:hover {
        background: #1f1f1f;
        transform: translateY(-5px);
    }
    
    .status-box-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .status-box-header i {
        font-size: 1.5rem;
        color: #666;
    }
    
    .status-box-header h3 {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .status-box-content {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .status-box-footer {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .status-box-footer span {
        color: #666;
        font-size: 0.9rem;
    }
    
    .status-box-footer i {
        color: #666;
        font-size: 1rem;
    }
    
    .status-tabs {
        max-width: 1200px;
        margin: 0 auto 3rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
        padding: 0 2rem;
    }
    
    .status-tab {
        padding: 1rem 2rem;
        background: #1a1a1a;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        color: #fff;
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .status-tab:hover {
        background: #1f1f1f;
    }
    
    .status-tab.active {
        background: #ff3e3e;
        border-color: #ff3e3e;
    }
    
    .status-content {
        display: none;
        animation: fadeIn 0.5s ease;
    }
    
    .status-content.active {
        display: grid;
    }
    
    @media (max-width: 768px) {
        .status-header {
            padding: 3rem 1.5rem;
        }
    
        .status-header h1 {
            font-size: 2rem;
        }
    
        .status-section {
            padding: 3rem 1.5rem;
        }
    }
    
    @media (max-width: 480px) {
        .status-tab {
            min-width: calc(50% - 0.5rem);
        }
    }
    
    /* Footer */
    .status-footer {
        background: #0c0c0c;
        padding: 4rem 2rem;
        color: #666;
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 4rem;
        margin-bottom: 3rem;
    }
    
    .footer-section h4 {
        color: #fff;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
    
    .footer-section p {
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 0.8rem;
    }
    
    .footer-links a {
        color: #666;
        text-decoration: none;
        transition: color 0.3s;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer-links a:hover {
        color: #ff3e3e;
    }
    
    .footer-links i {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-social {
        display: flex;
        gap: 1rem;
    }
    
    .footer-social a {
        color: #666;
        font-size: 1.2rem;
        transition: color 0.3s;
    }
    
    .footer-social a:hover {
        color: #ff3e3e;
    }
    
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    
        .footer-bottom {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
    }

    /* Dashboard Content */
    .dashboard-content {
        flex: 1;
        padding: 2rem;
        background: #0c0c0c;
    }

    .dashboard-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dashboard-title {
        font-size: 2rem;
        color: #fff;
        font-weight: 700;
    }

    .dashboard-subtitle {
        color: #666;
        margin-top: 0.5rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        background: #151515;
        padding: 1.5rem;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

    .stat-title {
        color: #666;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 62, 62, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ff3e3e;
    }

    .stat-value {
        font-size: 1.8rem;
        color: #fff;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .stat-description {
        color: #666;
        font-size: 0.9rem;
    }

    /* Activity Feed */
    .activity-feed {
        background: #151515;
        padding: 1.5rem;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .activity-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .activity-title {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .activity-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .activity-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .activity-icon {
        width: 36px;
        height: 36px;
        background: rgba(255, 62, 62, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ff3e3e;
    }
    
    .activity-content {
        flex: 1;
    }
    
    .activity-text {
        color: #fff;
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .activity-time {
        color: #666;
        font-size: 0.8rem;
    }

    /* Status Page Additional Styles */
    .status-overview {
        background: #151515;
        padding: 2rem;
        border-radius: 10px;
        margin-bottom: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .status-overview-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }

    .status-overview-title {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .status-overview-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .status-overview-item {
        text-align: center;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .status-overview-item i {
        font-size: 2rem;
        color: #ff3e3e;
        margin-bottom: 1rem;
    }

    .status-overview-item h4 {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .status-overview-item p {
        color: #666;
        font-size: 0.9rem;
    }

    /* Index Additional Styles */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
    }

    .feature-item {
        background: #151515;
        padding: 2rem;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s;
    }

    .feature-item:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 62, 62, 0.3);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 62, 62, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
        color: #ff3e3e;
    }

    .feature-item h3 {
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .feature-item p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Testimonials Section */
    .testimonials {
        padding: 8rem 2rem;
        background: #0c0c0c;
    }
    
    .testimonials-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .testimonials-header h2 {
        font-size: 2.5rem;
        color: #fff;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .testimonials-header p {
        color: #666;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        background: #151515;
        padding: 2rem;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .testimonial-content {
        color: #fff;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author-info h4 {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .author-info p {
        color: #666;
        font-size: 0.9rem;
    }

    /* Call to Action Section */
    .cta-section {
        padding: 6rem 2rem;
        background: linear-gradient(to right, #ff3e3e, #ff2525);
        text-align: center;
    }

    .cta-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        color: #fff;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }
    
    .cta-content p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    .cta-btn {
        padding: 1rem 2.5rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s;
        text-decoration: none;
    }

    .cta-btn.primary {
        background: #fff;
        color: #ff3e3e;
    }

    .cta-btn.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .cta-btn.secondary {
        background: transparent;
        color: #fff;
        border: 2px solid #fff;
    }

    .cta-btn.secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

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

        .cta-buttons {
            flex-direction: column;
        }

        .cta-btn {
        width: 100%;
    }
    
        .testimonials {
            padding: 4rem 1.5rem;
        }

        .testimonials-header h2 {
            font-size: 2rem;
        }
    }

    /* Additional Utility Classes */
    .text-gradient {
        background: linear-gradient(45deg, #ff3e3e, #ff2525);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .bg-gradient {
        background: linear-gradient(45deg, #ff3e3e, #ff2525);
    }

    .shadow-lg {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .rounded-lg {
        border-radius: 10px;
    }

    .border-gradient {
        border: 2px solid;
        border-image: linear-gradient(45deg, #ff3e3e, #ff2525) 1;
    }

    /* Animation Classes */
    .fade-in {
        animation: fadeIn 1s ease;
    }

    .slide-up {
        animation: slideUp 0.5s ease;
    }

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

    .slide-in {
        animation: slideIn 0.5s ease;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Additional Components */
    .badge {
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .badge-primary {
        background: rgba(255, 62, 62, 0.1);
        color: #ff3e3e;
    }

    .badge-success {
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
    }

    .badge-warning {
        background: rgba(234, 179, 8, 0.1);
        color: #eab308;
    }

    .tooltip {
        position: relative;
        display: inline-block;
    }

    .tooltip:hover::before {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem 1rem;
        background: #151515;
        color: #fff;
        font-size: 0.8rem;
        border-radius: 4px;
        white-space: nowrap;
        z-index: 10;
    }

    .tooltip:hover::after {
        content: '';
        position: absolute;
        bottom: calc(100% - 5px);
        left: 50%;
        transform: translateX(-50%);
        border-width: 5px;
        border-style: solid;
        border-color: #151515 transparent transparent transparent;
    }

    /* Loading States */
    .loading {
        position: relative;
        overflow: hidden;
    }

    .loading::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
        0% {
            transform: translateX(-100%);
        }
        100% {
            transform: translateX(100%);
        }
    }

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

    ::-webkit-scrollbar-track {
        background: #0c0c0c;
    }

    ::-webkit-scrollbar-thumb {
        background: #333;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #444;
    }

    /* Mobile Menu Improvements */
    @media (max-width: 768px) {
        .menu-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .menu-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .nav-links {
            padding: 1rem;
        }

        .nav-links li {
            opacity: 0;
            transform: translateY(10px);
            animation: slideIn 0.3s forwards;
        }

        .nav-links.active li {
            opacity: 1;
            transform: translateY(0);
        }

        .nav-links li:nth-child(1) { animation-delay: 0.1s; }
        .nav-links li:nth-child(2) { animation-delay: 0.2s; }
        .nav-links li:nth-child(3) { animation-delay: 0.3s; }
        .nav-links li:nth-child(4) { animation-delay: 0.4s; }
    }

    /* Print Styles */
    @media print {
        body {
            background: #fff;
            color: #000;
        }

        header,
        footer,
        .nav-links,
        .menu-btn {
            display: none;
        }

        .container {
            width: 100%;
            max-width: none;
            padding: 0;
            margin: 0;
        }

        a {
            text-decoration: none;
            color: #000;
        }

        .card,
        .box,
        .section {
            break-inside: avoid;
            page-break-inside: avoid;
        }
    }

    /* Mobile Styles - Global */
    @media (max-width: 768px) {
        /* Global Typography */
        h1 { font-size: 2rem !important; }
        h2 { font-size: 1.8rem !important; }
        h3 { font-size: 1.5rem !important; }
        
        /* Container Padding */
        .container, section {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }

        /* Hero Section Mobile */
        .hero {
            padding: 6rem 1rem;
            min-height: auto;
        }

        .hero-content {
            flex-direction: column;
            gap: 2rem;
            text-align: center;
        }

        .hero-text {
            text-align: center;
        }

        .hero-buttons {
            justify-content: center;
        }

        .hero-image {
            margin-right: 0;
            max-width: 100%;
        }

        /* Features Mobile */
        .features {
            padding: 4rem 1rem;
            grid-template-columns: 1fr;
        }

        /* Pricing Mobile */
        .pricing {
            padding: 4rem 1rem;
        }

        .pricing-cards {
                display: flex;
    flex-wrap: wrap;           /* permite quebrar linha quando faltar espaço */
    justify-content: center;   /* centraliza os cards */
    gap: 20px;  
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        /* FAQ Mobile */
        .faq {
            padding: 4rem 1rem;
        }

        /* Dashboard Mobile Improvements */
        .dashboard-container {
            flex-direction: column;
        }

        .dashboard-sidebar {
            width: 100%;
            min-height: auto;
            padding: 1rem;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 100;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .dashboard-sidebar.active {
            transform: translateX(0);
        }

        .dashboard-main {
            margin-top: 60px;
            padding: 1rem;
        }

        .dashboard-nav {
            margin-top: 1rem;
        }

        .nav-link {
            padding: 0.8rem 1rem;
        }

        .status-cards {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        /* Status Page Mobile */
        .status-container {
            margin-top: 4rem;
            padding: 1rem;
        }

        .status-header {
            padding: 2rem 1rem;
        }

        .status-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .status-box {
            padding: 1.5rem;
        }

        .status-tabs {
            padding: 0 1rem;
            flex-wrap: wrap;
        }

        .status-tab {
            width: calc(50% - 0.5rem);
            padding: 0.8rem;
            font-size: 0.85rem;
        }

        /* Mobile Menu Button for Dashboard */
        .dashboard-menu-btn {
            display: block;
            position: fixed;
            top: 1rem;
            left: 1rem;
            z-index: 101;
            width: 40px;
            height: 40px;
            background: rgba(255, 62, 62, 0.1);
            border: none;
            border-radius: 8px;
            color: #ff3e3e;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dashboard-menu-btn:hover {
            background: rgba(255, 62, 62, 0.2);
        }

        .dashboard-menu-btn.active {
            left: calc(100% - 4rem);
        }

        /* Activity Feed Mobile */
        .activity-feed {
            margin-top: 1rem;
        }

        .activity-item {
            flex-direction: column;
            gap: 0.5rem;
        }

        .activity-icon {
            width: 32px;
            height: 32px;
        }
    }

    /* Small Mobile Devices */
    @media (max-width: 480px) {
        /* Typography */
        h1 { font-size: 1.8rem !important; }
        h2 { font-size: 1.5rem !important; }
        h3 { font-size: 1.2rem !important; }

        /* Buttons */
        .btn, .action-button {
            width: 100%;
            text-align: center;
            padding: 0.8rem 1rem;
        }

        /* Hero Section */
        .hero-buttons {
            flex-direction: column;
            gap: 1rem;
        }

        /* Dashboard */
        .welcome-header {
            flex-direction: column;
            text-align: center;
            gap: 0.5rem;
        }

        .stat-card {
            padding: 1rem;
        }

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

        /* Status */
        .status-box-header {
            flex-direction: column;
            text-align: center;
        }

        .status-box-footer {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }

    /* Tablet Devices */
    @media (min-width: 769px) and (max-width: 1024px) {
        .status-cards, .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .dashboard-sidebar {
            width: 180px;
        }

        .nav-link {
            padding: 0.8rem;
            font-size: 0.9rem;
        }
    }

    /* Dashboard Improvements */
        .dashboard-container {
        display: flex;
            min-height: 100vh;
        background: #0c0c0c;
    }

    .dashboard-sidebar {
        background: #151515;
        width: 250px;
        padding: 2rem;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        position: fixed;
        height: 100vh;
        overflow-y: auto;
    }

    .dashboard-main {
        flex: 1;
        margin-left: 250px;
        padding: 2rem;
    }

    .welcome-header {
        background: #151515;
        padding: 2rem;
        border-radius: 10px;
        margin-bottom: 2rem;
    }

    .stats-grid {
        margin-bottom: 2rem;
    }

    .stat-card {
        background: #151515;
        padding: 2rem;
        border-radius: 10px;
        transition: all 0.3s;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
    .workflow {
            display: none;
        }
    }   


    @media (max-width: 1024px) { /* Oculta em telas menores que 1024px */
        img[src="images/inicio.png"] {
            display: none;
        }
    }
    
    @media (min-width: 1025px) { /* Posiciona à direita em telas maiores */
        img[src="images/inicio.png"] {
            float: right;
        }
    }
    

    /* Ajustando o cabeçalho do status */
.status-header {
    text-align: center;
    margin-bottom: 100px; /* Aumenta o espaço abaixo */
}

/* Tornando o título maior */
.status-header h1 {
    font-size: 32px; /* Aumenta o tamanho */
    font-weight: bold;
    margin-bottom: 100px; /* Aumenta o espaço abaixo */
}

/* Tornando a descrição maior */
.status-header p {
    font-size: 18px; /* Aumenta o tamanho */
    color: #aaa;
    margin-top: 10px; /* Move um pouco mais para baixo */
}


/* Estilizando o container principal */
.status-container {
    width: 80%;
    margin: 40px auto;
    text-align: center;
        color: #fff;
    }
    
/* Cabeçalho do status */
.status-header h1 {
    font-size: 50px;
    margin-bottom: 30px; /* Aumenta o espaço abaixo do título */
    padding-top: 20px; /* Move o título mais para baixo */
}

.status-header p {
    font-size: 16px;
    color: #aaa;
}

/* Estilizando os blocos de status */
.status-box {
    background: #181818;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.status-box h2 {
    font-size: 18px;
    margin: 0;
    justify-self: start;
}

.status-box p {
    font-size: 14px;
    color: #888;
    margin: 0;
    justify-self: center;
}

.status-online {
    background: #38be02;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    justify-self: end;
    white-space: nowrap;
}
.status-offline {
    background: #ff0000;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    justify-self: end;
    white-space: nowrap;
}
.status-update {
    background: #dbdf02;
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    justify-self: end;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .server-card {
        width: 95%;
        margin: 15px auto;
        padding: 20px;
        text-align: center;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .server-card h2 {
        font-size: 22px; /* Aumenta ainda mais o título */
        font-weight: bold;
    }

    .server-card .status {
        font-size: 18px; /* Ajusta o tamanho do status */
        padding: 12px 22px;
        font-weight: bold;
    }

    .server-card .last-updated {
        font-size: 16px; /* Aumenta mais o tamanho do texto "Last updated" */
        font-weight: 500;
        margin-top: 8px;
    }

    .status-box {
        display: block;
        padding: 15px;
        text-align: left;
    }

    .status-online {
        display: block;
        margin: 12px auto 0;
        width: fit-content;
        white-space: normal;
        text-align: center;
    }

    .status-update {
        display: block;
        margin: 12px auto 0;
        width: fit-content;
        white-space: normal;
        text-align: center;
    }

    .status-offline {
        display: block;
        margin: 12px auto 0;
        width: fit-content;
        white-space: normal;
        text-align: center;
    }

    .status-box p {
        margin-top: 4px;
        justify-self: center;
        font-size: clamp(12px, 3vw, 14px);
    }

    .status-box h2 {
        justify-self: center;
        font-size: clamp(16px, 4vw, 18px);
    }
}
.nav-button, .livechat, .fix-errors, .logout {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 6px;
}

.nav-button i, .livechat i, .fix-errors i, .logout i {
    font-size: 1rem;
    margin-right: 6px; /* só espaço entre ícone e texto */
    /* removido margin-left negativo */
}

.nav-button:hover, .livechat:hover, .fix-errors:hover, .logout:hover {
    transform: scale(1.03);
}

.logout {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff4d4d;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    margin-left: -20px; /* move só o botão inteiro */
}

.logout:hover {
    background-color: #cc0000;
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(255, 2, 2, 0.582);
}

.nav-button {
    display: flex;
    align-items: center;
    background: #ff3e3e;
    padding: 12px;
    margin: 8px 0;
    border-radius: 6px;
    text-decoration: none;
    color: white !important;
    border: 1px solid rgba(255, 0, 0, 0.596);
    margin-left: -20px; /* move só o botão inteiro */
}

.nav-button i {
    margin-right: 20px;
    font-size: 16px;
}

.nav-button i.fa-comment {
    color: #3498db;
}

.nav-button i.fa-tools {
    color: #e74c3c;
}

.nav-button:hover {
    background: #cc0000;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(252, 0, 0, 0.2);
}

.nav-button span {
    color: white !important;
    font-size: 14px;
}

/* Botões do dashboard */
.dashboard-nav__button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #cc0000;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    width: 100%;
}

.dashboard-nav__button-icon {
    font-size: 16px;
}

.dashboard-nav__button-icon--chat {
    color: #3498db !important;
}

.dashboard-nav__button-icon--tools {
    color: #e74c3c !important;
}

.dashboard-nav__button-text {
    color: white !important;
    font-size: 14px;
}

.dashboard-nav__button:hover {
    background: #cc0000;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(255, 1, 1, 0.685);
}


.dashboard-nav {
    padding-left: 1rem;  /* Usando rem para melhor responsividade */
    margin-right: auto;  /* Isso garante que o espaço à direita seja automático */
}

/* Chat styles */
.chat-wrapper {
    background: #1a1a1a;
    height: 100vh;
        display: flex;
        flex-direction: column;
    color: #fff;
}

/* Header */
.chat-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    padding: 20px 24px;
    background: linear-gradient(180deg, #1a1a1a 0%, rgba(26,26,26,0.98) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.title h1 {
    font-size: 24px;
    margin: 0;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beta-tag {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(231,76,60,0.2);
}

.user-info {
        display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 14px;
    background: rgba(255,255,255,0.03);
    padding: 8px 16px;
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(46,204,113,0.5);
}

.user-info span {
    color: #fff;
    font-weight: 500;
}

/* Rules */
.chat-rules {
    background: rgba(52,152,219,0.05);
    margin: 20px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(52,152,219,0.1);
}

.rules-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rules-header i {
    color: #3498db;
}

.rules-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-rules ul {
    margin: 0;
    padding: 0;
    list-style: none;
        display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.chat-rules li {
    display: flex;
        align-items: center;
    gap: 8px;
    color: #888;
    font-size: 14px;
}

.chat-rules li i {
    color: #3498db;
    width: 16px;
}

/* Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.message {
    background: rgba(255,255,255,0.03);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform 0.2s ease;
}

.message:hover {
    transform: translateX(5px);
}

.message-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.user-tag {
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.timestamp {
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.message-text {
    color: #fff;
    line-height: 1.5;
}

/* Input */
.chat-input {
    padding: 20px;
    background: rgba(26,26,26,0.98);
    border-top: 1px solid rgba(255,255,255,0.03);
}

.input-container {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.03);
}

textarea {
        width: 100%;
    height: 80px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    color: #fff;
    padding: 12px;
    resize: none;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

textarea:focus {
    outline: none;
    border-color: rgba(52,152,219,0.5);
}

.input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.char-count-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.char-count-bar {
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
        overflow: hidden;
    }
    
.char-count-progress {
    width: 0%;
        height: 100%;
    background: #3498db;
    border-radius: 2px;
    transition: width 0.2s ease;
}

.char-count {
    color: #888;
    font-size: 13px;
}

.send-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
        display: flex;
        align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.send-btn:hover {
    transform: translateY(-2px);
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2ecc71;
    font-size: 12px;
    margin-top: 12px;
    padding: 0 8px;
}

.ping {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ping-dot {
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    animation: ping 1s infinite;
}

@keyframes ping {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Scrollbar */
.chat-messages::-webkit-scrollbar {
    width: 5px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.2);
}

/* Atualizações no CSS */

/* Beta tag atualizada */
.beta-tag {
    background: linear-gradient(45deg, #FF416C, #FF4B2B);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 10px rgba(255,65,108,0.3);
}

/* Rules atualizadas para lista única */
.chat-rules ul {
    margin: 0;
    padding: 0;
    list-style: none;
        display: flex;
        flex-direction: column;
    gap: 12px;
    }
    
.chat-rules li {
    display: flex;
    align-items: center;
    gap: 10px;
        color: #888;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.chat-rules li:last-child {
    border-bottom: none;
}

.chat-rules li i {
    color: #3498db;
    width: 16px;
    font-size: 16px;
}

/* Botão de enviar atualizado */
.send-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0 20px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.send-btn i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.send-btn:hover {
    background: #2980b9;
}

.send-btn:hover i {
    transform: translateX(3px);
}

/* Ajuste no footer */
.input-footer {
        display: flex;
    justify-content: space-between;
        align-items: center;
    margin-top: 12px;
    padding: 0 5px;
}

/* Estilos para os termos */
.terms-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px 20px; /* Aumentei o padding-top para compensar a navbar fixa */
}

.terms-content h1 {
    text-align: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 100px;
    
}

.terms-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.terms-text p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.terms-text strong {
    color: #fff;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 5px;
}

.update-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsivo */
@media (max-width: 768px) {
    .terms-content {
        padding: 70px 15px 30px 15px;
    }

    .terms-content h1 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .terms-text {
        font-size: 14px;
        padding: 20px;
    }

    .terms-text p {
        margin-bottom: 20px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .terms-content {
        padding: 60px 12px 20px 12px;
    }

    .terms-content h1 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .terms-text {
        font-size: 13px;
        padding: 15px;
    }

    .terms-text strong {
        display: block;
        margin-bottom: 3px;
    }

    .update-date {
        font-size: 12px;
        margin-top: 30px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 320px) {
    .terms-content h1 {
        font-size: 18px;
    }

    .terms-text {
        padding: 12px;
    }
}

.sidebar-header {
    padding: 1.5rem;
    text-align: center;
}

.sidebar-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.sidebar-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff3e3e;
    border-radius: 2px;
}

.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.contact-modal-content {
    background: #1a1a1a;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.3s ease;
}

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

.contact-modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-modal-header h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close-modal {
    color: #666;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #fff;
}

.contact-modal-body {
    padding: 30px;
}

.contact-modal-body p {
    color: #888;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 25px;
}

.ticket-emoji {
    font-size: 1.2rem;
    margin-left: 5px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 10px;
}

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

.contact-btn.discord {
    background: #5865F2;
    color: white;
}

.contact-btn.discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.contact-btn.telegram {
    background: #0088cc;
    color: white;
}

.contact-btn.telegram:hover {
    background: #006699;
    transform: translateY(-2px);
}

  #particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Fica atrás de tudo */
    pointer-events: none; /* Permite clicar nos elementos acima sem interferência */
  }