body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #6d5a82;
}

main {
  max-width: 900px;
  width: 100%;
  margin: auto;
  box-shadow: 0 0 25px #00000026;
  position: relative;
  overflow-x: hidden;
  background-color: #201130;
  color: #E6E6E6;
}

.title-container {
  display: flex;
  width: 90%;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: auto;
}

.title-container img {
  width: 250px;
  border-radius: 1rem;
  
}

.title-container h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 0;
}

.title-container h2 {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
}

.title-container .linea {
  width: 1px;
  height: 100px;
  background-color: rgb(214, 214, 214);
  margin-left: 1rem;
  margin-right: 1rem;
}
.titulo-2{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.titulo-2 h1{
  font-size: 22px;
  margin-bottom: 2px;
}
.titulo-2 h2{
  font-size: 16px;
  margin-top: 0;
}
.imagen-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2rem;
}

.imagen-container img {
  width: 300px;
  border-radius: 1rem;
  box-shadow: 1 1 25px #00000026;
}

.frase-container {
  width: 100%;
  background-color: #31AFE0;
  text-align: center;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: aliceblue;
  font-family: 'Roboto', sans-serif;
}



.eslogan{
  font-size: 12px;
  flex-direction: column;
}

.eslogan p:nth-child(1){
  font-size: 14px !important;
  font-weight: 600;
  margin-bottom: 0;
}

.details-container {
  width: 100%;
  background-color: #201130;
}

.details {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.details a{
  text-decoration: none;
  color: aliceblue;
  display: flex;
  gap: 1rem;
}

.details div {
  display: flex;
  gap: 1rem;
  color: aliceblue;

}

.description-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.description-container ul {
  margin: auto;
  width: 80%;
  background-color: #3c2554;
  border-radius: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
}

.description-container ul li {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.description-container ul li::before {
  content: "• ";
  /* Cambiar el marcador de lista */
  color: #3d3d3d;
  font-size: 30px;
}

.map-container {
  width: 100%;
  display: flex
}

.map-container iframe {
  width: 90%;
  margin: auto;
  border-radius: 1rem;
}

.gallery{
  background-color:#201130 !important;
}

#whatsapp {
  position: fixed;
  bottom: 10px;
  
  
  
  
}

#whatsapp img {
  height: 70px;
  transition: 0.6s;
}

#whatsapp img:hover {
  transform: scale(1.15);
}

@media (max-width:780px) {
  #whatsapp img {
    height: 50px;
  }

  .title-container .linea {
    height: 100px;
  }

  #whatsapp {
    bottom: 2px;
    right: 1px;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
  }
}