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

body{

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

    color:white;

    background:
    linear-gradient(
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.82)
    ),
    url("img/ratom.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    background-attachment:fixed;

    overflow-x:hidden;

    animation:fadeIn 1s ease;
}

/* =========================
ANIMACION ENTRADA
========================= */

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
NAVBAR
========================= */

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 40px;

    background:rgba(0,0,0,0.4);

    backdrop-filter:blur(10px);

    position:fixed;

    width:100%;

    top:0;

    z-index:1000;
}

/* MENU */

.navbar ul{

    display:flex;

    list-style:none;

    gap:25px;
}

.navbar a{

    color:#00ffff;

    text-decoration:none;

    transition:0.3s;

    font-size:1rem;

    letter-spacing:1px;
}

.navbar a:hover{

    color:white;

    text-shadow:
    0 0 10px #00ffff;
}

/* =========================
LOGO
========================= */

.logo{

    font-family:'Permanent Marker', cursive;

    font-size:2rem;

    color:#00ffff;

    text-shadow:
    0 0 5px #00ffff,
    0 0 15px #00ffff;
}

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

.hero{

    height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding-top:120px;

    padding-left:20px;

    padding-right:20px;

    max-width:1200px;

    margin:auto;
}

/* =========================
TITULO PRINCIPAL
========================= */

.titulo-principal{

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

    font-size:clamp(50px, 6vw, 120px);

    text-transform:uppercase;

    letter-spacing:5px;

    color:white;

    line-height:0.95;

    text-align:center;

    text-shadow:
    0 0 5px #00ffff,
    0 0 15px #00ffff,
    0 0 25px rgba(0,255,255,0.6);

    animation:neon 3s infinite alternate;
}

/* =========================
SUBTITULO
========================= */

.subtitulo{

    margin-top:20px;

    font-size:1.3rem;

    letter-spacing:4px;

    text-transform:uppercase;

    color:white;

    text-align:center;

    text-shadow:
    0 0 10px rgba(0,255,255,0.5);
}

/* =========================
ANIMACION NEON
========================= */

@keyframes neon{

    from{

        text-shadow:
        0 0 5px #00ffff,
        0 0 15px #00ffff;
    }

    to{

        text-shadow:
        0 0 15px #00ffff,
        0 0 30px #00ffff,
        0 0 50px rgba(0,255,255,0.7);
    }
}

/* =========================
BOTONES
========================= */

.boton{

    display:inline-block;

    margin-top:30px;

    padding:15px 35px;

    border:2px solid #00ffff;

    color:#00ffff;

    text-decoration:none;

    transition:0.3s;

    border-radius:10px;

    font-weight:bold;

    letter-spacing:2px;
}

.boton:hover{

    background:#00ffff;

    color:black;

    box-shadow:
    0 0 20px #00ffff;
}

/* =========================
SECCIONES
========================= */

.seccion{

    padding:100px 40px;

    text-align:center;
}

/* =========================
ARTISTAS
========================= */

.artistas{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-top:60px;
}

/* CARD ARTISTA */

.artista{

    width:250px;

    background:rgba(20,20,20,0.75);

    border:1px solid #00ffff;

    border-radius:20px;

    overflow:hidden;

    transition:0.4s;

    backdrop-filter:blur(5px);

    box-shadow:
    0 0 15px rgba(0,255,255,0.15);
}

.artista:hover{

    transform:translateY(-10px);

    box-shadow:
    0 0 25px #00ffff;
}

/* IMAGENES ARTISTAS */

.artista img{

    width:100%;

    height:300px;

    object-fit:cover;

    display:block;
}

/* TITULO */

.artista h3{

    margin-top:15px;

    color:#00ffff;

    font-size:1.5rem;
}

/* TEXTO */

.artista p{

    padding:15px;

    color:#ccc;

    line-height:1.5;
}

/* =========================
GALERIA
========================= */

.galeria{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

    margin-top:50px;
}

/* IMAGENES GALERIA */

.galeria img{

    width:320px;

    height:400px;

    object-fit:cover;

    border-radius:15px;

    border:2px solid #00ffff;

    transition:0.4s;

    box-shadow:
    0 0 15px rgba(0,255,255,0.2);
}

.galeria img:hover{

    transform:scale(1.05);

    box-shadow:
    0 0 25px #00ffff;
}

/* =========================
CARDS SERVICIOS
========================= */

.cards{

    display:flex;

    justify-content:center;

    align-items:stretch;

    gap:30px;

    flex-wrap:wrap;

    margin-top:60px;
}

/* CARD */

.card{

    width:300px;

    background:rgba(20,20,20,0.75);

    border:1px solid #00ffff;

    border-radius:20px;

    overflow:hidden;

    transition:0.4s;

    backdrop-filter:blur(6px);

    box-shadow:
    0 0 15px rgba(0,255,255,0.15);
}

/* HOVER */

.card:hover{

    transform:translateY(-10px) scale(1.02);

    box-shadow:
    0 0 25px #00ffff,
    0 0 40px rgba(0,255,255,0.4);
}

/* IMAGEN */

.card img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

    transition:0.5s;
}

/* HOVER IMAGEN */

.card:hover img{

    transform:scale(1.08);

    filter:brightness(1.1);
}

/* TITULO */

.card h3{

    color:#00ffff;

    font-size:1.6rem;

    text-align:center;

    margin-top:20px;

    text-shadow:
    0 0 10px rgba(0,255,255,0.5);
}

/* TEXTO */

.card p{

    padding:20px;

    text-align:center;

    color:#d6d6d6;

    line-height:1.6;

    font-size:0.95rem;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .navbar{

        flex-direction:column;

        gap:15px;
    }

    .navbar ul{

        flex-wrap:wrap;

        justify-content:center;
    }

    .titulo-principal{

        font-size:clamp(40px, 10vw, 80px);
    }

    .subtitulo{

        font-size:1rem;
    }

    .cards,
    .artistas,
    .galeria{

        flex-direction:column;

        align-items:center;
    }

    .card,
    .artista{

        width:90%;
    }

    .galeria img{

        width:90%;

        height:350px;
    }
}
/* ==========================================
   ANIMACIONES JAVASCRIPT
========================================== */

body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.fade-in {
    opacity: 1;
}

body.fade-out {
    opacity: 0;
}

.navbar-scroll {
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
}

.artista {
    transition: transform 0.3s ease;
}