html,
body,
.view {
  height: 100%;
}

.logo {
  width: 85px;
  margin-right: 25px;
}
.menu {
  text-transform: uppercase;
  font-weight: bold;
  color: #5592fc;
}
.iconos {
  font-weight: bold;
  font-size: 25px;
}

/* Imágenes del carousel - propiedades comunes */
.imagen-1,
.imagen-2,
.imagen-3 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.imagen-1 {
  background-image: url('../img/troje-centro-turistico-angahuan.jpg');
}

.imagen-2 {
  background-image: url('../img/iglesia-enterrada-san-juan-parangaricutiro.jpg');
}

.imagen-3 {
  background-image: url('../img/volcan-paricutin.jpg');
}

.carousel {
  height: 100%;
}
.carousel .carousel-inner {
  height: 100%;
}
.carousel .carousel-inner .carousel-item,
.carousel .carousel-inner .active {
  height: 100%;
}

.navbar {
  background-color: rgb(249, 251, 253);
}

/*Texto del Carrousel*/

.titulo {
  text-transform: uppercase;
  font-size: 60px;
}

.subtitulo {
  font-size: 35px;
}

/* Responsive para textos del carousel */
@media screen and (max-width: 768px) {
  .titulo {
    font-size: 2.5rem;
  }

  .subtitulo {
    font-size: 1.5rem;
  }
}

/*Texto Centro Turistico Angahuan*/

.titulo-hospedaje {
  padding: 0 0 20px 0;
  font-weight: bold;
  text-align: center;
  font-size: 3rem;
}

.subtitulo-hospedaje {
  text-align: justify;
  font-size: 18px;
  font-weight: 300;
}

.hospedaje {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  display: inline-block;
  color: #ffffff;
  background-color: #2c2d97;
  padding: 8px 15px;
  margin-top: -10px;
}

/*Efecto Parallax*/

#parallax {
  position: relative;
  min-height: 250px;
  background: url(../img/mirador_centro_turistico_angahuan_parallax.jpg) center / cover no-repeat fixed;
}

.contenido-angahuan {
  padding: 50px 350px 50px 350px;
  background-color: rgba(65, 65, 64, 0.6);
}

.titulo-angahuan {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 30px;
  color: #eee;
}

.descripcion-angahuan {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  text-align: justify;
  color: #ddd;
}

/************************************* CAJA DE COMENTARIOS **************************************/

.accordion {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 30px;
}

.accordion h4 {
  display: block;
  margin: 0 0 30px 0;
  color: rgb(165, 162, 161);
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}

.accordion .comentarios {
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translate(0, 0);
  z-index: 2;
}

/* Solo aplicar a listas dentro del accordion para evitar afectar otras listas */
.accordion ul {
  list-style: none;
}

.accordion ul li {
  position: relative;
  padding-bottom: 4px;
}

.accordion ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}

.accordion ul li:nth-of-type {
  padding-bottom: 0;
}

.accordion ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
}

.accordion ul li i:before,
.accordion ul li i:after {
  content: '';
  position: absolute;
  background: #ff6873;
  width: 3px;
  height: 9px;
}

.accordion ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}

.accordion ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}

.accordion .comentarios,
.accordion ul li i:before,
.accordion ul li i:after {
  transition: all 1s ease-in-out;
}

.accordion ul li input[type='checkbox'] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.accordion ul li input[type='checkbox']:checked ~ .comentarios {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}

.accordion ul li input[type='checkbox']:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}

.accordion ul li input[type='checkbox']:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

/************************************* FIN CAJA DE COMENTARIOS **************************************/

/*Medias Querys*/

@media screen and (max-width: 1950px) {
  .contenido-angahuan {
    padding: 50px 200px 50px 200px;
  }
}

@media screen and (max-width: 1024px) {
  .contenido-angahuan {
    padding: 50px 80px 30px 80px;
  }
}

@media screen and (max-width: 872px) {
  .contenido-angahuan {
    padding: 50px 30px 50px 30px;
  }
}

@media only screen and (max-width: 768px) {
  .navbar-nav .nav-link {
    color: #000 !important;
  }
  .logo {
    width: 60px;
  }
  .titulo-hospedaje {
    font-size: 2.5rem;
  }

  .subtitulo-hospedaje {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 595px) {
  .contenido-angahuan {
    padding: 50px 15px 30px 15px;
  }

  .titulo-angahuan {
    font-size: 2rem;
    text-align: center;
  }

  .descripcion-angahuan {
    font-size: 1rem;
  }
}
