/*/////////////////////////////////////////// MAIN ///////////////////////////////////////////////*/
.hero-liceo{
  position: relative;
  height: 90vh;
  background-color: #FF0000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem;
}
.hero-liceo canvas{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-text{
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-text h1{
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.hero-text h2{
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FFD700;
  font-weight: 600;
}
.hero-text p{
  font-size: 1.1rem;
  color: white;
  margin-bottom: 2rem;
}
.hero-btn{
  background-color: #FFD700;
  color: #AF0000;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.hero-btn:hover{
  background-color: #e6c200;
}
/*///////////////////////////////////////// TIMELINE //////////////////////////////////////////////*/
.timeline-container{
  position: relative;
  width: 75%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.timeline-container::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  border-left: 2px dotted #FFD700;
  z-index: 0;
}
.timeline-step{
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.timeline-step.right{
  flex-direction: row-reverse;
}
.timeline-dot{
  position: absolute;
  top: 22%;
  left: 49.9%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #AF0000;
  border: 3px solid #FFD700;
  border-radius: 50%;
  z-index: 1;
}
.timeline-content{
  width: 45%;
}
.timeline-step.left .timeline-content{
  margin-right: auto;
  text-align: right;
}
.timeline-step.right .timeline-content{
  margin-left: auto;
  text-align: left;
}
.timeline-content h3{
  margin: 0;
  font-size: 1.2rem;
  color: #AF0000;
}
.timeline-content p{
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: #333;
}
/*/////////////////////////////////////////// REQUISITOS ///////////////////////////////////////////////*/
.documentos-section{
  width: 90%;
  /*max-width: 1000px;*/
  width: 100%;
  margin: 3rem auto;
  text-align: center;
  background-color: #AF0000;
  padding: 10px;
}
.documentos-section h2{
  font-size: 2rem;
  color: #AF0000;
  margin-bottom: 2rem;
}
.documentos-grid{
  /*display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;*/
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
}
.documento-card{
  background-color: #fff;
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  width: 200px;
  height: 250px;
}
.documento-card:hover{
  transform: translateY(-5px);
}
.documento-card i{
  font-size: 2rem;
  color: #AF0000;
  margin-bottom: 1rem;
}
.documento-card p{
  font-size: 1rem;
  color: #333;
  margin: 0;
}
.documento-card span{
  font-size: 0.9rem;
  color: #666;
}
.documentos-nota{
  margin-top: 2rem;
  font-weight: bold;
  color: #FFFFFF;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.documento_icon{
  width: 70px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.documento_icon img{
  width: 100%;
  height: auto;
}
/*/////////////////////////////////////////// RESPONSIVE ///////////////////////////////////////////////*/
@media screen and (max-width: 800px){
  .timeline-dot{    
    top: 13%;    
  }
}