:root {
    --primary: #ff0000;
    --primary-dark: #8b0000;
    --bg: #0a0a0a;
    --card: #151515;
    --text: #ffffff;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    scroll-behavior: smooth;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(0,0,0,0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left-group {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: slideDown 0.6s ease forwards;
}

.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background: #5865F2;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.6);
}

.discord-btn svg {
    width: 24px;
    height: 24px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-center a {
    color: #999999;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
    opacity: 0;
    animation: slideDown 0.6s ease forwards;
}

.nav-center a:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-center a:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-center a:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-center a:hover {
    color: var(--primary);
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
}

.nav-right {
    display: flex;
    align-items: center;
    opacity: 0;
    animation: slideDown 0.6s ease forwards;
    animation-delay: 0.4s;
}

.logo { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 28px; 
    font-weight: bold; 
    cursor: pointer;
}
.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.8));
}
.logo span { color: var(--primary); }

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--primary); }

.btn-login {
    background: var(--primary);
    color: white !important;
    padding: 10px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.user-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.cart-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0a0a;
}

.user-profile {
    position: relative;
}

.profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.dropdown-menu {
    position: absolute;
    top: 50px;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #333;
}

.user-info-card h3 {
    color: var(--primary);
    font-size: 16px;
    margin: 0 0 10px 0;
    font-family: 'Orbitron', sans-serif;
}

.user-info-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #333;
    font-size: 14px;
}

.user-info-item:last-child {
    border-bottom: none;
}

.user-info-link {
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-info-link:hover {
    background: rgba(255, 0, 0, 0.1);
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.user-info-link .user-info-value {
    color: var(--primary);
}

.user-info-label {
    color: #999;
}

.user-info-value {
    color: white;
    font-weight: bold;
}

.dropdown-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    background: var(--primary);
    font-weight: bold;
}

.dropdown-menu a:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://i.imgur.com/your-background.jpg');
    background-size: cover;
    text-align: center;
}

.hero h1 { 
    font-family: 'Orbitron'; 
    font-size: 3.5rem; 
    margin-bottom: 10px; 
}

.hero h1 .text-red {
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: inline-block;
}

.hero h1 .text-red:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.8));
}

.scroll-arrow {
    display: inline-block;
    margin-top: 50px;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.section-title .text-gray {
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card-full {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #333;
    transition: all 0.4s ease;
}

.product-card-full:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6),
                0 0 60px rgba(255, 0, 0, 0.4);
    transform: translateY(-5px);
}

.product-main {
    padding: 20px;
}

.product-preview {
    position: relative;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
}

.product-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ccc;
}

.feature-item input[type="checkbox"] {
    accent-color: var(--primary);
}

.product-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    text-align: center;
    margin: 12px 0 8px;
}

.badge-undetected {
    display: block;
    text-align: center;
    background: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    width: fit-content;
    margin: 0 auto 15px;
}

.product-description {
    color: #999;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 15px;
}

.plan-selector {
    width: 100%;
    background: #0f0f0f;
    border: 2px solid #333;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    cursor: pointer;
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #999;
    margin: 12px 0;
}

.btn-buy-full {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #cc0000 100%);
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-buy-full:hover {
    background: linear-gradient(135deg, #cc0000 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
}

.btn-buy-full:active {
    transform: translateY(0);
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: transparent;
}

footer p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.chat-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #5865F2;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-float:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(88, 101, 242, 0.6);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .nav-center {
        display: none;
    }
    
    nav {
        padding: 15px 5%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .product-description {
        font-size: 12px;
    }
    
    .demo-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .demo-card {
        width: 100%;
    }
}

/* Seção de Demonstração */
#demonstracao {
    padding: 60px 0;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.demo-card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.4s ease;
}

.demo-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6),
                0 0 60px rgba(255, 0, 0, 0.4);
    transform: translateY(-5px);
}

.demo-video {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #000;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.demo-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    border: none;
}

.demo-video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.demo-video-wrapper:hover {
    transform: scale(1.02);
}

.demo-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.demo-video-wrapper:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.2);
}

.play-button svg {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
    transition: filter 0.3s ease;
}

.play-button:hover svg {
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.8));
}

.demo-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px dashed #333;
}

.placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.placeholder-content svg {
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.demo-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.demo-card p {
    color: #999;
    line-height: 1.6;
}

/* Notificação */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}