*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:
        radial-gradient(circle at top,#4d0000 0%,#0b0b0b 35%,#000 100%);
    color:#fff;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo-nav{
    font-weight:800;
    letter-spacing:4px;
    color:#fff !important;
}

.nav-link{
    color:#fff !important;
    margin-left:15px;
    transition:.3s;
}

.nav-link:hover{
    color:#f02c29 !important;
}

/* HERO */

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;

    background:url('../img/portada.png')
    center center / cover;

    filter:blur(10px);
    opacity:.18;

    animation:zoomHero 20s infinite alternate;
}

@keyframes zoomHero{

    from{
        transform:scale(1.05);
    }

    to{
        transform:scale(1.20);
    }

}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.5),
        rgba(0,0,0,.95)
    );
}

.hero-content{
    position:relative;
    z-index:2;
}

.logo{

    font-size:clamp(4rem,10vw,8rem);

    font-weight:900;

    letter-spacing:18px;

    text-transform:uppercase;

    text-shadow:
        0 0 10px rgba(217,4,41,.8),
        0 0 25px rgba(217,4,41,.5),
        0 0 50px rgba(217,4,41,.3);
}

.subtitle{

    color:#f02c29;

    font-weight:700;

    letter-spacing:5px;

    margin-bottom:25px;
}

.hero-text{

    font-size:1.3rem;

    color:#ddd;

    margin-bottom:35px;
}

/* BOTÓN */

.btn-main{

    background:
    linear-gradient(
        135deg,
        #d90429,
        #f02c29
    );

    border:none;

    color:white;

    padding:18px 40px;

    border-radius:50px;

    font-weight:700;

    font-size:1.05rem;

    transition:.4s;

    box-shadow:
    0 0 20px rgba(217,4,41,.5);
}

.btn-main:hover{

    transform:translateY(-5px);

    color:white;

    box-shadow:
    0 0 35px rgba(217,4,41,.8);
}

/* PORTADA */

.cover{
    width:100%;
    max-width:480px;
    border-radius:20px;

    box-shadow:
        0 0 25px rgba(217,4,41,.5),
        0 0 60px rgba(217,4,41,.2);

    animation:
        fadeInCover 1.5s ease forwards,
        floatCover 6s ease-in-out infinite 1.5s,
        glowCover 4s ease-in-out infinite 1.5s;

    opacity:0;
}

.cover:hover{
    transform:scale(1.03) rotate(-1deg);
    box-shadow:
        0 0 60px rgba(217,4,41,.8),
        0 0 120px rgba(217,4,41,.35);
}

/* RELEASE */

.release{

    padding:70px 0;

    text-align:center;
}

.release h2{

    font-size:3rem;

    font-weight:900;

    color:#fff;
}

.release p{

    color:#999;

    font-size:1.1rem;
}

/* TÍTULOS */

.section-title{

    text-align:center;

    margin-bottom:50px;

    font-size:2.5rem;

    font-weight:800;

    color:#f02c29;

    text-transform:uppercase;

    letter-spacing:4px;
}

/* PLATAFORMAS */

.platform-card{

    background:
    rgba(255,255,255,.04);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    text-decoration:none;

    color:white;

    height:180px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transition:.4s;
}

.platform-card:hover{

    color:white;

    transform:translateY(-8px);

    border-color:#f02c29;

    box-shadow:
        0 10px 35px rgba(217,4,41,.3);
}

.platform-card i{

    font-size:2.5rem;

    margin-bottom:15px;

    color:#f02c29;
}

.platform-card span{

    font-weight:600;
}

/* SPOTIFY PLAYER */

.spotify-player{

    position:relative;
    width:70%;
    max-width:650px;
    margin:auto;
    padding:20px;

    border-radius:30px;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            rgba(125,0,21,.35),
            rgba(20,20,20,.95)
        );

    border:1px solid rgba(255,77,109,.25);

    box-shadow:
        0 0 30px rgba(217,4,41,.20),
        0 0 100px rgba(217,4,41,.10);
}

.spotify-player::before{

    content:'';

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(255,77,109,.25),
            transparent 40%
        );

    pointer-events:none;
}

.spotify-player iframe{

    display:block;

    width:100%;
}

.badge.bg-danger{

    background:
    linear-gradient(
        135deg,
        #d90429,
        #f02c29
    ) !important;

    font-size:.9rem;

    letter-spacing:2px;
}

/* ABOUT */

.about-text{

    font-size:1.2rem;

    line-height:2;

    color:#ddd;
}

/* REDES */

.social-links{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;
}

.social-links a{

    width:80px;

    height:80px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:white;

    font-size:2rem;

    background:
    rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;
}

.social-links a:hover{

    transform:translateY(-6px);

    background:#d90429;

    box-shadow:
        0 0 25px rgba(217,4,41,.7);
}

/* FOOTER */

footer{

    margin-top:80px;

    padding:50px 20px;

    text-align:center;

    border-top:
    1px solid rgba(255,255,255,.08);

    background:
    rgba(0,0,0,.4);
}

footer h3{

    letter-spacing:5px;

    margin-bottom:10px;
}

footer p{

    color:#999;
}

footer small{

    color:#666;
}

/* FOOTER LOGO */

.footer-logo{
    text-align:center;
    margin-bottom:20px;
}

.footer-logo a{
    display:inline-block;
}

.footer-logo-img{
    height:70px;
    width:auto;
    display:block;
    margin:0 auto;
    transition:.3s;
}

.footer-logo-img:hover{
    transform:scale(1.05);
}


.logo-navbar{
    height:40px !important;
    width:auto !important;
    max-height:40px !important;
    display:block;
}

.logo-navbar:hover{
    transform:scale(1.05);
}

.hero-logo-container{
    text-align:right;
    margin-bottom:25px;
}

.hero-logo{
    max-width:480px !important;
    width:auto !important;
    height:auto !important;
    display:block;
    margin:-30px;

    filter:
        drop-shadow(0 0 8px rgba(217,4,41,.35));

    transition:.3s;
    animation:logoGlow 5s ease-in-out infinite;
}

.hero-logo:hover{
    transform:scale(1.02);
}

/* RESPONSIVE */

@media(max-width:768px){

    .logo{

        font-size:3.5rem;

        letter-spacing:8px;
    }

    .hero{

        text-align:center;
    }

    .cover{

        margin-top:40px;
    }

    .section-title{

        font-size:2rem;
    }
    
    .hero-logo{
        max-width:280px !important;
        width:auto !important;
        height:auto !important;
        display:block;
        margin:0 auto;
        margin-top: 55px ;
    
        filter:
            drop-shadow(0 0 8px rgba(217,4,41,.35));
    
        transition:.3s;
    }
    
    .hero-logo:hover{
        transform:scale(1.02);
    }
    
    .spotify-player{
        width:98%;
    }

}

@keyframes fadeInCover{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes floatCover{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes glowCover{

    0%{
        box-shadow:
            0 0 25px rgba(217,4,41,.4),
            0 0 60px rgba(217,4,41,.2);
    }

    50%{
        box-shadow:
            0 0 45px rgba(217,4,41,.8),
            0 0 120px rgba(217,4,41,.35);
    }

    100%{
        box-shadow:
            0 0 25px rgba(217,4,41,.4),
            0 0 60px rgba(217,4,41,.2);
    }

}

@keyframes logoGlow{

    0%,100%{
        filter:
        drop-shadow(0 0 10px rgba(217,4,41,.3));
    }

    50%{
        filter:
        drop-shadow(0 0 25px rgba(217,4,41,.8));
    }
}