.elementor-61 .elementor-element.elementor-element-715a135 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-ba04dee{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-a28e83a > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-cffe83e{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-ba442d8 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-dca84c5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-98f9960{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-98a9e68 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-dca91f1{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-281af9b > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-c10ae6a > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-6540ff7 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-4199ef5{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-1d98fda > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-21b0cc7{padding:0px 0px 0px 0px;}.elementor-61 .elementor-element.elementor-element-4a826fa > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}/* Start custom CSS for section, class: .elementor-element-82bd7e6 */<style>
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f6f4f0;
    color: #fff;
  }

  .slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slide.active {
    opacity: 1;
    z-index: 2;
  }

  .overlay {
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.5), rgba(30, 30, 30, 0.7));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }

  .content {
    text-align: center;
    max-width: 820px;
    animation: fadeInUp 1.2s ease forwards;
    color: #ffffff;
  }

  .content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  }

  .content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #f2f2f2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  }

  .content i {
    color: #c9a65a;
    margin-right: 8px;
  }

  .btn-whatsapp {
    background-color: #25d366;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }

  .btn-whatsapp:hover {
    background-color: #1ebe5b;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Arrows */
  .arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 5;
    transform: translateY(-50%);
    padding: 0 20px;
  }

  .arrow {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 2rem;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }

  .arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
    .content h1 { font-size: 2rem; }
    .content p { font-size: 1rem; }
    .btn-whatsapp { font-size: 0.9rem; padding: 10px 24px; }
  }
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b3c14f1 */.section-experiencia {
  padding: 0;
  margin: 0;
  width: 100%;
}

.container-experiencia {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-column {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.text-column {
  padding: 60px;
  background-color: #fff;
  color: #1e2d26;
}

.text-column h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.text-column ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.text-column ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}
@media (max-width: 768px) {
  .container-experiencia {
    flex-direction: column;
  }

  .image-column, .text-column {
    width: 100%;
    flex: none;
  }

  .image-column img {
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }

  .text-column {
    padding: 30px 20px;
  }

  .text-column h2 {
    font-size: 1.5rem;
  }

  .text-column p, .text-column ul li {
    font-size: 1rem;
  }

  .btn-whatsapp {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dca84c5 */.section-restaurante {
  padding: 60px 0;
  background-color: #fdfaf5;
}

.container-restaurante {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.text-column {
  justify-content: center;
  padding: 40px 20px;
}

.text-column h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #173c32;
}

.text-column p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.text-column ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.text-column ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}

.text-column ul li i {
  color: #c39a36;
  margin-right: 10px;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

/* Imagen como fondo */
.image-column {
  padding: 0;
}

.image-cover {
  flex: 1;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 400px;
}
.container-restaurante {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
  min-height: 500px; /* ← Asegura altura suficiente */
}

.image-column {
  display: flex;
  flex: 1;
}

.image-cover {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5dd351e */.section-habitaciones {
  padding: 0;
  margin: 0;
  width: 100%;
}

.container-experiencia {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-column {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.text-column {
  padding: 60px;
  background-color: #fff;
  color: #1e2d26;
}

.text-column h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.text-column ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.text-column ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4741e0d */.section-minigolf {
  padding: 0;
  margin: 0;
  width: 100%;
}

.section-minigolf .container-experiencia {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
}

.section-minigolf .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-minigolf .image-column {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.section-minigolf .image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.section-minigolf .text-column {
  padding: 60px;
  background-color: #fff;
  color: #1e2d26;
}

.section-minigolf .text-column h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-minigolf .text-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section-minigolf .text-column ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.section-minigolf .text-column ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.section-minigolf .btn-whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6a179bc */.section-historia {
  padding: 0;
  margin: 0;
  width: 100%;
}

.section-historia .container-experiencia {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
}

.section-historia .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-historia .image-column {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.section-historia .image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.section-historia .text-column {
  padding: 60px;
  background-color: #fff;
  color: #1e2d26;
}

.section-historia .text-column h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-historia .text-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section-historia .text-column ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.section-historia .text-column ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.section-historia .btn-whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-31458f5 */.section-eventos {
  padding: 0;
  margin: 0;
  width: 100%;
}

.section-eventos .container-experiencia {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
}

.section-eventos .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-eventos .image-column {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.section-eventos .image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.section-eventos .text-column {
  padding: 60px;
  background-color: #fff;
  color: #1e2d26;
}

.section-eventos .text-column h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-eventos .text-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section-eventos .text-column ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.section-eventos .text-column ul li {
  margin-bottom:/* End custom CSS */