.loading-screen {
  display: flex;
  flex-direction: column; /* Alinea los elementos en columna */
  justify-content: center; /* Centra verticalmente */
  align-items: center; /* Centra horizontalmente */
  position: fixed; /* Mantiene la cortinilla en el centro de la pantalla */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #034340; /* Fondo semitransparente */
  z-index: 9999; /* Asegura que la cortinilla esté en la parte superior */
}

.spinner {
  border: 8px solid #f3f3f3; /* Color de fondo */
  border-top: 8px solid #a63717; /* Color del spinner */
  border-radius: 50%;
  width: 50px; /* Tamaño del spinner */
  height: 50px; /* Tamaño del spinner */
  animation: spin 1s linear infinite; /* Animación */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@font-face {
  font-family: "Avenir-Black";
  src: url("../fonts/Avenir-Black.otf");
}

@font-face {
  font-family: "Mukta-Regular";
  src: url("../fonts/Mukta-Regular.ttf");
}

@font-face {
  font-family: "Spectral-Regular";
  src: url("../fonts/Spectral-Regular.ttf");
}

@font-face {
  font-family: "Mukta-ExtraLight";
  src: url("../fonts/Mukta-ExtraLight.ttf");
}

@font-face {
  font-family: "Spectral-Italic";
  src: url("../fonts/Spectral-Italic.ttf");
}

html,
body {
  box-sizing: border-box;
  font-family: "Mukta-Regular";
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow-x: hidden;
}
/******tipografias / fuentes ******/
.font-mukta {
  font-family: "Mukta-Regular";
}
.font-muktaL {
  font-family: "Mukta-ExtraLight";
}

.font-spec {
  font-family: "Spectral-Regular";
}
.font-specI {
  font-family: "Spectral-Italic";
}

.italic {
  font-style: italic;
}

/******* colores ******/
.bg-golden {
  background-color: #a63717;
}

.bg-pink {
  background-color: #b50f65;
}

.bg-green {
  background-color: #034340;
}

.bg-gray {
  background-color: #f0eadd;
}

.text-golden {
  color: #a63717;
}

.text-pink {
  color: #b50f65;
}

.text-green {
  color: #034340;
}

.text-gray {
  color: #f0eadd;
}

.spacing-7 {
  letter-spacing: 7px;
}
.spacing-5 {
  letter-spacing: 5px;
}
.spacing-2 {
  letter-spacing: 2px;
}
.spacing-1 {
  letter-spacing: 1px;
}

ul {
  list-style: none;
}

a:hover {
  color: #f0eadd;
  text-decoration: underline;
}

.btn {
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
  color: #f0eadd;
  text-decoration: none;
  transform: translateY(-10px);
}

.btnp {
  font-size: 20px;
  height: 4rem;
  text-align: center;
  padding: 0.1rem 2rem;
  font-size: 1.1rem;
  display: flex; /* Usa flexbox para alinear el contenido */
  align-items: center; /* Centra verticalmente el contenido */
  justify-content: center; /* Centra horizontalmente el contenido */
  /* color: #fff;  */ /* Descomentar si necesitas el color del texto */
}

.btnp2 {
  color: #b50f65;
  text-align: center;
  padding: 0.1rem 2rem;
  font-size: 1rem;
}

.btnp2:hover {
  color: #b50f65;
  text-align: center;
  padding: 0.1rem 2rem;
  font-size: 1rem;
}

.btnp3 {
  color: #a63717;
  font-size: 20px;
  height: 4rem;
  text-align: center;
  padding: 0.1rem 2rem;
  font-size: 1.1rem;
  display: flex; /* Usa flexbox para alinear el contenido */
  align-items: center; /* Centra verticalmente el contenido */
  justify-content: center; /* Centra horizontalmente el contenido */
  /* color: #fff;  */ /* Descomentar si necesitas el color del texto */
}

.btnp3:hover {
  color: #a63717;
  text-align: center;
  padding: 0.1rem 2rem;
  font-size: 1.1rem;
}

.btnp4 {
  color: #034340;
  text-align: center;
  padding: 0.1rem 2rem;
  font-size: 1.1rem;
}

.btnp4:hover {
  color: #034340;
  text-align: center;
  padding: 0.1rem 2rem;
  font-size: 1.1rem;
}

.desk {
  display: none;
}

.movil {
  display: none;
}

/*******elementos before after******/
.icono:before {
  content: "";
  background: url(../img/icono.png) no-repeat;
  background-size: 80%;
  display: block;
  width: 25px;
  height: 25px;
  margin: auto;
  margin-bottom: 10px;
}

.pleca-white:after {
  content: "";
  background: url(../img/pleca.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 125%;
  height: 16px;
  position: relative;
  left: -13%;
  margin: auto;
}

.pleca-white2:after {
  content: "";
  background: url(../img/pleca.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 70%;
  height: 16px;
  position: relative;
  /* left: -13%; */
  margin: auto;
}

.pleca-golden:after {
  content: "";
  background: url(../img/plecacafe.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 125%;
  height: 16px;
  position: relative;
  left: -13%;
  margin: auto;
}
.pleca-golden2:after {
  content: "";
  background: url(../img/plecacafe.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 70%;
  height: 16px;
  position: relative;
  margin: auto;
}

.pleca-pink:after {
  content: "";
  background: url(../img/plecarosa.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 125%;
  height: 16px;
  position: relative;
  left: -13%;
  margin: auto;
}

.pleca-pink2:after {
  content: "";
  background: url(../img/plecarosa.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 70%;
  height: 16px;
  position: relative;
  margin: auto;
}

.pleca-green:after {
  content: "";
  background: url(../img/plecaverde.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 125%;
  height: 16px;
  position: relative;
  left: -13%;
  margin: auto;
}

/*.circulo:after{
  content: "";
  display: block;
  border-radius: 50%;
  width: 225px;
  height: 226px;
  position: absolute;
  background-color: rgba(255, 0, 0, 0.5);
  top: 0;
  z-index: 0;
  left: 10%;
}*/

.circle {
  display: block;
  border-radius: 50%;
  width: 170px;
  height: 170px;
  position: relative;
  top: 0;
  z-index: 0;
  left: 10%;
}
/* Popup */
.popup {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.popup-content {
  -webkit-box-shadow: 1px -2px 42px 9px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 1px -2px 42px 9px rgba(0, 0, 0, 0.32);
  box-shadow: 1px -2px 42px 9px rgba(0, 0, 0, 0.32);
  justify-content: center;
  position: relative;
  display: flex;
  min-height: 28rem;
  height: auto;
  width: 58rem;
  border-radius: 30px;
  overflow: hidden;
  background-color: #efe9dd !important;
}

.popup .imagen {
  width: 35%;
  position: relative;
}

.popup .imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup .formulario {
  width: 65%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.popup .formulario img {
  width: 8rem;
  height: auto;
}

.popup h2 {
  text-align: center;
  font-size: 10px;
  letter-spacing: 3px;
}

.popup form {
  margin-left: 2rem;
}

.popup input,
.popup textarea,
.popup output {
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid #0d4541;
  border-radius: 8px;
  font-size: 12px;
  color: #6c757d;
}

.popup input[name="acuerdo"]:checked {
  accent-color: #0d4541; /* cambia el color de la casilla */
  outline: 2px solid #0d4541; /* borde extra si quieres */
  background-color: #0d4541; /* para algunos navegadores */
  border: none;
}

.popup select {
  height: 1.5rem;
  background: transparent;
  border: 1px solid #0d4541;
  border-radius: 8px;
  font-size: 12px;
  color: #6c757d; /* Color del texto del select visible */
  padding: 0 0 0 5px;
}

/* Color del texto de cada opción */
.popup select option {
  color: #0d4541 !important; /* Color que quieras para el menú desplegable */
  background: transparent; /* Fondo opcional */
}

.popup .row {
  justify-content: center;
  margin-bottom: 1rem;
  width: 100%;
}

.popup .btn {
  border-radius: 10px;
  width: 30%;
}

.popup .close-btn {
  z-index: 20;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
}

.popup .close-btn svg {
  width: 1.5rem;
  fill: #0d4541;
}

/* Versión móvil del popup */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column; /* Cambiar a diseño vertical */
    width: 90vw; /* Ajusta el ancho al 90% del viewport */
    height: auto; /* Altura automática para acomodar el contenido */
  }

  .popup .imagen {
    width: 100%;
    position: relative;
  }

  .popup .imagen img {
    width: 100%;
    height: 10rem;
    object-fit: cover; /* Asegura que la imagen mantenga su proporción al cubrir el contenedor */
    object-position: left; /* Ajusta la posición hacia la izquierda o derecha */
    transform: scale(1.2); /* Aplica zoom (ajústalo según lo que necesites) */
  }

  .popup .formulario {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }

  .popup .formulario img {
    width: 8rem;
    height: auto;
  }

  .popup h2 {
    text-align: center;
    font-size: 10px;
    letter-spacing: 3px;
  }

  .popup form {
    margin-left: 2rem;
  }

  .popup input,
  .popup textarea {
    height: 1.5rem;
    background: transparent;
    border: 1px solid #0d4541;
    border-radius: 8px;
    font-size: 12px;
  }

  .popup .row {
    justify-content: center;
    margin-bottom: 1rem;
    width: 100%;
  }

  .popup .btn {
    border-radius: 10px;
    width: 30%;
  }

  .popup .close-btn {
    z-index: 20;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
  }

  .popup .close-btn svg {
    width: 1.5rem;
    fill: #0d4541;
  }
}

/* menu */
.navbar {
  z-index: 2;
  justify-content: flex-start; /* Alinear el contenido a la izquierda */
  width: 100%; /* Asegúrate de que el ancho sea completo */
  max-width: 100%;
  background-color: #004340;
  margin: 0; /* Eliminar márgenes */
  padding: 0; /* Eliminar padding */
}

.nav-link {
  font-family: "Arial";
  font-size: 14px;
  letter-spacing: 3px;
}

.nav-link:hover {
  color: white !important;
  border: 1px solid white;
}

.navbar-expand-lg .navbar-nav .nav-link {
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: white;
  font-size: 12px;
  width: auto;
  text-align: center !important;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: white;
  border: 1px solid white;
}

.dropdown:hover > .dropdown-menu {
  z-index: 2;
  top: 1.7rem;
  background-color: #004340 !important;
  display: block; /* Forzar a que el menú permanezca visible cuando se pasa el ratón sobre el dropdown */
  position: absolute; /* Asegura que el menú aparezca en la posición correcta */
}

.dropdown-menu.show {
  display: inline-flex;
  border: 0px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  color: white !important;
  padding: 0.25rem 1rem;
  font-size: 8px;
  letter-spacing: 0.1em; /* Ajusta el espaciado entre letras */
}

.dropdown-item:hover {
  color: white !important;
  background: transparent !important;
  border: 1px solid white;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #a63717;
  text-decoration: none;
}

.bg {
  background: rgba(255, 255, 255, 0.45);
  transition: background 2s;
  -webkit-transition: background 2s; /* Safari 3.1 to 6.0 */
}

.bgScroll {
  background: rgba(255, 255, 255, 1);
  height: 15%;
  transition: background 2s;
}

/* Ajuste dinámico del tamaño del texto */
.text-container {
  font-size: 1.5vw !important; /* Ajusta el tamaño de fuente según el ancho de la pantalla */
}

/* Estilo de los enlaces */
.text-container .nav-link {
  white-space: nowrap !important;
}

.navbar-toggler-icon {
  transition: all 1s ease-out;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* Video */
header {
  width: 100%;
}
@media (max-width: 768px) {
  /* Dispositivos pequeños (sm) */
  header video {
    margin-top: 15vw;
  }
}
header video {
  width: 100%; /* El video ocupa el 100% del ancho del viewport */
  height: auto; /* Ajusta la altura automáticamente manteniendo la relación de aspecto */
  object-fit: cover; /* Asegura que el video cubra toda el área sin distorsión */
}
header img {
  width: 100%; /* El video ocupa el 100% del ancho del viewport */
  height: auto; /* Ajusta la altura automáticamente manteniendo la relación de aspecto */
  object-fit: cover; /* Asegura que el video cubra toda el área sin distorsión */
}

/*slides*/
/* Carrusel Inicio */

.title-slide {
  font-size: 5rem;
  color: #f0eadd;
  /*text-shadow: 1px 1px 5px #333;*/
}
.carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 5px;
}
.slide-1 {
  background: url("../img/slide-1.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
}
.slide-1-2 {
  background: url("../img/slide-1-2.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
}
.slide-1-3 {
  background: url("../img/slide-1-3.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
}
.slide-1-4 {
  background: url("../img/slide-1-4.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
}
.slide-1-5 {
  background: url("../img/slide-1-5.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
}
.slide-1-6 {
  background: url("../img/slide-1-6.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
}
.slide-1-7 {
  background: url("../img/slide-1-7.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
}
.slide-1-8 {
  background: url("../img/slide-1-8.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
}
.slide-2 {
  background: url("../img/hotelh.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100vh;
}

.slide-3 {
  background: url("../img/capilla-sec.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 70vh;
}

.slide-4 {
  background: url("../img/palapa-sec.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 70vh;
}

.slide-5 {
  background: url("../img/lago-sec.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 70vh;
}

.slide-6 {
  background: url("../img/jardin-sec.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 90vh;
}

.slide-7 {
  background: url("../img/experiencias.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 70vh;
}

.slide-8 {
  background: url("../img/slide-1-7.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 70vh;
}

.slide-9 {
  background: url("../img/hipico-sec.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 70vh;
}

.slide-10 {
  background: url("../img/hotel-sec.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 90vh;
}

.slide-11 {
  background: url("../img/contacto-sec.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 90vh;
}

.slide-12 {
  background: url("../img/arcos-sec.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 90vh;
}

.carousel-caption {
  right: 5%;
  left: 5%;
  bottom: -6%;
}

/******* carousel-fade **********/
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

/*servicios home*/
.index-card {
  height: 50%;
}
@media (max-width: 768px) {
  /* Dispositivos pequeños (sm) */
  .index-card {
    height: 40vw;
  }
  .bg-eventos,
  .bg-cortijo,
  .bg-hipico,
  .bg-toros,
  .bg-galeria {
    min-height: 0vh !important;
    height: 40vw;
  }
}
.bg-eventos {
  background: url("../img/08-10-2024/fotoEventos.jpg") no-repeat;
  background-size: contain;
  background-position: center center;
  min-height: 50vh;
}

.bg-cortijo {
  background: url("../img/08-10-2024/fotoPlazaDeToros.jpg") no-repeat;
  background-size: contain;
  background-position: center center;
  min-height: 50vh;
}

.bg-hipico {
  background: url("../img/08-10-2024/fotoCortijo.jpg") no-repeat;
  background-size: contain;
  background-position: center center;
  min-height: 50vh;
}

.bg-toros {
  background: url("../img/08-10-2024/fotoPlazaDeToros.jpg") no-repeat;
  background-size: contain;
  background-position: center center;
  min-height: 50vh;
}

.bg-galeria {
  background: url("../img/08-10-2024/fotoGaleria.jpg") no-repeat;
  background-size: contain;
  background-position: center center;
  min-height: 50vh;
}

/************contacto**********/
@media (max-width: 768px) {
  /* Dispositivos pequeños (sm) */
  #contactoBanner {
    margin-top: 15vw;
  }
}
.bg-contact {
  background: url("../img/bg-contact.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 30vh;
}

.bg-contacto {
  background: url("../img/back-san-fco.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 50vh;
  z-index: 2;
}

.form-control {
  background-color: #f0eadd;
  border: 1px solid #f0eadd;
}

.form-control:focus {
  color: #495057;
  background-color: #f0eadd;
  border-color: #f0eadd;
}

/************Instalaciones************/
.event {
  transition: all 1.5s;
}

.event:hover {
  transform: translateY(-10px);
}

.subtitle-event {
  letter-spacing: 12px;
  font-size: 1.4rem;
}
.bg-event-palapa {
  background: url("../img/palapa-eventos.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  position: relative;
  transform: scale(1);
  transition: all 1s;
}

.bg-event-capilla {
  background: url("../img/capilla-eventos.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  position: relative;
  transform: scale(1);
  transition: all 1s;
  z-index: 1;
}

.bg-event-lago {
  background: url("../img/lago-eventos.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  position: relative;
  transform: scale(1);
  transition: all 1s;
}

.bg-event-jardin {
  background: url("../img/jardin-eventos.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  position: relative;
  transform: scale(1);
  transition: all 1s;
  z-index: 1;
}

.bg-event-arcos {
  background: url("../img/arcos-eventos.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  position: relative;
  transform: scale(1);
  transition: all 1s;
  z-index: 1;
}

.bg-event-chalet {
  background: url("../img/chalet-eventos.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  position: relative;
  transform: scale(1);
  transition: all 1s;
}

.bg-event-toros {
  background: url("../img/toros-eventos.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  position: relative;
  transform: scale(1);
  transition: all 1s;
  z-index: 1;
}

.bg-evpalapatext {
  background: url("../img/back-palapa.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
}

.bg-evcapillatext {
  background: url("../img/back-capilla.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  z-index: 1;
}

.bg-evlagotext {
  background: url("../img/back-lago.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  z-index: 1;
}

.bg-evarcostext {
  background: url("../img/back-arcos.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  z-index: 1;
}

.bg-evjardintext {
  background: url("../img/back-jardin.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  z-index: 1;
}

.bg-evchalettext {
  background: url("../img/back-chalet.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  z-index: 1;
}

.bg-evtorostext {
  background: url("../img/back-plazadetoros.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 60vh;
  z-index: 1;
}

.bg-event-palapa:hover,
.bg-event-capilla:hover,
.bg-event-lago:hover,
.bg-event-arcos:hover,
.bg-event-jardin:hover,
.bg-event-chalet:hover,
.bg-event-toros:hover {
  transform: scale(1.2);
}

.bg-textura-beige {
  background: url("../img/textura-baige.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 40vh;
}

.bg-textura-golden {
  background: url("../img/textura-golden.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 40vh;
}

.bg-textura-green {
  background: url("../img/textura-green.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 40vh;
}

.bg-textura-pink {
  background: url("../img/textura-pink.png") no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 40vh;
}

.grecaptcha-badge {
  visibility: hidden;
}

/**********BOTON WHATSAPP**************/
.whatsapp {
  position: fixed;
  width: 51px;
  height: 51px;
  bottom: 30px;
  right: 10px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 36px;
  z-index: 100;
}

a.whatsapp:hover {
  color: #fff;
}

.whatsapp-icon {
  margin-top: 6px;
}
/**************************************/

/*responsive*/
@media (max-width: 767.98px) {
  .desk {
    display: none;
  }

  .movil {
    display: none;
  }

  .bg {
    left: 0%;
    background: rgba(251, 255, 255, 0.8);
  }

  .bgScroll {
    background: rgba(255, 255, 255, 1);
    height: auto;
  }

  .dropdown-menu.show {
    display: block;
  }

  .circle {
    left: -15px;
    width: 170px;
    height: 170px;
  }

  .title-slide {
    font-size: 2.5rem;
  }

  .bg-contact {
    background-position: right center;
  }
}

/* Animación de movimiento desde fuera de la pantalla (desplazamiento a la izquierda) */
.animated.slide-left {
  animation: slideInLeft 1s forwards;
  opacity: 0;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Animación de movimiento desde fuera de la pantalla (desplazamiento a la derecha) */
.animated.slide-right {
  animation: slideInRight 1s forwards;
  opacity: 0;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/************* Eventos ****************/
.eventos-conceptu {
  overflow: auto;
  font-family: "Mukta-Regular";
  margin-top: 3vw;
  min-height: 50vw;
  height: auto;
  min-width: 100vw;
  .eventos-container {
    background-image: url("/assets/img/eventos/Fondo.webp");
    background-origin: border-box;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    .texto {
      display: flex;
      align-items: center;
      justify-items: start;
      text-align: center;
      flex-direction: column;
      width: 45%;
      #texto1 {
        font-size: 25px;
        margin-top: 10vw;
        width: 70%;
      }
      #texto2 {
        font-size: 20px;
        margin-top: 3vw;
        text-align: center;
        width: 20vw;
        letter-spacing: 4px;
      }
      img {
        margin-top: 2vw;
        width: 40%;
      }
      button {
        padding: 10px;
        margin-top: 4vw;
        color: white;
        border-radius: 10px;
        letter-spacing: 3px;
        box-shadow: inset;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
      }
      hr {
        margin-top: 3vw;
        border: 1px solid rgba(3, 67, 64, 0.8);
        width: 20vw;
      }
      .redes {
        margin-top: 1rem;
        gap: 2rem;
        display: flex;
        flex-direction: row;
        svg {
          fill: #004340;
          height: 2vw;
          width: 2vw;
        }
      }
    }
    .galeria {
      /*background-color: orange;*/
      display: flex;
      flex-direction: column;
      width: 55%;
      padding: 2rem;
      .fila1 {
        display: flex;
        flex-direction: row;
        height: 50%;
        justify-content: space-around;
      }
      .fila2 {
        margin-top: 10px;
        display: flex;
        flex-direction: row;
        height: 50%;
        justify-content: space-around;
      }
    }
  }
}

@media (max-width: 767.98px) {
  .eventos-conceptu {
    min-height: 150vw;
    margin-top: 15vw;
    .eventos-container {
      flex-direction: column;
      .texto {
        width: 100%;
        #texto1 {
          font-size: 25px;
          margin-top: 20vw;
          width: 70%;
        }
        #texto2 {
          font-size: 20px;
          margin-top: 3vw;
          text-align: center;
          width: 60vw;
          letter-spacing: 4px;
        }
        img {
          margin-top: 6vw;
        }
        .redes {
          margin-top: 5rem;
          svg {
            height: 10vw;
            width: 10vw;
          }
        }
      }
      .galeria {
        display: none;
      }
    }
  }
}
