@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');

.panel-exp {
  font-family: 'Muli', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
} 


.container-exp {
  display: flex;
  width: 80vw; /* Aumenta el ancho del contenedor */
  margin: 0 auto; /* Centra el contenedor en la página */
  padding: 30px;
}



.castillo-panel {
  padding: 20px; /* Agrega espacio alrededor del contenido */
}

.castillo-panel h2 {
  margin-bottom: 15px; /* Espacio entre el título y el siguiente contenido */
}

.castillo-panel h6 {
  margin-bottom: 25px; /* Espacio entre el subtítulo y el siguiente contenido */
  line-height: 1.6; /* Ajusta el interlineado para mejorar la legibilidad */
}


.panel-exp {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 5px;
  position: relative;
  -webkit-transition: all 700ms ease-in;
}

.panel-exp h3 {
  font-size: 24px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  opacity: 0;
}

.panel-exp.active {
  flex: 5;
}

.panel-exp.active h3 {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
}

@media (max-width: 480px) {
  .container-exp {
    width: 100vw;
  }

  .panel-exp:nth-of-type(4),
  .panel-exp:nth-of-type(5) {
    display: none;
  }
}

