*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:'Montserrat', sans-serif;
}

body{
background:#0e0e0e;
color:white;
overflow-x:hidden;
}

/* NAV */
nav{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:center;
gap:40px;
padding:20px;
background:rgba(0,0,0,0.5);
backdrop-filter:blur(10px);
z-index:1000;
transition:.4s;
}

nav a{
color:white;
text-decoration:none;
transition:.3s;
}

nav a:hover{
color:#d4af37;
}

/* HERO */
.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}
.hero video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.hero::after{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
z-index:-1;
}

.hero-content{
animation:fadeUp 1.5s ease forwards;
opacity:0;
}

.hero h1{
font-size:3rem;
}

.hero p{
margin-top:15px;
font-weight:300;
line-height:3.5;
}



/* BUTTON */
.btn{
margin-top:25px;
padding:14px 35px;
border:none;
background:linear-gradient(45deg,#b68c2f,#8a6d1d);
color:white;
border-radius:30px;
cursor:pointer;
transition:.4s;
}

.btn:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(182,140,47,.4);
}

/* SECTIONS */
section{
padding:120px 10%;
text-align:center;
}

.dark{
background:#141414;
}

/* GLASS */
.glass{
background:rgba(255,255,255,0.05);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,0.1);
border-radius:20px;
padding:30px;
transition:.4s;
}

.glass:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.6);
}

/* NOSOTROS */
#nosotros img{
width:100%;
max-width:300px;
height:auto;
border-radius:20px;
display:block;
margin:auto;
}

/* MUSICA */
.cards{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
align-items:center;
margin-top:40px;
}

/* GALERIA */
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery img{
width:100%;
border-radius:15px;
transition:.4s;
}

.gallery img:hover{
transform:scale(1.05);
box-shadow:0 20px 40px rgba(0,0,0,.6);
}

/* FORM */
form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

input,textarea{
padding:15px;
border:none;
border-radius:10px;
background:#1c1c1c;
color:white;
}

/* REDES */
.socials{
display:flex;
justify-content:center;
gap:25px;
margin-top:30px;
}

.socials a{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(10px);
transition:.4s;
font-size:22px;
color:white;
}

.socials a:hover{
transform:translateY(-8px);
background:#b68c2f;
}

/* WHATSAPP */
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
width:65px;
height:65px;
background:#25d366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:white;
text-decoration:none;
animation:pulse 2s infinite;
z-index:1000;
}

/* SCROLL ANIMATION */
.reveal{
opacity:0;
transform:translateY(60px);
transition:all 1s cubic-bezier(.17,.67,.33,1.2);
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* CONCERT LIGHTS */
.concert-lights{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
z-index:-3;
background:
radial-gradient(circle at 20% 30%, rgba(255,0,0,0.15), transparent 40%),
radial-gradient(circle at 80% 70%, rgba(180,0,0,0.15), transparent 40%);
animation:lightsMove 6s infinite alternate ease-in-out;
}

/* KEYFRAMES */
@keyframes fadeUp{
from{opacity:0;transform:translateY(30px);}
to{opacity:1;transform:translateY(0);}
}

@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(37,211,102,.7);}
70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

@keyframes lightsMove{
0%{transform:translateY(-20px);}
100%{transform:translateY(20px);}
}

/* PROXIMAMENTE */
#proximamente h2{
font-size:2.5rem;
margin-bottom:40px;
letter-spacing:2px;
}

.proximo-card{
max-width:700px;
margin:auto;
text-align:center;
}

.countdown{
display:flex;
justify-content:center;
gap:25px;
margin-top:30px;
flex-wrap:wrap;
}

.countdown div{
background:rgba(255,255,255,0.08);
padding:20px;
border-radius:15px;
backdrop-filter:blur(10px);
min-width:90px;
transition:.4s;
}

.countdown div:hover{
transform:translateY(-8px);
background:#b68c2f;
}

.countdown span{
font-size:2rem;
font-weight:600;
display:block;
}

.countdown small{
font-size:.8rem;
opacity:.7;
}

html, body{
overflow-x:hidden;
}

@media (max-width:768px){

nav{
gap:15px;
padding:10px 20px;
font-size:14px;
}

.hero h1{
font-size:2rem;
}

section{
padding:80px 5%;
}

.countdown{
gap:15px;
}

}
@media (max-width:768px){

.hero video{
display:none;
}

.concert-lights{
display:none;
}

nav{
backdrop-filter:none;
}

}