* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}


.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Alinea las imágenes a la izquierda */
}



.image-container:nth-child(4n) {
  margin-right: 0; /* Elimina el margen derecho de la cuarta imagen de cada fila */
}

@media (max-width: 768px) {
  .image-container {
    width: calc(50% - 40px); /* Ajusta el ancho para 2 imágenes por fila en dispositivos pequeños */
    margin-right: 20px; /* Añade un margen derecho de 20px entre las imágenes */
  }
}

/* Ajustes para contenedores de imágenes */
.image-container {
  width: 10cm;
  height: 10cm;
  margin-bottom: 20px;
  overflow: hidden;
  margin-right: 50px; /* Añade un margen derecho de 10px entre las imágenes */
  margin-left: 75px; /* Añade un margen derecho de 10px entre las imágenes */
}



.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.description {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 16px;
}

.expand-description {
  color: red;
  cursor: pointer;
}

.horizontal-align {
  display: flex;
  gap: 10px; /* Ajusta el espacio entre los elementos según tus necesidades */
}





button, input[type="submit"] {
  position: relative;
  margin: 0;
  padding: 17px 35px;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid rgba(22, 150, 167, 0.6);
  border-radius: 10px;
  color: #030405;
  font-weight: 600; /* Mantén el peso de la fuente que deseas */
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
  width: 200px;
  font-size: 16px; /* Tamaño de la letra ajustado aquí */
}

button span, input[type="submit"] span {
  color: #2ec8b9;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

button:hover, input[type="submit"]:hover {
  animation: rotate624 0.7s ease-in-out both;
  background-color: rgba(79, 201, 197, 0.2);

  color: #4c4a4a;
}

button:hover span, input[type="submit"]:hover span {
  animation: storm1261 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

@keyframes rotate624 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes storm1261 {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }

  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }

  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }

  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }

  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}

.btn-shine {
  border: 1px solid;
  overflow: hidden;
  position: relative;
}

.btn-shine span, input[type="submit"].btn-shine span {
  z-index: 20;
}

.btn-shine:after, input[type="submit"].btn-shine:after {
  background: #2ec8b9;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.4;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}

.btn-shine:hover:after, input[type="submit"].btn-shine:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}






.btn, input[type="submit"] {
  padding: 1rem 2rem;
  font-weight: 700;
  background: rgb(255, 255, 255);
  color: #574f4f;
  border-radius: .5rem;
  border-bottom: 2px solid #2ec8b9;
  border-right: 2px solid #2ec8b9;
  border-top: 2px solid white;
  border-left: 2px solid white;
  transition-duration: 1s;
  transition-property: border-top, 
     border-left, 
     border-bottom,
     border-right,
     box-shadow;
 }
 
 .btn:hover {
  border-top: 2px solid #2ec8b9;
  border-left: 2px solid #2ec8b9;
  border-bottom: 2px solid #2ec8b9;
  border-right: 2px solid #2ec8b9;
  box-shadow: rgba(46, 172, 240, 0.4) 5px 5px, rgba(46, 240, 211, 0.3) 10px 10px, rgba(46, 221, 240, 0.2) 15px 15px;
 }

#myModal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  overflow: auto;
}
#myModal .modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
  width: 80%;
  max-width: 700px;
  margin: auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
}
#myModal .modal-content img {
  width: 100%;
  max-height: 70vh; /* Ajusta el tamaño máximo de la imagen */
  object-fit: contain; /* Ajusta la imagen al contenedor */
}
#myModal .description {
  margin-top: 10px; /* Ajuste de la distancia entre la imagen y la descripción */
  text-align: center;
  font-size: 18px; /* Tamaño de la fuente aumentado */
}
#myModal .show-more {
  display: none; /* Ocultar inicialmente el botón "Mostrar más" */
  cursor: pointer;
  color: blue; /* Color del enlace */
}
#myModal .show-more.active {
  display: inline-block; /* Mostrar el botón "Mostrar más" solo si está activo */
}
#myModal .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
#myModal .close:hover,
#myModal .close:focus {
  color: #bbb;
  text-decoration: none;
}




body {

  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(46, 200, 185, 0.2)), url('prueba1.jpg');
  background-size: cover; /* Ajusta la imagen de fondo para cubrir todo el cuerpo */
  background-repeat: no-repeat; /* Evita que la imagen de fondo se repita */
  background-attachment: fixed; /* Fija la imagen de fondo para que no se desplace con el contenido */
  background-color: rgb(0, 0, 0);
  margin: auto;
  width: auto;
  

  }

.text-center{
text-align:center;
  font-family: 'Courier New', Courier, monospace;
}

.wrapp1{
display: flex;
  justify-content: center; /* Centra horizontalmente los elementos en el contenedor */
  align-items: center; /* Centra verticalmente los elementos en el contenedor */
font-size: 20px;
  
}
  /* Estilos adicionales para hacerlo responsive */
  @media (max-width: 768px) {
    .wrapp1 {
        font-size: 16px; /* Reduce el tamaño del texto en dispositivos más pequeños */
    }
  }


  @media (max-width: 480px) {
    .wrapp1 {
        font-size: 14px; /* Reduce aún más el tamaño del texto en dispositivos extra pequeños */
    }
  }


/*Fondo botones*/

header {
  width: 100%;
  height: auto; /* Cambiado a auto para adaptarse al contenido */
  padding: 20px 0;
  font-family: 'Courier New', Courier, monospace;
  background: rgba(185, 37, 37, 0); /* Fondo 100% transparente (completamente transparente) */
  overflow: hidden;
}
 /* Estilos para el texto del encabezado */
 header h1 {
  font-size: 2em; /* Tamaño de fuente inicial */
}

/* Media query para pantallas más pequeñas */
@media screen and (max-width: 768px) {
  header h1 {
      font-size: 1.5em; /* Tamaño de fuente más pequeño para pantallas más pequeñas */
  }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 10px; /* Espacio entre los elementos */
}

nav li {
    margin: 0;
    padding: 0;
}

nav li a {
    text-decoration: none;
}


nav img {
    max-width: 2cm; /* Establece el ancho máximo de la imagen a 3 centímetros */
    max-height: 1.6cm; /* Establece la altura máxima de la imagen a 3 centímetros */
}




.wrapp {
  max-width: 1800px;
  width: 90%;
  margin: auto;
  margin-top: 0; /* Elimina el margen superior */
  overflow: hidden;
}

 /* Media query para pantallas más pequeñas */
 @media screen and (max-width: 768px) {
  .wrapp {
      width: 95%; /* Reducir el ancho para pantallas más pequeñas */
      max-width: none; /* Eliminar el ancho máximo para que el contenedor se ajuste completamente */
  }
}

nav {
	float: right;
}

nav ul li {
	display: inline-block;
	margin:0px 5px;
}

  
  /*Color botones*/
  nav ul li a {
    display: block;
    background: rgba(88, 66, 66, 0); /* Fondo 100% transparente (completamente transparente) */
    color: #657979;
    padding:10px 20px;
    text-decoration: none;
    border-radius:3px;
    transition:all 300ms ease;
}

nav ul li a:hover {
  color: #000000;
background-color: rgba(0, 255, 229, 0.2); /* Establece el color de fondo final */
}

/* Estilo para el enlace seleccionado o en la página actual */
 /* Estilo para el enlace seleccionado o en la página actual */
 #menu a.current {
  color: #000000; /* Cambia el color del texto */
  background-color: rgba(0, 255, 229, 0.3); /* Establece el color de fondo final */

}

.mensaje {
  background: #2ec8b9;
  padding: 20px;
  font-family: Qwigley;
  color: #fff;
  text-align: center;
  margin: 20px 0;
  border-radius: 5px;
  font-size: 25px;


}

.bienvenido {
  background: #2ec8b9;
    padding: 20px;
    font-family: Qwigley;
    color: #ffffff;
    text-align: center;
    margin: 20px 0;
    border-radius: 5px;
    font-size: 25px;
    

  }     




/* Estilos específicos para el pie de página */
footer {
  background: rgba(22, 11, 11, 0); /* Fondo 100% transparente (completamente transparente) */
  color: #000000;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  padding: 20px 0;
  max-width: 1800px;
  width: 90%;
  margin: auto;
  font-size: 20px;
}

footer .divider {
  width: 100%; /* Ancho de la línea divisoria */
  height: 90px; /* Grosor de la línea divisoria */
  background-color: #2ec8b9; /* Color de la línea divisoria */
  margin: 10px 0; /* Espaciado superior e inferior de la línea divisoria */
  border-radius: 5px;
  position: relative; /* Agrega posición relativa al contenedor */
  display: flex; /* Utiliza flexbox para centrar elementos */
  align-items: center; /* Centra verticalmente */
  justify-content: center; /* Centra horizontalmente */
}

footer .divider .fas {
  color: #fff; /* Cambia el color del icono */
  font-size: 24px; /* Cambia el tamaño del icono */
  margin: 0 10px; /* Espacio entre el icono y otros elementos (ajusta según sea necesario) */
}


 
 .whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 10px;
  font-size: 4rem; /* Tamaño del ícono */
  color: green; /* Color del ícono */
}

