* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: "Manrope", sans-serif;
  color: #2e3540;
  background: #f8f5ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, .logo {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.82);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 84px;
}

.logo {
  color: white;
  font-size: 1.15rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
  transition: color 0.22s ease, transform 0.22s ease;
}

.menu a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.nav-platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  color: #f3f5f7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.nav-platform-btn:hover {
  transform: translateY(-2px);
}

.nav-airbnb:hover {
  background: #ff385c;
  color: white;
  border-color: #ff385c;
  box-shadow: 0 10px 22px rgba(255, 56, 92, 0.30);
}

.nav-booking:hover {
  background: #003580;
  color: white;
  border-color: #003580;
  box-shadow: 0 10px 22px rgba(0, 53, 128, 0.28);
}

.nav-payment:hover {
  background: #1f6f4a;
  color: white;
  border-color: #1f6f4a;
  box-shadow: 0 10px 22px rgba(31, 111, 74, 0.24);
}

.mobile-menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 16px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  background: rgba(18, 18, 18, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px 22px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 16px;
}

.mobile-menu-links a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-platforms {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-platforms .nav-platform-btn {
  width: 100%;
}

.hero {
  scroll-margin-top: 60px;
  min-height: 100vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 84px;
}

.booking-panel,
.services,
.location,
.gallery,
.reviews,
.faq-section,
.cta {
  scroll-margin-top: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #d7f2df;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  line-height: 1.01;
  margin-bottom: 20px;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 1.08rem;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.99);
}

.btn-primary {
  background: #79c08f;
  color: #173324;
  box-shadow: 0 8px 18px rgba(104, 177, 132, 0.18);
}

.btn-secondary {
  background: white;
  color: #173324;
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.18);
}

.info-strip {
  background: #f1ede5;
  padding: 20px 0 16px;
}

.info-strip-wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.info-pill {
  background: white;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.95rem;
}

.booking-panel {
  background: #ebe6dd;
  padding: 72px 0 50px;
}

.booking-header {
  text-align: center;
  margin-bottom: 22px;
}

.booking-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: #6b7d6f;
  font-weight: 700;
  margin-bottom: 12px;
}

.booking-header h2,
.intro-box h2,
.services h2,
.gallery h2,
.location h2,
.reviews h2,
.faq-section h2,
.cta h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  margin-bottom: 18px;
  line-height: 1.08;
}

.booking-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.booking-card {
  max-width: 980px;
  margin: 0 auto;
  background: #f3efe8;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.field label {
  font-weight: 700;
  color: #5a5248;
  margin-bottom: 10px;
  font-size: 0.98rem;
}

.field input,
.field select {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  border: 1px solid #d3cbbe;
  padding: 0 15px;
  background: #fffdf9;
  color: #2f2a24;
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
}

.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  background: #fffdf9;
  border: 1px solid #d3cbbe;
}

.input-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  z-index: 2;
}

.input-icon-wrap input {
  width: 100%;
  height: 56px;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 16px 0 42px;
}

.calendar-green {
  background: linear-gradient(180deg, #fbfffc, #f4faf6);
}

.calendar-blue {
  background: linear-gradient(180deg, #fbfdff, #f4f8fc);
}

.booking-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.btn-whatsapp {
  min-width: 320px;
  background: linear-gradient(90deg, #79c08f, #68b184);
  border: none;
  height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  color: #173324;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  box-shadow: 0 8px 18px rgba(104, 177, 132, 0.18);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(104, 177, 132, 0.24);
}

.section {
  padding: 60px 0;
}

.intro-box,
.cta-box {
  max-width: 850px;
  margin: 0 auto;
}

.intro-box {
  text-align: left;
}

.intro-box p,
.location-box p,
.location-box li,
.card p,
.cta-box p,
.review-card p,
.reviews-subtitle,
.faq-item p {
  font-size: 1.02rem;
}

.services {
  padding-top: 10px;
  padding-bottom: 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}

.card {
  background: white;
  padding: 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e7eef2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  color: #1c5b75;
  stroke-width: 2;
}

.location {
  padding-top: 24px;
  padding-bottom: 18px;
}

.location-box {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 35px;
  align-items: start;
}

.location-box p {
  margin-bottom: 24px;
}

.location-box ul {
  padding-left: 20px;
}

.location-box li {
  margin-bottom: 8px;
}

.map-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.gallery {
  padding-top: 24px;
  padding-bottom: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 22px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

.reviews {
  padding-top: 34px;
  padding-bottom: 42px;
}

.reviews-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 24px;
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.reviews-score-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.stars-large {
  color: #f4c21d;
  font-size: 2rem;
  letter-spacing: 4px;
  line-height: 1;
}

.score-number {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.reviews-subtitle {
  color: #6a7a96;
}

.rating-bars {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-row {
  display: grid;
  grid-template-columns: 80px 1fr 28px;
  gap: 12px;
  align-items: center;
}

.rating-label,
.rating-count {
  color: #6a7a96;
  font-size: 0.98rem;
}

.rating-track {
  width: 100%;
  height: 12px;
  background: #dfe3ea;
  border-radius: 999px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: #f4c21d;
  border-radius: 999px;
}

.fill-95 {
  width: 95%;
}

.fill-05 {
  width: 5%;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #115a7a;
  font-weight: 700;
}

.verified-badge svg {
  width: 20px;
  height: 20px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.review-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  min-height: 220px;
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.review-name {
  font-size: 1.1rem;
  font-weight: 800;
}

.review-date {
  color: #73839d;
}

.review-stars {
  color: #f4c21d;
  letter-spacing: 2px;
  white-space: nowrap;
}

.reviews-controls {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.reviews-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid #d6dce5;
  background: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reviews-arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.reviews-arrow svg {
  width: 20px;
  height: 20px;
}

.reviews-dots {
  display: flex;
  gap: 10px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #ccd3de;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reviews-dot.active {
  width: 32px;
  background: #115a7a;
}

.faq-section {
  padding-top: 34px;
  padding-bottom: 42px;
}

.faq-container {
  max-width: 900px;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: white;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 0 22px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.08rem;
  padding: 24px 34px 24px 8px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 500;
  color: #2e3540;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 8px 24px;
  color: #5f6d83;
}

.cta {
  background: linear-gradient(135deg, #173324, #294534);
  color: white;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 26px;
}

.cta-box h2 {
  margin-bottom: 12px;
}

.cta-box p {
  margin-bottom: 22px;
}

.footer {
  background: #111827;
  color: white;
  padding: 32px 0;
}

.footer-box {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-box p {
  margin-top: 6px;
}

@media (max-width: 1240px) {
  .nav {
    grid-template-columns: auto 1fr;
  }

  .nav-right {
    justify-content: flex-end;
    gap: 14px;
  }

  .menu {
    gap: 14px;
  }

  .menu a {
    font-size: 0.93rem;
  }

  .nav-platform-btn {
    min-width: 94px;
    padding: 0 14px;
    font-size: 0.84rem;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 96px;
  }

  .nav {
    grid-template-columns: 1fr auto;
    min-height: 84px;
  }

  .nav-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .booking-grid,
  .cards,
  .gallery-grid,
  .location-box,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 92px;
  }

  .container {
    width: min(100%, 92%);
  }

  .header {
    background: rgba(26, 26, 26, 0.9);
  }

  .nav {
    min-height: 84px;
  }

  .logo {
    font-size: 0.98rem;
    max-width: 210px;
    line-height: 1.2;
  }

  .mobile-menu {
    padding: 14px 20px 18px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 94px;
  }

  .hero h1 {
    font-size: 2.45rem;
    line-height: 1.06;
  }

  .hero-text {
    font-size: 1rem;
  }

  /* ANCLAJES MOBILE */
  .booking-panel,
  .services,
  .location,
  .gallery,
  .reviews,
  .faq-section,
  .cta {
    scroll-margin-top: 0;
  }

  .info-strip {
    padding: 16px 0 14px;
  }

  .info-strip-wrap {
    gap: 8px;
  }

  .info-pill {
    font-size: 0.92rem;
    padding: 10px 16px;
  }

  .booking-panel {
    padding: 44px 0 34px;
  }

  .booking-header {
    margin-bottom: 16px;
  }

  .booking-header h2 {
    font-size: 2.1rem;
    line-height: 1.05;
    margin-bottom: 10px;
  }

  .booking-header p {
    font-size: 0.98rem;
  }

  .booking-card {
    padding: 16px;
    border-radius: 22px;
  }

  .booking-grid,
  .cards,
  .gallery-grid,
  .location-box,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .field label {
    margin-bottom: 8px;
  }

  .field input,
  .field select,
  .input-icon-wrap input {
    height: 54px;
  }

  .booking-actions {
    margin-top: 14px;
  }

  .btn-whatsapp {
    width: 100%;
    min-width: 0;
  }

  .section {
    padding: 40px 0;
  }

  .services {
    padding-top: 10px;
    padding-bottom: 32px;
  }

  .location {
    padding-top: 18px;
    padding-bottom: 16px;
  }

  .gallery {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .reviews {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .faq-section {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .cta {
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .intro-box h2,
  .services h2,
  .gallery h2,
  .location h2,
  .reviews h2,
  .faq-section h2,
  .cta h2 {
    font-size: 2rem;
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .intro-box p,
  .location-box p,
  .location-box li,
  .card p,
  .cta-box p,
  .review-card p,
  .reviews-subtitle,
  .faq-item p {
    font-size: 0.98rem;
  }

  .cards {
    gap: 16px;
  }

  .card {
    padding: 24px 20px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-grid img {
    height: auto;
    aspect-ratio: 4 / 4.6;
  }

  .location-box {
    gap: 20px;
  }

  .reviews-header {
    margin-bottom: 18px;
  }

  .reviews-score-row {
    flex-direction: column;
    gap: 10px;
  }

  .score-number {
    font-size: 3rem;
  }

  .stars-large {
    font-size: 1.6rem;
  }

  .rating-row {
    grid-template-columns: 72px 1fr 24px;
  }

  .review-card {
    min-height: auto;
  }

  .faq-item {
    padding: 0 16px;
  }

  .faq-item summary {
    font-size: 1.02rem;
    padding: 20px 32px 20px 4px;
  }
  .nav-booking.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
}
