*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#05070d;
    color:white;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

/* SCROLL */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#05070d;
}

::-webkit-scrollbar-thumb{
    background:#2453ff;
}

/* CURSOR GLOW */

.cursor-glow{
    position:fixed;
    width:300px;
    height:300px;
    background:rgba(36,83,255,0.08);
    border-radius:50%;
    pointer-events:none;
    transform:translate(-50%,-50%);
    z-index:0;
    filter:blur(40px);
}

/* NAVBAR */

.navbar{
    width:100%;
    position:fixed;
    top:0;
    z-index:1000;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,0.3);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.isotipo{
    width:45px;
}

.logo-text{
    height:40px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;
    letter-spacing:2px;
    font-size:0.85rem;
    transition:0.3s;
}

nav a:hover{
    color:#2453ff;
}

/* HERO */

.hero{
    width:100%;
    height:100vh;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-dark{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(5,7,13,0.75);
}

.hero-grid{
    position:absolute;
    width:100%;
    height:100%;
    background-image:
        linear-gradient(rgba(36,83,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36,83,255,0.08) 1px, transparent 1px);
    background-size:50px 50px;
    animation:gridMove 15s linear infinite;
}

@keyframes gridMove{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(50px);
    }
}

.hero-content{
    position:relative;
    z-index:5;
    text-align:center;
}

.hero-isotipo{
    width:170px;
    margin-bottom:30px;
    animation:float 5s ease-in-out infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
}

.hero h1{
    font-family:'Orbitron',sans-serif;
    font-size:5rem;
    letter-spacing:6px;
    margin-bottom:20px;
}

.hero p{
    color:#cfcfcf;
    font-size:1.2rem;
    margin-bottom:40px;
}

/* BUTTON */

.btn-primary{
    display:inline-block;
    padding:15px 40px;
    background:#2453ff;
    color:white;
    text-decoration:none;
    border-radius:4px;
    letter-spacing:2px;
    transition:0.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 0 25px rgba(36,83,255,0.5);
}

/* SECTIONS */

section{
    padding:140px 8%;
    position:relative;
    z-index:2;
}

.section-title{
    margin-bottom:70px;
}

.section-title span{
    color:#2453ff;
    letter-spacing:3px;
    font-size:0.8rem;
}

.section-title h2{
    font-size:3rem;
    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:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.05);
    padding:45px;
    backdrop-filter:blur(8px);
    transition:0.4s;
}

.about-card:hover{
    transform:translateY(-8px);
    border-color:#2453ff;
}

.about-card h3{
    color:#2453ff;
    margin-bottom:20px;
}

/* COLLECTIONS */

.collection-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:40px;
}

.collection-card{
    overflow:hidden;
    background:#0d111b;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.4s;
}

.collection-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.collection-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

.collection-card:hover img{
    transform:scale(1.05);
}

.card-content{
    padding:35px;
}

.card-content h3{
    font-family:'Orbitron',sans-serif;
    margin-bottom:15px;
}

/* GALLERY */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.5s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

/* CONTACT */

.contact{
    text-align:center;
}

.contact p{
    margin-bottom:40px;
    color:#bcbcbc;
}

/* FOOTER */

footer{
    text-align:center;
    padding:50px;
    border-top:1px solid rgba(255,255,255,0.05);
}

.footer-isotipo{
    width:60px;
    margin-bottom:20px;
}

/* REVEAL */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* HERO ANIMATION */

.fade-up{
    opacity:0;
    transform:translateY(30px);
    animation:fadeUp 1s forwards;
}

.delay-1{
    animation-delay:0.3s;
}

.delay-2{
    animation-delay:0.6s;
}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* SCROLL INDICATOR */

.scroll-indicator{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    width:30px;
    height:50px;
    border:2px solid rgba(255,255,255,0.3);
    border-radius:20px;
}

.scroll-indicator span{
    position:absolute;
    width:6px;
    height:6px;
    background:#2453ff;
    border-radius:50%;
    left:50%;
    top:10px;
    transform:translateX(-50%);
    animation:scrollAnim 2s infinite;
}

@keyframes scrollAnim{
    0%{
        opacity:0;
        top:10px;
    }
    50%{
        opacity:1;
    }
    100%{
        opacity:0;
        top:30px;
    }
}

/* RESPONSIVE */

@media(max-width:900px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2.7rem;
    }

    .section-title h2{
        font-size:2rem;
    }

}