@font-face {
  font-family: "Lucida";
  src: url("Fonts/Lucida-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}


body {
   font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

h1 {
  font-family: "Lucida", serif;
  font-weight: normal;
  font-size: 2.6em;
  z-index: 9999999;
}

p {
  font-size: 1.3em;
}

footer{
  padding-bottom: 50px;
}

#hero {
  position: relative;
  min-height: 130vh;
  /* más alto que la pantalla */
  overflow: hidden;
}

#hero h1 {

    max-width: 900px;
   
  }

#hero .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  /* más alto para cubrir el scroll */
  background: url("../img/cielo.jpg") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  /* efecto parallax */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.verde {
  color: #111111 !important;
}

.bg-verde {
  background-color: #111111 !important;
}

.btn-wa {
  position: fixed;
  z-index: 99999999999;
  bottom: 30px;
  right: 30px;
}

.separador {
  position: relative;
  z-index: 9999999;
  top: -7vw;
  /* Ajusta este valor para controlar la posición vertical del separador. Un valor en 'vw' asegura que se mueva en relación al ancho del viewport */
}

.letter-spacing {
  letter-spacing: 2px;
}

.contactenos {
  font-size: 14pt;
  background: #111111 !important;
  border-radius: 15px;
  padding: 10px 20px;
}

.numeros {
  font-family: "warbler-banner", sans-serif;
  font-size: 10em;
  margin-bottom: 50px;
}


.swiper {
  width: 50vw;
  height: fit-content;
}


/* .vivir-distinto {
  height: 100vh;
  background: url("../img/bg-vivir-distinto.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.vivir-distinto {
  height: 100vh;
  background: url("../img/bg-vivir-distinto.jpg") no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center 30%; /* O 'top center' para una solución más simple */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  padding: 30px;
  border: 1px solid #000;
  border-radius: 15px;
  background: none;
  text-align: center;
}

.contact-form form {
  text-align: left;
}

.contact-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #000;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 20px;
  border: 1px solid #000;
  border-radius: 5px;
  outline: none;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  display: block;
  margin: 20px auto 0 auto;
  background: #226633;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #111111;
}

.bg-contacto {
  background-color: #fff;
}

.section-hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.section-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  #carouselExample {
    width: 90vh !important;
  }
}

@media (max-width: 768px) {
  #hero h1 {

    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    font-size: 21pt;
  }

 .logo {
    max-width: 60% !important; 
  }
}

@media (max-width: 767px) {
  .vivir-distinto {
    background-position: center 30%; /* Adjust this value to find the best fit */
  }
}