/* =========================================
   1. Variáveis e Reset
   ========================================= */
:root {
    --primary-color: #00e5ff;
    --primary-dark: #00b8cc;
    --bg-color: #0f172a;
    --bg-card: #1e293b;
    --text-color: #e2e8f0;
    --text-muted: #94a3b8;
    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 70px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. Header
   ========================================= */
#main-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 0 50px;
}

@media (max-width: 768px) {
    #main-header .container {
        padding: 0 20px;
    }
}

#brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.highlight {
    color: var(--primary-color);
}

#navbar ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

#navbar a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#navbar a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
}

.btn-nav:hover {
    background: var(--primary-color);
    color: var(--bg-color) !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

#mobile-menu-btn {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   3. Hero Section
   ========================================= */
#home {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1593640408182-31c70c8268f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    position: relative;
    margin-top: -70px;
    padding-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.tagline {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
}

.text-highlight {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    position: relative;
}

.text-highlight::after {
    content: 'Próximo Nível';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    -webkit-text-stroke: 0;
    opacity: 0.6;
    filter: blur(2px);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-cta {
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.btn-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   4. Serviços
   ========================================= */
#services {
    padding: 100px 0;
    background: var(--bg-color);
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Barra lateral neon no hover */
.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: 0.3s;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
}

/* =========================================
   5. Builds / PC Gamer
   ========================================= */
#builds {
    padding: 100px 0;
    background: #0b1120;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.build-text {
    flex: 1;
}

.build-text h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--primary-color);
}

.build-img {
    flex: 1;
}

.build-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: -20px 20px 0 rgba(0, 229, 255, 0.1);
}

.btn-cta.small {
    padding: 12px 25px;
    display: inline-block;
    margin-top: 20px;
}

/* =========================================
   6. Produtos
   ========================================= */
#products {
    padding: 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
}

.product-card:hover {
    transform: scale(1.02);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 4px;
}

.p-info {
    padding: 20px;
}

.p-info h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 5px;
}

.p-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.p-info a {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
}

/* =========================================
   7. Footer e Stats
   ========================================= */
#stats {
    background: var(--primary-color);
    padding: 60px 0;
}

#stats .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box {
    color: var(--bg-color);
}

.stat-box .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.stat-box .label {
    font-weight: 600;
    text-transform: uppercase;
}

footer {
    background: #050911;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-info h3 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.socials a {
    color: var(--text-muted);
    font-size: 1.5rem;
    margin: 0 10px;
}

.socials a:hover {
    color: var(--primary-color);
}

.developer a {
    color: var(--primary-color);
}

/* =========================================
   8. Mobile
   ========================================= */
@media (max-width: 768px) {
    #mobile-menu-btn {
        display: block;
    }

    #navbar {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        display: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #navbar.active {
        display: block;
    }

    #navbar ul {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .split-content {
        flex-direction: column;
    }

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

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

    #stats .container {
        flex-direction: column;
        gap: 30px;
    }
}