@import url('https://fonts.cdnfonts.com/css/bebas-kai');
@import url('https://fonts.googleapis.com/css?family=Bebas Neue');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Roboto:wght@400;700&display=swap');
.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}


@font-face {
  font-family: 'Roboto Bold';
  src: url('ruta/de/tu/fuente/roboto-bold.woff2') format('woff2');
  /* Agrega otros formatos de fuente si los tienes (woff, ttf, etc.) */
  font-weight: bold;
  font-style: normal;
}


*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  cursor: pointer;



}
.whatsapp {
      position: fixed;
    width: 80px;
    height: 80px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 54px;
    z-index: 1000;
    cursor: pointer;
}

.what-a {
    padding: 8px 16px;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;

}

.navbar {
  box-shadow: 0px 5px 10px 0px #000000;
  position: relative;
  width: 100%;
  background: linear-gradient(#FFCD00, #FF9500, #FFA000, #FFCD00);
  color: #000;
  opacity: 0.85;
  z-index: 100;


}

.navbar-container {
  display: flex;
  justify-content: center;
  height: 77px;
  align-items: center;


}

.menu-items {
  order: 2;
  display: flex;
  ALIGN-ITEMS: center;

}

.logo {
  order: 1;
  font-size: 2.3rem;
  height: 65px;
  transition: transform 0.3s;
  padding-right: 9%;
  cursor: pointer;
}

.menu-items li {
  list-style: none;
  font-size: 1.3rem;
}

.navbar a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
  font-family: 'Bebas Neue', sans-serif;
  padding-right: 87px;


}

.navbar a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 69px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 28px;
    width: 35px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #000000;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background: linear-gradient(#FFCD00, #FF9500, #FFA000, #FFCD00);
    height: 100vh;
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 40px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
    overflow: scroll;

  }

  .navbar .menu-items li {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;

  }

  .logo {
    position: absolute;
    top: 0px;
    right: -21px;
    font-size: 2.5rem;
    height: 65px;
    transition: transform 0.3s;

  }


  .oval-button {
    width: 200px;
    /* Ajusta el ancho del botón */
    height: 41px;
    /* Ajusta el alto del botón */
    border-radius: 25px;
    /* Asegura que la mitad del alto sea igual al radio para lograr una forma ovalada */
    background: linear-gradient(90deg, #000000, #79696970, #000000);
    background-color: #000000;
    /* Color del texto del botón */
    font-size: 18px;
    /* Tamaño del texto */
    border: 3px solid #FFFFFF;
    /* Opcionalmente, puedes agregar otros estilos, como el color del texto y el fondo */
    color: #FFFFFF;
    cursor: pointer;
    /* Cambia el cursor al pasar sobre el botón */
    font-family: 'Bebas Neue', sans-serif;
    transition: transform 0.3s;
    margin-left: -24px
  }

  .navbar-container input[type="checkbox"]:checked~.menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(-45deg);
  }

}

@media (max-width: 500px) {
  .navbar-container input[type="checkbox"]:checked~.logo {
    display: none;
  }

}

.oval-button {
  width: 200px;
  /* Ajusta el ancho del botón */
  height: 41px;
  /* Ajusta el alto del botón */
  border-radius: 25px;
  /* Asegura que la mitad del alto sea igual al radio para lograr una forma ovalada */
  background: linear-gradient(90deg, #000000, #79696970, #000000);
  background-color: #000000;
  /* Color del texto del botón */
  font-size: 18px;
  /* Tamaño del texto */
  border: 3px solid #FFFFFF;
  /* Opcionalmente, puedes agregar otros estilos, como el color del texto y el fondo */
  color: #FFFFFF;
  cursor: pointer;
  /* Cambia el cursor al pasar sobre el botón */
  font-family: 'Bebas Neue', sans-serif;
  transition: transform 0.3s;
  margin-right: -73px;
}

.oval-button:hover {
  transform: scale(1.1);
  background: linear-gradient(#303030, #131313);
  border: 3px solid #FFCD00;
  color: #FFCD00;

}

.logo img {
  height: 65px;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.1);
}

/* aca es donde empieza el slider*/



.container3 {
  display: flex;
  flex-direction: row;
  margin-left: 20%;
  margin-right: 20%;
  justify-content: center;
  align-items: center;
}

.image2 {
  flex: 0;
}

.text1 {
  flex: 2;
  color: white;
  text-align: justify;
  

}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

.seccion1 {
  margin: 0%;
  padding-top: 5%;
  padding-bottom: 5%;
  background: linear-gradient(to bottom, #303030, #000, #131313);
}

h2 {
  color: #e0ac04;
  font-family: 'Roboto Bold', sans-serif;
}

.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(#FFCD00, #FF9500, #FFA000, #FFCD00);
}

.image-container {
  flex: 1;
  margin: 2px;
  overflow: hidden;
 
}

.large {
  flex: 2;
  display: grid;
  justify-content: space-around;

  /* La imagen grande ocupa el doble de espacio horizontal */
}

.img1 {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.img1:hover {
  transform: scale(1.1);
}

.img2 {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.img2:hover {
  transform: scale(1.1);
}

.contenedor5 {
  width: 60rem;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 1rem;
  margin-top: 5%;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 1rem;
}

.gallery--item {
  display: block;

  &:first-of-type {
    grid-column: span 2;
  }

  &:last-of-type {
    grid-column: span 2;
  }
}

.gallery--img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 33vh;
  max-height: 300px;
  border-radius: 10px;
  object-fit: cover;
  background: #292935;
  transition: 0.4s ease-in-out 0.1s;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0);

  &:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 48px -2px rgba(0, 0, 0, 0.3);
  }
}

.espacios {
  margin-top: 5%;
}

.map-responsive {

  overflow: hidden;

  padding-bottom: 56.25%;

  position: relative;

  padding-bottom: 360px;

}

.map-responsive iframe {

  left: 0;

  top: 0;

  height: 100%;

  width: 100%;

  position: absolute;

}

/* Estilos para pantallas más grandes (laptops y escritorios) */
.contenedor6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 5%;
}

.sub-container,
.sub-container1 {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-container1 {
  align-items: flex-start;
}

li {
  list-style: none;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
}

.icon {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  flex-direction: column;
}

/* Estilos para tablets (hasta 768px) */
@media (max-width: 768px) {
  .contenedor6 {
    padding-top: 10%;
  }

  .sub-container {
    flex: 100%;
    padding: 10px;
  }

  .sub-container1 {
    flex: 100%;
    padding: 10px;
  }

  .icon {
    justify-content: center;
    /* Ajusta según tus necesidades en tablets */
  }
}

/* Estilos para móviles (hasta 480px) */
@media (max-width: 480px) {
  .contenedor6 {
    padding-top: 15%;
  }

  .icon {
    justify-content: center;
    /* Ajusta según tus necesidades en móviles */
  }
}



footer {
  background: linear-gradient(90deg, #000000, #79696970, #000000);
  background-color: black;
  margin-top: 10%;
  color: #FFFFFF;
  /* Color del texto en el footer */
  padding: 20px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

p {
  margin-bottom: 1px;
  color: #ffffff;
  font-size: 14px;

}

s:hover {
  color: yellow;
}

.f-texto:hover {
  color: yellow;
  cursor: pointer;
}

#open-image-link {
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding: 10px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #2c2c2cbd;
}

.modal-content {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  display: block;
}

.close {
  color: white;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

/* Añadir estilos específicos para pantallas más pequeñas */
.colorte{
  color: #000;
  text-decoration: none;
}

