:root {
  --bg: #f4f7f6;
  --surface: #ffffff;
  --surface-soft: #f9fbfa;
  --text: #182428;
  --muted: #5f6f74;
  --primary: #0f7f78;
  --primary-dark: #0b5c57;
  --secondary: #edcd76;
  --border: #dbe6e1;
  --shadow: 0 18px 40px rgba(9, 35, 39, 0.08);
  --radius: 18px;
  --container: 1180px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef4f1 0%, #f7faf8 220px, #f4f7f6 100%);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

iframe {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 230, 225, 0.9);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-text {
  font-weight: 800;
  font-size: 1.05rem;
  color: #0d3b43;
  letter-spacing: -0.02em;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.top-nav a:hover {
  color: var(--primary-dark);
}

.nav-btn {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  border: none;
  background: #fff;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0d3b43;
  margin: 5px auto;
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(7, 24, 28, 0.78), rgba(7, 24, 28, 0.35)),
    url("imagenes/foto-principal.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(237, 205, 118, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(15, 127, 120, 0.18), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-text {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 16px 28px rgba(15, 127, 120, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-outline {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.main-grid,
.lower-content,
.map-section {
  margin-top: 28px;
  margin-bottom: 28px;
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.content-card,
.sidebar-card {
  background: var(--surface);
  border: 1px solid rgba(219, 230, 225, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-card {
  padding: 30px;
}

.sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: calc(var(--header-height) + 18px);
}

.sidebar-card {
  padding: 22px;
}

.content-card h2,
.content-card h3,
.content-card h4,
.sidebar-card h3 {
  color: #0f2d34;
  line-height: 1.2;
}

.content-card h2 {
  margin: 0 0 22px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.content-card h3 {
  margin-top: 34px;
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.content-card h4,
.sidebar-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.content-card p,
.sidebar-card p,
.content-card li,
.sidebar-card li,
td {
  color: var(--text);
  font-size: 1rem;
}

.main-image {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 18px;
}

.featured-subtitle {
  text-align: center;
  color: #9a7a23 !important;
  font-size: 1.2rem !important;
  line-height: 1.45 !important;
  margin-bottom: 26px !important;
}

.button-row {
  margin: 22px 0;
}

.gallery-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-soft);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item h4 {
  margin: 0;
  padding: 16px;
  text-align: center;
}

.price-main {
  font-size: 2.2rem !important;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-dark) !important;
  margin-bottom: 10px;
}

.schedule-list,
.restriction-list {
  margin: 0;
  padding-left: 18px;
}

.schedule-list li + li,
.restriction-list li + li {
  margin-top: 8px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
  background: #fff;
}

td {
  padding: 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

tr:last-child td {
  border-bottom: none;
}

.contact-cta {
  margin-bottom: 24px;
}

.map-wrap {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.site-footer {
  padding: 18px 0 34px;
  text-align: center;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.35);
}

@media (max-width: 1024px) {
  .main-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .top-nav {
    display: none;
    position: absolute;
    top: calc(var(--header-height) - 4px);
    left: 14px;
    right: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .top-nav.open {
    display: flex;
  }

  .top-nav a {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .top-nav a:hover {
    background: #f3f7f6;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 18px), var(--container));
  }

  .content-card,
  .sidebar-card {
    padding: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 54px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    font-size: 1.65rem;
  }
}