/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a0a0a; /* Fundo quase preto */
    color: #ffffff;
    line-height: 1.6;
}

/* VARIÁVEIS DE CORES */
:root {
    --primary-color: #ff6b00;
    --dark-bg: #0a0a0a;
    --card-bg: #141414;
    --text-gray: #b3b3b3;
    --accent-1: #ff6b00;
    --accent-2: #ff2e6a;
    --accent-3: #ffd000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
}

/* HEADER */
header {
    background-color: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 28px; height: 28px; border-radius: 6px; box-shadow: 0 0 12px rgba(255,107,0,0.45); }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-loja {
    background-color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    color: #fff !important;
}

.btn-loja:hover {
    background-color: #ff8533;
    transform: scale(1.05);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background-image: url('https://i.pinimg.com/1200x/cf/22/a6/cf22a625de9672e1250f31aee91daf3a.jpg'); /* Fundo GTA Style */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.05) saturate(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(1200px 600px at 20% 30%, rgba(255, 107, 0, 0.25), transparent 60%),
                radial-gradient(900px 500px at 80% 20%, rgba(255, 46, 106, 0.25), transparent 60%),
                linear-gradient(to bottom, rgba(0,0,0,0.7), #0a0a0a 70%);
    animation: bgShift 12s ease-in-out infinite alternate;
    z-index: 1;
}
@keyframes bgShift {
    0% { transform: translate3d(0,0,0); }
    100% { transform: translate3d(0,-10px,0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    margin-bottom: 12px;
    line-height: 1.05;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.tagline { font-size: 1.05rem; color: var(--text-gray); margin: 12px 0 24px; }

/* BOTÕES */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-main, .btn-secondary {
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    transition: 0.25s ease;
}

.btn-main {
    background-image: linear-gradient(90deg, var(--accent-1), var(--accent-3));
    color: #fff;
    box-shadow: 0 8px 24px rgba(255,107,0,0.25);
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn-main:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 107, 0, 0.45); filter: saturate(1.2); }
.btn-secondary:hover { background-color: #fff; color: #000; }

/* STATUS BOX */
.server-status-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20,20,20,0.6);
    backdrop-filter: blur(6px);
    padding: 10px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 16px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}
.dot.online { background-color: #00ff5e; box-shadow: 0 0 10px #00ff5e; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,255,94,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0,255,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,255,94,0); }
}

/* PARCEIROS */
.partners {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Vitrine / Store */
.store-controls { margin: 30px 0 10px; text-align: center; }
.filters { display: inline-flex; gap: 10px; }
.filter-btn { background: transparent; border: 1px solid #333; color: #fff; padding: 8px 12px; border-radius: 6px; cursor: pointer; }
.filter-btn.active { background: var(--primary-color); border-color: var(--primary-color); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 20px; }
.product-card { position: relative; height: 220px; background-size: cover; background-position: center; border-radius: 10px; overflow: hidden; display: flex; align-items: flex-end; box-shadow: inset 0 -60px 40px -40px rgba(0,0,0,0.7); border: 1px solid #222; }
.product-content { padding: 15px; z-index: 2; width: 100%; background: linear-gradient(to top, rgba(10,10,10,0.7), rgba(10,10,10,0)); }
.product-content h3 { margin-bottom: 6px; }
.product-content .price { color: var(--primary-color); font-weight: bold; margin-bottom: 8px; }
.btn-buy { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.08); padding: 8px 12px; border-radius: 6px; cursor: pointer; }

/* Modal */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); }
.modal-content { background-color: #0f0f0f; margin: 8% auto; padding: 20px; border: 1px solid #222; width: 90%; max-width: 520px; border-radius: 8px; color: #fff; }
.modal-close { float: right; font-size: 24px; cursor: pointer; }
.modal-actions { display: flex; gap: 10px; margin-top: 14px; }
.modal-actions .btn-main { text-decoration: none; padding: 10px 16px; display: inline-block; }
.modal-actions .btn-secondary { padding: 10px 16px; }

.partner-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.3s;
}

.partner-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    margin-bottom: 10px;
    color: #fff;
}

.card-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-partner {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-partner:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* FOOTER */
footer {
    background-color: #050505;
    padding: 50px 0 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-gray);
    margin-left: 20px;
    text-decoration: none;
}

.copyright {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    border-top: 1px solid #111;
    padding-top: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Menu simples para mobile */
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
    .footer-links a { margin: 0 10px; }
}
