
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  
.modal {
    display: none; /* Ocultar el modal por defecto */
    position: fixed;
    z-index: 1; /* Asegura que el modal esté encima de otros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Agrega scroll si el contenido es grande */
    background-color: rgba(0,0,0,0.4); /* Fondo semi-transparente */
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* Centra el modal */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Ancho del modal */
  }




 
  
  .modal-content .form-group {
    margin-bottom: 15px;
    width: 100%; /* Asegúrate de que el contenedor de los inputs ocupe el ancho completo */
  }
  
  .modal-content input[type="text"],
  .modal-content input[type="tel"],
  .modal-content input[type="date"],
  .modal-content input[type="time"],
  .modal-content select {
    width: 100%; /* Asegúrate de que los inputs y selects ocupen el ancho completo del contenedor */
    box-sizing: border-box; /* Incluye padding y border en el cálculo del ancho total */
    padding: 10px; /* Ajusta el padding para el espacio interior */
    border: 1px solid #ccc; /* Agrega un borde */
    border-radius: 4px; /* Opcional: Agrega bordes redondeados */
    font-family: poppins; /* Aplica la fuente que desees */
  }
  
  .step-buttons {
    margin-top: 20px;
    text-align: center; /* Centra los botones */
  }
  
  .step-buttons .step-button {
    padding: 10px 20px; /* Ajusta el padding para los botones */
    margin: 0 5px; /* Añade espacio entre los botones */
    border: none; /* Remueve el borde por defecto */
    border-radius: 4px; /* Opcional: Agrega bordes redondeados */
    cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
    background-color: #007bff; /* Color de fondo del botón */
    color: #fff; /* Color del texto del botón */
  }
  
  .step-buttons .step-button.prev {
    background-color: #9da1a4; /* Color diferente para el botón anterior */
  }







  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }



  body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
  }
  
  header {
    background-color: #ffffff;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  
  .logo {
    height: 80px;
    width: 280px; /* Ajusta el tamaño del logo según sea necesario */
    margin-bottom: 10px;
  }
  
  nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    list-style: none;
    margin: 0;
    flex-direction: row;
  }
  
  nav ul li {
    margin-right: 1rem;
    margin: 0 10px;
  }
  
  nav ul li a {
    color: rgb(18, 155, 190);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    font-weight: bold;
  }
  
  nav ul li a:hover {
    opacity: 0.8;
  }
  

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 120px; /* Ajusta el tamaño del logo para pantallas más pequeñas */
        height: auto;
    }
}



  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .hero {
    background-color:rgb(18, 155, 190);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: auto;
    width: auto;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .service-card h2 {
    color: #3f51b5;
    margin-top: 0;
  }
  
  .service-card .material-icons {
    font-size: 3rem;
    color: rgb(18, 155, 190);
    margin-bottom: 1rem;
  }


  .service-card2 {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
  }
  
  .service-card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .service-card2 h2 {
    color: #3f51b5;
    margin-top: 0;
  }
  
  .service-card2 .material-icons {
    font-size: 3rem;
    color: rgb(18, 155, 190);
    margin-bottom: 1rem;
  }


  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .cta-button {
    display: inline-block;
    background-color: rgb(18, 155, 190);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }

  .cta-button2 {
    display: inline-block;
    background-color: rgb(255, 255, 255);
    color:  rgb(18, 155, 190);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #48D1CC;
  }

  .cta-button2:hover {
    background-color: #48D1CC;
  }

  /* Estilos mejorados para el modal de reserva y pago */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
  }

  .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }

  .payment-options {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
  }

  .payment-option {
    text-align: center;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
  }

  .payment-option:hover {
    background-color: #f0f0f0;
  }

  .payment-option.selected {
    background-color: rgb(18, 155, 190);
    color: white;
    border-color: rgb(18, 155, 190);
  }

  .payment-option img {
    max-width: 120px;
    height: auto;
    margin-bottom: 0.5rem;
  }

  #reservationForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .step {
    display: none;
  }

  .step.active {
    display: block;
  }

  .step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
  }

  .step-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }

  .step-button.next {
    background-color: rgb(18, 155, 190);
    color: white;
    font-family: poppins;
  }

  .step-button.prev {
    background-color: #f0f0f0;
    color: #333;
    font-family: poppins;
  }

  .step-button:hover {
    opacity: 0.9;
  }

  .progress-bar {
    width: 100%;
    height: 5px;
    background-color: #f0f0f0;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    overflow: hidden;
  }

  .progress {
    width: 0;
    height: 100%;
    background-color:rgb(18, 155, 190);
    transition: width 0.3s ease;
  }


  .poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}




.carousel {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0;
    border-radius: 6px;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-images img {
    width: 100%;
    height: auto;
}

.carousel-button {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    z-index: 100;
}



.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}






.social {
	position: fixed; /* Hacemos que la posición en pantalla sea fija para que siempre se muestre en pantalla*/
	left: -4.6px; /* Establecemos la barra en la izquierda */
	top: 200px; /* Bajamos la barra 200px de arriba a abajo */
	z-index: 2000; /* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */

}

	.social ul {
		list-style: none;
    margin: 0;
	}

	.social ul li a {
		display: inline-block;
		color:#fff;
		padding: 5px 5px;
		text-decoration: none;
		-webkit-transition:all 500ms ease;
		-o-transition:all 500ms ease;
		transition:all 500ms ease; /* Establecemos una transición a todas las propiedades */
    border-radius: 4px;
    margin-bottom: 5px;
	}

 

	.social ul li .facebook {background:#426bc5;} /* Establecemos los colores de cada red social, aprovechando su class */
	.social ul li .whatsapp {background: #0bac19;}
	.social ul li .mail {background: #979494;}

	.social ul li a:hover {
		background: rgb(18, 155, 190); /* Cambiamos el fondo cuando el usuario pase el mouse */
		padding: 10px 10px; /* Hacemos mas grande el espacio cuando el usuario pase el mouse */
	}





    i.fa{height:30px; width:30px; font-size:20px}
    .facebook:hover{color:#ffffff}
    .whatsapp:hover{color:#ffffff}
    .mail:hover{color:#ffffff}




    .social .close {
        position: absolute;
        top: -55px;
        right: -21.8px;
        padding: 5px;
        cursor: pointer;
        text-decoration: none;
        background: transparent;
        border: none; /* Asegúrate de que no haya borde */
      }

      .social .close i {
        color: rgb(0, 0, 0);
        transition: color 0.3s; /* Añade una transición suave para el cambio de color */
        background: transparent;
      }
      
      .social .close:hover i {
        color: #3f51b5; /* Cambia a tu color deseado aquí */
        background: transparent;
        
      }





    .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas de igual ancho */
    grid-template-rows: repeat(5, 1fr); /* 4 filas de igual altura */
    gap: 20px; /* Espacio entre los elementos de la grilla */
    padding: 10px;
}

.grid-item img {
    width: 95%; /* La imagen ocupa el 100% del ancho del contenedor */
    height: 130px; /* Mantiene la proporción de la imagen */
    display: block; /* Elimina el espacio blanco debajo de las imágenes */
    border-radius: 8px; /* Opcional: agrega bordes redondeados a las imágenes */
}

/* Ajuste de contenedor para pantallas más pequeñas */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en pantallas más pequeñas */
        grid-template-rows: repeat(6, 1fr); /* 6 filas en pantallas más pequeñas */
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr; /* 1 columna en pantallas muy pequeñas */
        grid-template-rows: repeat(12, 1fr); /* 12 filas en pantallas muy pequeñas */
    }
}





/* Estilos para el botón */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgb(18, 155, 190);;
    color: white;
    border: none;
    border-radius: 50%; /* Hace el botón redondo */
    padding: 10px;
    font-size: 24px; /* Tamaño del ícono */
    cursor: pointer;
    display: none; /* Ocultar el botón inicialmente */
    z-index: 9999; /* Asegúrate de que el botón esté encima de todos los elementos */
    text-align: center; /* Centrar el ícono dentro del botón */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Agregar sombra */
  }
  
  #scrollToTopBtn:hover {
    background-color: rgb(14, 96, 117);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Aumentar la sombra al hacer hover */
  }


  .map-container {
    position: relative;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #f0f0f0;
    border: 1px solid #ddd;
  }
  
  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }



