/* ========================================
   MAGIC LED - STYLE.CSS
======================================== */

:root{

    --dark-base:#050816;
    --dark-2:#0b1020;
    --dark-3:#111827;

    --card-bg:rgba(255,255,255,0.03);

    --white:#ffffff;
    --text:#c8d0e0;
    --text-soft:#94a3b8;

    --purple:#b44fff;
    --blue:#00d4ff;

}

/* ========================================
   RESET
======================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    background:var(--dark-base);
    color:var(--white);

    font-family:'Rajdhani', sans-serif;

    overflow-x:hidden;
}

body.loading{
    overflow:hidden;
}

/* ========================================
   SCROLLBAR
======================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#070b14;
}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        var(--purple),
        var(--blue)
    );

    border-radius:20px;
}

/* ========================================
   LOADER
======================================== */

.loader{

    position:fixed;
    inset:0;

    background:#03050d;

    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.8s ease;
}

.loader.hidden{
    opacity:0;
    visibility:hidden;
}

.loader-content{
    text-align:center;
}

.loader-logo{

    font-size:56px;

    font-family:'Orbitron', sans-serif;

    color:var(--purple);

    letter-spacing:3px;

    margin-bottom:35px;

    text-shadow:
        0 0 10px var(--purple),
        0 0 20px var(--purple),
        0 0 40px var(--purple);

    animation:pulseLogo 2s infinite;
}

@keyframes pulseLogo{

    0%{
        opacity:0.7;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0.7;
    }

}

.loader-bar{

    width:320px;
    height:10px;

    background:rgba(255,255,255,0.08);

    border-radius:50px;

    overflow:hidden;

    position:relative;
}

.loader-fill{

    width:0%;
    height:100%;

    background:linear-gradient(
        90deg,
        var(--purple),
        var(--blue)
    );

    box-shadow:
        0 0 10px var(--purple),
        0 0 20px var(--purple);

    transition:0.1s linear;
}

.loader-percent{

    display:block;

    margin-top:18px;

    font-size:20px;

    color:var(--text);
}

/* ========================================
   HEADER
======================================== */

.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:80px;

    padding:0 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:1000;

    transition:0.4s ease;
}

.header.scrolled{

    background:rgba(3,5,13,0.75);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,0.06);
}

.logo{

    font-size:28px;

    font-family:'Orbitron', sans-serif;
    font-weight:700;

    color:var(--purple);

    letter-spacing:2px;

    text-shadow:
        0 0 10px var(--purple),
        0 0 25px var(--purple);
}

.nav-links{

    display:flex;
    gap:35px;
}

.nav-links a{

    text-decoration:none;

    color:var(--white);

    font-size:18px;
    font-weight:600;

    position:relative;

    transition:0.3s ease;
}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0%;
    height:2px;

    background:var(--purple);

    transition:0.3s ease;
}

.nav-links a:hover{

    color:var(--purple);
}

.nav-links a:hover::after{
    width:100%;
}

.nav-toggle{

    display:none;

    background:none;
    border:none;

    color:white;

    font-size:34px;

    cursor:pointer;
}

/* ========================================
   HERO
======================================== */

.hero{

    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:120px 8%;

    position:relative;

    overflow:hidden;
}

.hero-bg{

    position:absolute;
    inset:0;

    background:

        radial-gradient(
            circle at top,
            rgba(180,79,255,0.20),
            transparent 35%
        ),

        radial-gradient(
            circle at bottom,
            rgba(0,212,255,0.15),
            transparent 30%
        );
}

.hero-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);
}

.glow1{

    width:350px;
    height:350px;

    background:var(--purple);

    top:100px;
    left:-100px;

    opacity:0.18;
}

.glow2{

    width:300px;
    height:300px;

    background:var(--blue);

    right:-100px;
    bottom:0;

    opacity:0.15;
}

.hero-content{

    max-width:900px;

    text-align:center;

    position:relative;
    z-index:2;
}

.hero-tag{

    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,0.08);

    background:rgba(255,255,255,0.03);

    color:var(--purple);

    letter-spacing:2px;

    margin-bottom:28px;
}

.hero h1{

    font-size:82px;

    line-height:1.1;

    font-family:'Orbitron', sans-serif;

    margin-bottom:28px;
}

.hero h1 span{

    color:var(--purple);

    text-shadow:
        0 0 10px var(--purple),
        0 0 25px var(--purple);
}

.hero p{

    color:var(--text);

    font-size:22px;

    line-height:1.8;

    margin-bottom:42px;
}

/* ========================================
   BUTTONS
======================================== */

.hero-buttons{

    display:flex;
    justify-content:center;
    gap:20px;

    flex-wrap:wrap;
}

.btn{

    padding:16px 34px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:0.35s ease;
}

.primary{

    background:var(--purple);

    color:white;

    box-shadow:
        0 0 15px rgba(180,79,255,0.3),
        0 0 30px rgba(180,79,255,0.25);
}

.primary:hover{

    transform:translateY(-5px);

    box-shadow:
        0 0 20px rgba(180,79,255,0.5),
        0 0 45px rgba(180,79,255,0.4);
}

.secondary{

    border:1px solid var(--purple);

    color:var(--purple);
}

.secondary:hover{

    background:var(--purple);

    color:white;
}

/* ========================================
   INSTAGRAM
======================================== */

.hero-social{
    margin-top:30px;
}

.instagram-link{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:14px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    letter-spacing:1px;

    transition:.4s;

    backdrop-filter:blur(10px);
}

.instagram-link i{
    font-size:1.2rem;
}

.instagram-link:hover{

    transform:translateY(-4px);

    border-color:#c13584;

    box-shadow:
        0 0 25px rgba(193,53,132,.35);
}

/* ========================================
   SECTIONS
======================================== */

section{
    padding:120px 8%;
}

.section-title{

    text-align:center;

    margin-bottom:70px;
}

.section-title span{

    color:var(--purple);

    letter-spacing:2px;

    font-size:15px;
}

.section-title h2{

    font-size:52px;

    margin-top:10px;

    font-family:'Orbitron', sans-serif;
}

/* ========================================
   ABOUT
======================================== */

.about-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.about-card{

    background:var(--card-bg);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:40px;

    transition:0.4s ease;

    backdrop-filter:blur(10px);
}

.about-card:hover{

    transform:translateY(-10px);

    border-color:rgba(180,79,255,0.4);

    box-shadow:
        0 0 35px rgba(180,79,255,0.12);
}

.card-number{

    font-size:42px;

    color:rgba(180,79,255,0.25);

    font-family:'Orbitron', sans-serif;

    margin-bottom:20px;
}

.about-card h3{

    font-size:28px;

    margin-bottom:16px;

    color:var(--purple);
}

.about-card p{

    color:var(--text);

    line-height:1.8;

    font-size:18px;
}

/* ========================================
   PRODUCTS
======================================== */

.products-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;
}

.product-card{

    background:var(--card-bg);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    overflow:hidden;

    transition:0.4s ease;
}

.product-card:hover{

    transform:translateY(-10px);

    border-color:rgba(180,79,255,0.4);

    box-shadow:
        0 0 40px rgba(180,79,255,0.15);
}

.product-image{

    height:320px;

    overflow:hidden;
}

.product-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;
}

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

.product-info{
    padding:28px;
}

.product-info h3{

    font-size:30px;

    margin-bottom:12px;
}

.product-info p{

    color:var(--text);

    line-height:1.7;

    margin-bottom:22px;

    font-size:18px;
}

.price{

    font-size:34px;

    color:var(--purple);

    font-weight:700;

    margin-bottom:25px;
}

.product-btn{

    width:100%;

    border:none;

    padding:16px;

    border-radius:14px;

    background:var(--purple);

    color:white;

    font-size:17px;
    font-weight:700;

    cursor:pointer;

    transition:0.3s ease;
}

.product-btn:hover{

    transform:translateY(-4px);

    box-shadow:
        0 0 25px rgba(180,79,255,0.4);
}

/* ========================================
   SHOWCASE PRODUCTS
======================================== */

.showcase-grid{
    margin-top:50px;
}

.showcase-card{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    height:420px;

    display:block;

    border:1px solid rgba(255,255,255,.08);

    transition:.5s;
}

.showcase-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s;
}

.showcase-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15)
    );

    display:flex;
    align-items:flex-end;

    padding:30px;
}

.showcase-overlay h3{

    color:#fff;

    font-size:2rem;

    font-family:'Orbitron',sans-serif;
}

.showcase-card:hover{

    transform:translateY(-10px);

    border-color:var(--purple);

    box-shadow:
        0 0 35px rgba(180,79,255,.25);
}

.showcase-card:hover img{
    transform:scale(1.08);
}

/* ========================================
   TAMANHOS
======================================== */

.sizes-wrapper{
    margin:80px 0 100px;
}

.sizes-title{
    margin-bottom:50px;
}

.sizes-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;
}

.size-card{

    position:relative;

    padding:40px 30px;

    border-radius:25px;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    text-align:center;

    transition:.4s;

    overflow:hidden;
}

.size-card:hover{

    transform:translateY(-8px);

    border-color:var(--purple);

    box-shadow:
        0 0 30px rgba(180,79,255,.25);
}

.size-name{

    display:inline-block;

    margin-bottom:15px;

    color:var(--blue);

    font-size:.9rem;

    letter-spacing:2px;

    text-transform:uppercase;
}

.size-card h3{

    font-size:2rem;

    color:#fff;

    margin-bottom:20px;

    font-family:'Orbitron',sans-serif;
}

.size-price{

    font-size:2.2rem;

    font-weight:700;

    color:var(--purple);
}

.featured{

    border:1px solid var(--purple);

    transform:scale(1.05);
}

.popular-tag{

    position:absolute;

    top:15px;
    right:-35px;

    background:var(--purple);

    color:#fff;

    padding:6px 40px;

    font-size:.7rem;

    transform:rotate(35deg);

    font-weight:700;
}

/* ========================================
   CONTACT
======================================== */

.contact-form{

    max-width:700px;

    margin:auto;
}

.input-group{
    margin-bottom:24px;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,0.08);

    background:rgba(255,255,255,0.03);

    color:white;

    outline:none;

    font-size:18px;

    transition:0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--purple);

    box-shadow:
        0 0 25px rgba(180,79,255,0.15);
}

.contact-form textarea{
    resize:none;
}

.contact-form button{

    width:100%;

    border:none;

    padding:18px;

    border-radius:16px;

    background:var(--purple);

    color:white;

    font-size:18px;
    font-weight:700;

    cursor:pointer;

    transition:0.3s ease;
}

.contact-form button:hover{

    transform:translateY(-4px);

    box-shadow:
        0 0 25px rgba(180,79,255,0.4);
}

/* ========================================
   FOOTER
======================================== */

.footer{

    border-top:
        1px solid rgba(255,255,255,0.08);

    padding:40px 8%;

    text-align:center;
}

.footer p{

    color:var(--text);

    margin-bottom:10px;
}

.footer a{

    color:var(--purple);

    text-decoration:none;

    transition:0.3s ease;
}

.footer a:hover{

    text-shadow:
        0 0 10px var(--purple);
}

/* ========================================
   SCROLL REVEAL FIX
======================================== */

.hero-content,
.section-title,
.about-card,
.product-card,
.contact-form,
.footer{

    will-change:
        transform,
        opacity;
}

/* ========================================
   RESPONSIVO
======================================== */

@media(max-width:992px){

    .hero h1{
        font-size:64px;
    }

}

@media(max-width:768px){

    .nav-links{

        position:absolute;

        top:80px;
        left:0;
        right:0;

        background:#04060d;

        flex-direction:column;

        align-items:center;

        padding:30px;

        gap:25px;

        display:none;

        border-bottom:
            1px solid rgba(255,255,255,0.08);
    }

    .nav-links.active{
        display:flex;
    }

    .nav-toggle{
        display:block;
    }

    .hero{
        padding-top:150px;
    }

    .hero h1{
        font-size:48px;
    }

    .hero p{
        font-size:18px;
    }

    .section-title h2{
        font-size:38px;
    }

    .loader-logo{
        font-size:42px;
    }

    .loader-bar{
        width:260px;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:38px;
    }

    .hero-tag{
        font-size:12px;
    }

    .btn{
        width:100%;
    }

    .section-title h2{
        font-size:32px;
    }

    .product-info h3{
        font-size:26px;
    }

}