* {
  
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  
  background-color: #E3DCD1;
  
}

/* Header */

.header {
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #E3DCD1;
  box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
  position: sticky;
  top: 0;
  z-index: 1;
}

.container1 {
  width: 100%;
  display: flex;
  justify-content: flex-start; /* Cambiado de space-between a flex-start */
  align-items: center;
}

.logo {
  width: 700px;
  height: auto;
  border-radius: 40%;
  overflow: hidden;
  margin-right: 30px; 
}

.logo img {
  width: 450px;
  height: auto;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
}


.desplegable nav ul.menu {
  list-style-type: none;
  padding: 0;
  display: flex;
}

.desplegable nav ul.menu li {
  margin-right: 20px;
}

.desplegable nav ul.menu li a {
  font-size: 20px;
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.desplegable nav ul.menu li a:hover {
  color: #ff0000;
}

#inicio {
  
  padding: 20px;
  margin: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
}
.container2 {
  text-align: center;
  max-width: 95%;
  
  margin: 20 auto;
  padding: 10px;
  margin-bottom: 20px;
}
.container2 p {
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
  text-decoration: wavy;
  
}
.container2 h2 {
  padding: 10px;
}

.animated-text {
  
  animation: blink 1s linear infinite;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #232f3e;

}

.hero {
  text-align: center;
  padding: 50px 0;
  color: #232f3e;
}
 .hero h1 {
  font-size: 20px;
  padding: 10px;
}
.cita {
  
  font-size: 20px;
  padding: 30px;
  
}
.bton {
  font-size: large;
  text-align: center;
  background-color: #333;
  color: white;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
  
}
.bton:hover {
  transform: scale(2.6);
  background-color: #555;
}



#sobre-nosotros {
  background-color: #E3DCD1;
  padding: 20px;
  margin: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
}
.container3 {
  display: flex;
  max-width: 100%;
  margin: 20 auto;
  padding: 10px;
  margin-bottom: 20px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  
}
.gallery-item {
  margin-top: 20px;
  position: relative;
  max-width: 100%;
  
  
}
.image-text {
  
  position: absolute;
  margin-left: 25%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #bbb;
  font-size: 20px;
  transition: opacity 0.3s ease-in-out;
}
.gallery-image {
  
  width: 50%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
}
.gallery-image:hover {
  transform: scale(1.1);
}

.gallery-image:active {
  transform: scale(1.2);
}
.letras {
  max-width: 100%;
  padding-top: 20px;
  margin-top: 30px;
  justify-content: space-between;
  box-shadow: 0 0 15px rgba(231, 40, 40, 0.5);
  }
.letras h2  {
  font-size: 30px;
  color: #232f3e;
  text-align: center;
  margin-bottom: 20px;
}
.letras p {
  font-size: 20px;
  color: #232f3e;
  text-align: justify;
  margin: 12px;
  margin-bottom: 20px;
}
.appointment {
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.btn {
  font-size: large;
  text-align: center;
  background-color: #333;
  color: white;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
}
.btn:hover {
  transform: scale(1.6);
  background-color: #E3DCD1;
  color: #333;
}
/* Gallery */
#galleria {
  background-color: #E3DCD1;
  padding: 20px;
  margin: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
}

.fotos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  
}
.galleria-item {
  margin-top: 20px;
  position: relative;
  max-width: 100%;
  
  
}
.image-texto {
  
  position: absolute;
  margin-left: 25%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #bbb;
  font-size: 20px;
  transition: opacity 0.3s ease-in-out;
}
.gallery-imagen {
  
  width: 50%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
}
.gallery-imagen:hover {
  transform: scale(1.1);
}

.gallery-imagen:active {
  transform: scale(1.2);
}

.appointment {
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.btn {
  font-size: large;
  text-align: center;
  background-color: #333;
  color: white;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
}
.btn:hover {
  transform: scale(1.6);
  background-color: #E3DCD1;
  color: #333;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
#Policies {
  background-color: #E3DCD1;
  color: #232f3e;
  padding: 20px;
  margin: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
}
.container6 {
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(231, 40, 40, 0.5);
  padding: 20px;
  max-width: 95%;
  margin: 20 auto;
  margin-bottom: 20px;
}
/* Info Columns */
.info-columns {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info-column {
  flex-basis: calc(33.333% - 20px);
  margin-bottom: 20px;
}

.info-column h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.info-column ul {
  padding-left: 20px;
}

.info-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  text-align: auto;
}
.dias li   {
  text-align: justify;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  text-align: auto;
}

/* Testimonials */
#testimonios {
  white-space: auto;
  overflow: hidden;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  
}
.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px;
  padding: 20px;
  border-radius: 10px;
  max-width: 100%;
  margin: 20px auto;
  padding: 10px;
  margin-bottom: 20px;
}
#testimonios::-webkit-scrollbar {
  display: none;
}

.deslizador-testimonios {
  overflow: hidden;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
}
.testimonio {
  display: inline-block;
  width: 300px;
  border-radius:10px;
  overflow: auto;
  padding: 20px;
  margin: 20px;
  box-shadow: 0 0 10px rgba(10, 10, 10, 1.1);
  text-align: center;
  flex: 0 0 auto;
}
.testimonio img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.testimonio-texto {
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  max-height: 200px;
  overflow: auto;
}
.estrellas {
  color: gold;
  margin-bottom: 10px;
  padding-top: 60px;
}

.estrellas span {
  font-size: 30px;
  font-weight: bold;
}
/* Footer */

.pie {
  padding: 20px;
  margin: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
}

.contact-info {
  margin-bottom: 10px;
}

.contact-info p {
  margin-left: 10px;
  margin-bottom: 10px;
  color: #f9f0f0; /* Asegúrate de que el color del texto sea visible en el fondo de tu pie de página. */
  font-size: 14px;
}

.footer-container {
  background-color: #d1c7b4;
  display: flex;
  
  justify-content: space-between;
  align-items: center;
  }
  .links {
    padding-left: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    }

    .links a {
    color: #f9f0f0;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    }

    .links a:hover {
    color: #0077be;
    }
    .wrapper {
      display: inline-flex;
      list-style: none;
    }
    
    .wrapper .icon {
      position: relative;
      background: #ffffff;
      -webkit-border-radius: 50%;
      padding: 15px;
      margin: 10px;
      width: 50px;
      height: 50px;
      font-size: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      box-shadow: 0 0 15px rgba(49, 48, 48, 1.5);
      cursor: pointer;
      transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .wrapper .tooltip {
      position: absolute;
      top: 0;
      font-size: 14px;
      background: #ffffff;
      color: #ffffff;
      padding: 5px 8px;
      -webkit-border-radius: 5px;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .wrapper .tooltip::before {
      position: absolute;
      content: "";
      height: 8px;
      width: 8px;
      background: #ffffff;
      bottom: -3px;
      left: 50%;
      transform: translate(-50%) rotate(45deg);
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .wrapper .icon:hover .tooltip {
      top: -45px;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    
    .wrapper .icon:hover span,
    .wrapper .icon:hover .tooltip {
      text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
    }
    
    .wrapper .facebook:hover,
    .wrapper .facebook:hover .tooltip,
    .wrapper .facebook:hover .tooltip::before {
      background: #1877f2;
      color: #ffffff;
    }
    
    .wrapper .instagram:hover,
    .wrapper .instagram:hover .tooltip,
    .wrapper .instagram:hover .tooltip::before {
      background: #e4405f;
      color: #ffffff;
    }
    .wrapper .whatsapp:hover,
    .wrapper .whatsapp:hover .tooltip,
    .wrapper .whatsapp:hover .tooltip::before {
      background: #25D366;
      color: #ffffff;
    }
    .copy {
      font-size: 14px;
      color: #f9f0f0;
      text-align: center;
      margin: 30px 0;
    }
    .copy p {
      margin-right: 50px;
    }
    *:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 768px) {
  /* Aquí van los estilos para pantallas con una anchura máxima de 768px */

  .header {
    flex-direction: column;
  }

  .logo img {
    width: 200px;
  }

  .desplegable nav ul.menu {
    flex-direction: column;
    align-items: center;
  }
  

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-image {
    width: 100%;
  }
  .image-text {
  
    margin: auto;
  }
  .letras h2  {
    font-size: 25px;
    
  }
  .gallery-image:hover {
    transform: scale(1.1);
  }
  
  .gallery-image:active {
    transform: scale(1.2);
  }


  .fotos {
    grid-template-columns: 1fr;
  }
  

  .gallery-imagen {
    width: 100%;
    
  }
  .image-texto {
  
    margin: auto;
  }
  .letras h2  {
    font-size: 25px;
    
  }
  .gallery-imagen:hover {
    transform: scale(1.1);
  }
  
  .gallery-imagen:active {
    transform: scale(1.2);
  }

  .info-columns {
    flex-direction: column;
  }

  .info-column {
    flex-basis: 100%;
  }

  .footer-container {
    flex-direction: column;
  }

  .links {
    padding-left: 0;
  }
}
  .appointment {
    font-size: x-small;
    margin-left: 10px;
  }
  .bton {
    max-width: 20%;
  }
  .btn {
    max-width: 20%;
   
  }
  .btn:hover {
    transform: scale(1.6);
    background-color: #E3DCD1;
    color: #333;
  }


      


    
