@charset "UTF-8";
/*Reset css*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Imagen de fondo Header*/
header {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: hidden;
  color: antiquewhite;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/pileta-patio-compress.jpg");
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  z-index: 1;
}

header > * {
  position: relative;
  z-index: 2;
}

/*Texto y nav bar*/
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 100vh;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 40px;
}

.logo-header img {
  max-width: 150px;
  max-height: 150px;
  width: auto;
  height: auto;
  display: block;
}

.nav-header ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-header li {
  margin: 0 15px;
}
.nav-header a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: color 0.3s ease;
}
.nav-header a:hover {
  color: #82C600;
}

.texto-header {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  z-index: 2;
  font-size: 2.5rem;
}
.texto-header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

/* Estilo del menú hamburguesa */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Fondo transparente */
.bg-transparent {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

/* Efecto hover elegante */
.hover-effect {
  position: relative;
  padding: 12px 20px;
  color: #2c7a47 !important; /* Verde Loreto */
  font-weight: 600;
  transition: all 0.4s;
}
.hover-effect::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #f6ad37; /* Dorado Loreto */
  transform: scaleX(0);
  transition: transform 0.4s;
}
.hover-effect:hover {
  background: rgba(44, 122, 71, 0.1); /* Verde claro */
}
.hover-effect:hover::before {
  transform: scaleX(1);
}

/* Menú en móviles */
@media (max-width: 991px) {
  #menuLoreto {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    z-index: 1000;
  }
}
/*Footer*/
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
footer img {
  max-width: 150px;
  max-height: 150px;
  width: auto;
  height: auto;
  align-items: center;
}

/*Seccion 1*/
.texto-section1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.texto-section1 p {
  line-height: 1.5;
  font-size: 1.2rem;
}

.texto-section1 h2 {
  font-size: 3rem;
}

/*Boton de reserva*/
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  background: #25D366;
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px; /* Bordes muy redondeados */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.whatsapp-btn i {
  font-size: 1.4rem;
}
.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.whatsapp-btn:active {
  transform: scale(0.98);
}

.texto-habitaciones {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.texto-habitaciones > * {
  position: relative;
  z-index: 2;
}

.texto-habitaciones::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/habitaciones/martin-pescador.jpg");
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.texto-section2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.texto-section2 h2 {
  color: #fff;
  font-size: 5rem;
  margin-bottom: 0.5em;
}

.texto-section2 p {
  color: #fff;
  font-size: 2rem;
  margin-top: 0;
}

.card-img-top {
  height: 400px;
  object-fit: cover;
  width: 100%;
  display: block;
}

.btn-reserva {
  display: block;
  margin: 40px auto 40px auto;
  width: fit-content;
}

.centrar-boton {
  text-align: center;
}

/*Areas comunes*/
.texto-areas-comunes {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.texto-areas-comunes > * {
  position: relative;
  z-index: 2;
}

.texto-areas-comunes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/habitaciones/sala-5.jpg");
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.texto-section4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.texto-section4 h2 {
  color: #fff;
  font-size: 5rem;
  margin-bottom: 0.5em;
}

.texto-section4 p {
  color: #fff;
  font-size: 2rem;
  margin-top: 0;
}

.parrafo-areas-comunes p {
  font-size: 1.8rem;
}

.parrafo-areas-comunes {
  display: flex;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  font-size: 1.2rem;
  margin-top: 40px;
}

.carousel-slide {
  max-width: 1000px;
  margin: 40px auto;
}

.carousel-slide .carousel-inner,
.carousel-slide .carousel-item,
.carousel-slide img {
  height: 700px;
}

.carousel-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

/* --- GENERAL --- */
/* Márgenes laterales en párrafos del index */
@media (max-width: 767.98px) {
  .texto-section1 p,
  .texto-section2 p,
  .texto-section4 p,
  .parrafo-areas-comunes p {
    margin-left: 15px;
    margin-right: 15px;
  }
  .lista-instalaciones ul {
    padding: 10px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .card-img-top {
    height: 140px;
  }
  .container,
  .container-fluid,
  .direccion-contacto,
  .map-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .direccion-contacto .row {
    flex-direction: column;
    min-height: auto;
  }
  .direccion-contacto .col-md-6 {
    max-width: 100%;
  }
  .texto-header h1,
  .texto-section2 h2,
  .texto-section4 h2 {
    font-size: 2rem;
    margin-top: 32px;
  }
  .texto-section1 p,
  .texto-header p {
    font-size: 1.8rem;
    margin-top: 32px;
  }
  .logo-header {
    margin-top: 32px;
  }
  .logo-header img {
    max-width: 200px !important;
    max-height: 200px !important;
    margin-top: 0px;
  }
  h2 {
    font-size: 2rem;
  }
  /* Botón (btn-group) más abajo */
  .btn-group {
    margin-top: 0px !important;
  }
  /* Texto del header más grande */
  .texto-header h1 {
    font-size: 2.8rem !important;
    margin-top: 32px;
  }
  .texto-header p {
    font-size: 1.8rem !important;
    margin-top: 24px;
  }
  /* Imagen del header más corta (¡CUIDADO! Esto puede achicar headers en todas las páginas) */
  /* Si solo querés esto en una página, usá una clase más específica */
  /*
  .header-img,
  .header-image {
    min-height: 100px !important;
    height: 100px !important;
    max-height: 100px !important;
  }
  */
}
/* --- MENÚ HAMBURGUESA (btn-group) --- */
.btn-group {
  display: none;
}

@media (max-width: 991.98px) {
  .btn-group {
    display: block;
    width: 90vw;
    max-width: 350px;
    margin: 32px auto 0 auto;
    font-size: 1.2rem;
  }
  .btn-group .btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 12px 0;
  }
  .dropdown-menu {
    width: 100%;
    min-width: unset;
    font-size: 1.1rem;
  }
}
/* --- NAV HEADER --- */
.nav-header {
  display: block;
}

@media (max-width: 991.98px) {
  .nav-header {
    display: none;
  }
}
/* --- CARDS Y GALERÍAS --- */
.card-img-top,
.carousel-item img {
  width: 100%;
  object-fit: cover;
}

.card-img-top {
  height: 220px;
}

.carousel-item img {
  height: 100%;
}

@media (max-width: 767.98px) {
  .ibera-card,
  .cuera-card,
  .loreto-card,
  .jabiru-card,
  .yetapa-card,
  .martin-card {
    text-align: center;
  }
  .card h2,
  .card h3,
  .card-title,
  .card p {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
  }
  .card .btn,
  .card button {
    margin-left: auto;
    margin-right: auto;
    display: block;
    float: none;
  }
}
/* --- SECCIONES Y CONTENEDORES --- */
@media (max-width: 767.98px) {
  .container,
  .container-fluid,
  .direccion-contacto,
  .map-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/* --- TITULOS h2 --- */
h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* --- AJUSTES PARA PANTALLAS GRANDES --- */
@media (min-width: 992px) {
  .texto-section1 h2,
  .texto-section2 h2,
  .texto-section4 h2,
  .titulo-principal,
  .titulo-instalaciones h2 {
    font-size: 3.5rem !important;
  }
  .texto-section1 p,
  .texto-section2 p,
  .texto-section4 p,
  .parrafo-areas-comunes p,
  .parrafo-principal {
    font-size: 2rem !important;
  }
  .texto-quienes-somos h2,
  .texto-quienes-somos .titulo-quienes,
  .texto-quienes-somos .titulo-mision,
  .texto-quienes-somos .titulo-vision {
    font-size: 3rem !important;
  }
  .texto-quienes-somos p,
  .texto-quienes-somos .parrafo-quienes,
  .texto-quienes-somos .parrafo-mision,
  .texto-quienes-somos .parrafo-vision {
    font-size: 2rem !important;
  }
}
/* --- HAMBURGUESA --- */
.hamburger {
  display: none;
}

@media (max-width: 991.98px) {
  .header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .logo-header {
    margin-bottom: 8px;
  }
  .hamburger {
    display: block;
    margin-bottom: 16px;
    margin-top: 0;
    align-self: center;
    position: static;
    order: 2;
  }
  .texto-header {
    order: 3;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .parrafo-principal {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
}
.texto-principal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.texto-principal p {
  line-height: 2;
  font-size: 1.5rem;
}

.texto-principal h2 {
  font-size: 3rem;
  margin: 40px;
}

/*Instalaciones*/
.titulo-instalaciones {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  margin-bottom: 0.5em;
}
.titulo-instalaciones > * {
  position: relative;
  z-index: 2;
}

.titulo-instalaciones::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/sala-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
  pointer-events: none;
}

.instalaciones {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  margin: 40px 0;
}

.titulo-instalaciones h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}

.lista-instalaciones ul {
  list-style: none;
  margin-bottom: 2rem;
}

.instalaciones li {
  line-height: 2;
  font-size: 1.8rem;
}

.titulo-habitaciones {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 3rem;
  color: black;
  margin-top: 40px;
}

.parrafo-habitaciones {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

/* Estilos personalizados */
.text-primary {
  color: #2c7a47 !important; /* Verde Loreto */
}

.btn-outline-primary {
  color: #2c7a47;
  border-color: #2c7a47;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background-color: #2c7a47;
  color: white;
}

.shadow-lg {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Para destacar el texto contra las imágenes */
/* Efecto al pasar el mouse */
a[data-lightbox] img {
  transition: transform 0.3s;
}

a[data-lightbox] img:hover {
  transform: scale(1.02);
  cursor: zoom-in;
}

/* Estilo del lightbox */
.lightbox .lb-image {
  border: 10px solid white;
  border-radius: 3px;
}

.titulo-direccion, .parrafo-direccion {
  display: flex;
  justify-content: center;
  text-align: center;
}

/*maps*/
.mapa-direccion {
  margin: 20px;
}

.map-container {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-top: 16px;
}

/*Contacto*/
.direccion-contacto .row {
  min-height: 455px;
  align-items: center;
}

ul {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
  width: 100%;
  line-height: 2rem;
}

.foto-kuni {
  width: 200px;
  height: 200px;
  max-width: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: block;
  margin-left: 0;
  margin-right: 0;
  object-fit: cover;
}

.activity-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  margin-top: 10px;
  transition: transform 0.3s;
  margin-left: 20px;
  margin-right: 20px;
}
.activity-card:hover {
  transform: translateY(-5px);
}
.activity-card .activity-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 20% 15%;
}
.activity-card .activity-img-loreto {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 20% 60%;
}
.activity-card .activity-body {
  padding: 1.5rem;
  background: white;
}
.activity-card .activity-body h3 {
  color: #2c7a47;
  font-size: 1.5rem;
}

.btn-eco {
  background: #2c7a47;
  border: none;
  padding: 10px 25px;
}

.highlight-box {
  background: #f8f4e5;
  padding: 12px;
  border-left: 4px solid #f6ad37;
}

.activity-tags {
  display: flex;
  gap: 10px;
}
.activity-tags .tag {
  background: #e8f5e9;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.hamburger {
  background-color: transparent;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
  transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
  z-index: 1002;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamburger.is-active {
  background-color: none;
  margin-top: 2rem;
}

._layer {
  background-color: #009F00;
  margin-bottom: 4px;
  border-radius: 2px;
  width: 28px;
  height: 4px;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
  transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
}

.hamburger:hover .-top {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.hamburger:hover .-bottom {
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.hamburger.is-active .-top {
  -webkit-transform: translateY(200%) rotate(45deg) !important;
  -ms-transform: translateY(200%) rotate(45deg) !important;
  transform: translateY(200%) rotate(45deg) !important;
}

.hamburger.is-active .-mid {
  opacity: 0;
}

.hamburger.is-active .-bottom {
  -webkit-transform: translateY(-200%) rotate(135deg) !important;
  -ms-transform: translateY(-200%) rotate(135deg) !important;
  transform: translateY(-200%) rotate(135deg) !important;
}

.menuppal.is_active {
  transform: translate3d(0px, 0px, 0px);
}

.menuppal {
  background-color: rgba(255, 255, 255, 0.95);
  bottom: 0;
  height: 45%;
  left: 0;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  transform: translate3d(0px, -100%, 0px);
  transition: transform 0.35s cubic-bezier(0.05, 1.04, 0.72, 0.98) 0s;
  width: 100%;
  z-index: 1001;
}

.menuppal ul {
  margin: 5;
  padding: 0;
}

.menuppal ul li {
  list-style: none;
  text-align: center;
  font-family: Verdadna, Arial, Helvetica;
  font-size: 1.5rem;
  height: 3em;
  color: #369;
  text-transform: none;
  font-weight: bold;
}

.menuppal ul li a {
  text-decoration: none;
  color: #369;
}

.menuppal ul li a:hover {
  text-decoration: none;
  color: #333;
}

.item {
  width: 200px;
  height: 200px;
  margin: 50px auto;
  padding-top: 75px;
  background: #ccc;
  text-align: center;
  color: #FFF;
  font-size: 3em;
}

@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/*# sourceMappingURL=main.css.map */
