*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:'Press Start 2P', cursive;
  background:#000;
  color:#fff;
  overflow-x:hidden;
}





/*                                        LANDPAGE                                        */




/* NAVBAR TOP */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:70px;
  background:rgba(20,6,6,0.9);
  backdrop-filter:blur(8px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 30px;
  z-index:100;
  border-bottom:2px solid #6b1d00;
}

.nav-logo{
  font-size:12px;
  color:#ffcc33;
}

.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:#ffcc33;
  font-size:10px;
  transition:0.3s;
}

.nav-links a:hover{
  color:#fff;
  text-shadow:0 0 10px orange;
}

.nav-btn{
  font-family: 'Orbitron', sans-serif;
  padding:12px 22px;
  background:linear-gradient(#ffcc33,#ff9900);
  border:3px solid #6b1d00;
  color:#3b0d00;
  cursor:pointer;
  font-size:13px;
  letter-spacing:2px;
  transition:0.3s;
}

.nav-btn:hover{
  transform:scale(1.1);
  box-shadow:0 0 15px orange;
}

/* HERO */
.hero{
  min-height:100vh;
  padding-top:100px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:radial-gradient(circle,#3b1200,#000);
}

.logo{
  width:clamp(250px,40vw,600px);
  animation:logoIn 1.5s ease, float 4s ease-in-out infinite;
  filter:drop-shadow(0 0 30px orange);
  animation:logoIn 1.5s ease, float 4s ease-in-out infinite, glowPulse 2s infinite alternate;
}

@keyframes float{
  0%,100%{ transform:translateY(0px); }
  50%{ transform:translateY(-10px); }
}


@keyframes glowPulse{
  from{ filter:drop-shadow(0 0 20px orange); }
  to{ filter:drop-shadow(0 0 40px orange); }
}

@keyframes logoIn{
  0%{transform:scale(0.5);opacity:0}
  100%{transform:scale(1);opacity:1}
}

.reveal{
  opacity:0;
  transform:translateY(60px);
  transition:0.6s ease;
}

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





.frase{
  margin-top:30px;
  font-size:clamp(10px,1.5vw,18px);
  color:#ffcc33;
  opacity:0;
  animation:fadeIn 1s forwards 0.5s;
}

@keyframes fadeIn{to{opacity:1}}

.btn{
  margin-top:40px;
  padding:15px 30px;
  background:linear-gradient(#ffcc33,#ff9900);
  border:4px solid #6b1d00;
  color:#3b0d00;
  cursor:pointer;
  font-family:inherit;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.1);
  box-shadow:0 0 20px orange;
}

/* SECCIONES */
.section{
  padding:100px 40px;
  text-align:center;
}

.big-text{
  font-size:clamp(18px,3vw,40px);
  margin-bottom:40px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.block{
  padding:30px;
  border:4px solid #6b1d00;
  background:linear-gradient(#ffcc33,#ff9900);
  color:#3b0d00;
  transition:0.3s;
}

.block:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px orange;
}

/* PARTICULAS */
.spark{
  position:absolute;
  width:6px;
  height:6px;
  background:orange;
  animation:rise linear infinite;
}

@keyframes rise{
  from{transform:translateY(100vh);opacity:1}
  to{transform:translateY(-10vh);opacity:0}
}

/* RESPONSIVE */
@media(max-width:768px){
  .navbar{
    flex-direction:column;
    height:auto;
    padding:10px;
    gap:10px;
  }
  .nav-logo {
    margin-bottom: 10px;
    color: #fff;
  }

  .nav-btn{display: none;}

  .nav-links{
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero{
    padding-top:140px;
  }
}



/*                                        GALERIA                                        */
/* GALERIA */
.galeria-container{
  padding-top:120px;
  text-align:center;
}

.titulo{
  font-family:'Orbitron', sans-serif;
  font-size:clamp(24px,4vw,50px);
  margin-bottom:40px;
}

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

.grid img{
  width:100%;
  height:250px;
  object-fit:cover;
  border:3px solid #6b1d00;
  cursor:pointer;
  transition:0.3s;
}

.grid img:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px orange;
}

/* LIGHTBOX */
#lightbox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:999;
}

#lightbox img{
  max-width:90%;
  max-height:90%;
  border:4px solid #ff9900;
}



/* POSTULARSE */



.form-section{
  padding-top:120px;
  max-width:600px;
  margin:auto;
  text-align:center;
}

.subtitle{
  margin-bottom:30px;
  color:#aaa;
}

.form-group{
  display:flex;
  flex-direction:column;
  text-align:left;
  margin-bottom:20px;
}

.form-group label{
  margin-bottom:5px;
  font-size:14px;
}

input, textarea{
  padding:12px;
  border:2px solid var(--border-color);
  background:#111;
  color:#fff;
  font-family:'Inter', sans-serif;
  transition:0.3s;
}

input:hover, textarea:hover{
  border-color:var(--color-secondary);
}

textarea{
  min-height:100px;
  resize:none;
}

input:focus, textarea:focus{
  outline:none;
  border-color:var(--color-secondary);
  box-shadow:0 0 10px orange;
}

#status{
  margin-top:15px;
  font-size:14px;
}

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

@media (max-width: 768px){


  .form-section{
    max-width:100%;
    margin:0 15px;
    padding:25px 15px;
  }

  .titulo{
    font-size:clamp(20px,6vw,28px);
  }

  .subtitle{
    font-size:14px;
  }

  .form-group label{
    font-size:13px;
  }

  input, textarea{
    font-size:14px;
    padding:14px;
  }

  textarea{
    min-height:120px;
  }

  .btn{
    width:100%;
    font-size:14px;
    padding:14px;
  }

}


