﻿:root {
  --bg: #f3efe6;
  --surface: #fffdf8;
  --sand: #dfd0b3;
  --forest: #2f5c4f;
  --forest-deep: #1e4137;
  --text: #1f2d29;
  --muted: #55635f;
  --accent: #ca9c63;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 12px 40px rgba(34, 50, 43, 0.12);
  --maxw: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 20%, #f9f5ec 0%, var(--bg) 55%, #ecf2ef 100%);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2.2rem, var(--maxw));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(47, 92, 79, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-deep);
  letter-spacing: 0.3px;
  min-width: max-content;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(47, 92, 79, 0.16);
  box-shadow: 0 6px 14px rgba(34, 50, 43, 0.12);
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.72);
}

.logo span {
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--forest-deep);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.38rem;
  border: 1px solid rgba(47, 92, 79, 0.2);
  background: #ffffff;
  color: var(--forest-deep);
  border-radius: 10px;
  padding: 0.48rem 0.72rem;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  min-height: 40px;
  cursor: pointer;
}

.menu-toggle span:first-child {
  font-size: 1.08rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border: 1px solid rgba(47, 92, 79, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--forest-deep);
  padding: 0.46rem 0.72rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 6px 14px rgba(34, 50, 43, 0.08);
}

.lang-toggle:hover {
  transform: translateY(-1px);
}

.lang-flag {
  position: relative;
  width: 24px;
  height: 16px;
  flex: 0 0 24px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(31, 45, 41, 0.18);
}

.flag-us {
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0 1.23px,
    #ffffff 1.23px 2.46px
  );
}

.flag-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 8.6px;
  background: #3c3b6e;
}

.flag-es {
  background: linear-gradient(
    to bottom,
    #aa151b 0 25%,
    #f1bf00 25% 75%,
    #aa151b 75% 100%
  );
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  filter: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 39, 34, 0.16), rgba(21, 39, 34, 0.38)),
    linear-gradient(120deg, rgba(28, 61, 52, 0.14), rgba(197, 150, 88, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 720px;
  padding: 6rem 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  letter-spacing: 0.25px;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.08);
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.2;
  color: inherit;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  margin-bottom: 0.85rem;
}

.hero-content p {
  font-size: clamp(1rem, 2.4vw, 1.22rem);
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 650px);
  margin: -0.35rem 0 1.55rem;
  overflow: hidden;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(7, 18, 15, 0.72), rgba(7, 18, 15, 0.44));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px);
}

.hero-badges span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0.72rem 0.95rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #fff;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-badges span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-badges span::before {
  content: "";
  width: 7px;
  height: 28px;
  margin-right: 0.72rem;
  border-radius: 999px;
  background: rgba(202, 156, 99, 0.95);
  flex: 0 0 auto;
}

.hero-badges small {
  color: #ffffff;
  font-size: clamp(0.92rem, 1.8vw, 1.08rem);
  font-weight: 850;
  line-height: 1.18;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent) 0%, #d7b27c 100%);
  color: #2e2518;
  box-shadow: 0 8px 18px rgba(120, 92, 46, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: clamp(3.2rem, 7vw, 5.7rem) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  color: var(--forest-deep);
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.narrative {
  background: #f1f3f4;
  border-top: 1px solid rgba(47, 92, 79, 0.08);
  border-bottom: 1px solid rgba(47, 92, 79, 0.08);
}

.narrative-inner {
  width: min(100%, 1220px);
}

.narrative-title {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  letter-spacing: 0.2px;
  color: #1b7ea0;
  margin-bottom: 1.35rem;
}

.narrative-lead,
.narrative-block-title {
  margin: 0 0 0.65rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 800;
  color: #1b7ea0;
}

.narrative-sublead {
  margin: 0 0 1rem;
  font-size: clamp(1.18rem, 2vw, 2rem);
  font-weight: 800;
  color: #111816;
}

.narrative-list {
  margin: 0 0 1.35rem;
  padding-left: 1.45rem;
  display: grid;
  gap: 0.44rem;
}

.narrative-list li {
  color: #111816;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
}

.narrative-block-text {
  margin: 0 0 1.35rem;
  max-width: 1160px;
  color: #151f1c;
  font-size: clamp(1.02rem, 1.5vw, 1.3rem);
  line-height: 1.55;
}

#gallery .container {
  width: min(100% - 2.2rem, 1320px);
}

#gallery {
  position: relative;
  overflow: hidden;
}

#gallery::before,
#gallery::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

#gallery::before {
  width: 440px;
  height: 440px;
  top: -190px;
  left: -140px;
  background: radial-gradient(circle, rgba(202, 156, 99, 0.15) 0%, rgba(202, 156, 99, 0) 70%);
}

#gallery::after {
  width: 380px;
  height: 380px;
  right: -120px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(47, 92, 79, 0.18) 0%, rgba(47, 92, 79, 0) 70%);
}

#gallery .section-head,
#gallery .gallery-stage,
#gallery .video-card {
  position: relative;
  z-index: 1;
}

.gallery-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 0.95rem;
  align-items: stretch;
}

.gallery-spotlight {
  display: block;
  width: 100%;
  position: relative;
  border: 1px solid rgba(47, 92, 79, 0.2);
  border-radius: 26px;
  overflow: hidden;
  min-height: 620px;
  cursor: zoom-in;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  background: #10201b;
  box-shadow: 0 24px 48px rgba(25, 40, 35, 0.22);
}

.gallery-spotlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-spotlight:hover img {
  transform: scale(1.06);
}

.gallery-spotlight-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: linear-gradient(140deg, rgba(9, 18, 16, 0.7), rgba(9, 18, 16, 0.44));
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #f2f7f4;
  backdrop-filter: blur(4px);
}

.gallery-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #dbe7e2;
}

.gallery-spotlight-overlay h3 {
  margin: 0 0 0.28rem;
  color: #ffffff;
  font-size: 1.24rem;
}

.gallery-spotlight-overlay p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(239, 250, 246, 0.9);
}

.gallery-open {
  display: inline-flex;
  margin-top: 0.65rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.16);
  color: #f6fbf9;
}

.gallery-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-content: start;
}

.gallery-rail.is-cycling {
  transition: transform 0.85s ease;
}

.gallery-thumb {
  display: block;
  width: 100%;
  position: relative;
  border: 1px solid rgba(47, 92, 79, 0.2);
  border-radius: 18px;
  overflow: hidden;
  min-height: 190px;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: #13231f;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-thumb:nth-child(1) {
  grid-column: span 2;
  min-height: 250px;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 22, 19, 0.02), rgba(11, 22, 19, 0.5));
}

.gallery-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18, 31, 27, 0.22);
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}

.gallery-thumb.is-active {
  border-color: rgba(202, 156, 99, 0.8);
  box-shadow: 0 16px 26px rgba(88, 63, 29, 0.18);
}

.gallery-spotlight:focus-visible,
.gallery-thumb:focus-visible {
  outline: 2px solid rgba(202, 156, 99, 0.9);
  outline-offset: 2px;
}

.gallery-thumb-meta {
  position: absolute;
  z-index: 2;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.78rem;
  font-weight: 700;
  color: #eef8f3;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.4);
}

.video-card {
  margin: 1.35rem auto 0;
  max-width: 920px;
  background: linear-gradient(180deg, #fffefb 0%, #f6faf7 100%);
  border: 1px solid rgba(47, 92, 79, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  box-shadow: 0 14px 30px rgba(33, 54, 47, 0.14);
}

.video-head {
  margin-bottom: 0.85rem;
}

.video-head h3 {
  margin-bottom: 0.3rem;
  color: var(--forest-deep);
  font-size: 1.38rem;
}

.video-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.video-gallery {
  display: grid;
  gap: 0.9rem;
}

.video-sound-note {
  display: none;
  position: absolute;
  top: clamp(1rem, 8%, 3.2rem);
  left: clamp(1rem, 17%, 6.5rem);
  z-index: 2;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  border: 1px solid rgba(255, 242, 215, 0.62);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: rgba(255, 248, 232, 0.96);
  color: #11382f;
  font-size: clamp(0.78rem, 2.4vw, 0.92rem);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.video-sound-note.is-visible {
  display: flex;
  animation: sound-note-blink 1.15s ease-in-out infinite;
}

.video-sound-icon {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--forest-deep);
  color: #fffefb;
  flex: 0 0 auto;
}

.video-sound-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-player-wrap {
  position: relative;
  width: min(100%, 600px);
  margin: 0 auto;
  border-radius: 16px;
  background: #0f1916;
  box-shadow: 0 10px 26px rgba(19, 35, 30, 0.18);
  overflow: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

@keyframes sound-note-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.38;
    transform: scale(0.985);
  }
}

.video-player-wrap.is-switching {
  opacity: 0;
  transform: scale(0.985);
}

.video-card video {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(47, 92, 79, 0.2);
  background: #0f1916;
}

.video-selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

.video-thumb {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.52rem;
  min-height: 58px;
  border: 1px solid rgba(47, 92, 79, 0.16);
  border-radius: 12px;
  padding: 0.62rem 0.68rem;
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest-deep);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.video-thumb:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 92, 79, 0.34);
  background: #fffefb;
}

.video-thumb.is-active {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: #fffefb;
}

.video-thumb:focus-visible {
  outline: 3px solid rgba(216, 155, 59, 0.45);
  outline-offset: 3px;
}

.video-thumb-index {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(216, 155, 59, 0.16);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.video-thumb.is-active .video-thumb-index {
  background: rgba(255, 255, 255, 0.16);
  color: #fff2d7;
}

.details {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.75) 0%, rgba(233, 242, 238, 0.6) 100%);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.option-highlights {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.option-highlight {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 34px rgba(22, 42, 36, 0.18);
}

.option-highlight::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 78px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.option-highlight-ocean {
  background:
    linear-gradient(135deg, rgba(20, 94, 112, 0.94), rgba(35, 137, 148, 0.88)),
    url("assets/media/photo-01-1200.webp") center / cover;
}

.option-highlight-total {
  background: linear-gradient(135deg, var(--forest-deep) 0%, #417864 100%);
}

.option-kicker {
  display: inline-flex;
  margin-bottom: 0.72rem;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.option-highlight h3 {
  max-width: 15rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  color: #fff;
}

.option-highlight p {
  max-width: 17rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.offer-spotlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(247, 239, 225, 0.94));
  border: 1px solid rgba(202, 156, 99, 0.42);
  box-shadow: 0 12px 28px rgba(88, 63, 29, 0.12);
}

.offer-kicker {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  background: rgba(202, 156, 99, 0.18);
  color: #744f1f;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.offer-spotlight h3 {
  margin-bottom: 0.35rem;
  color: var(--forest-deep);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
}

.offer-spotlight p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.offer-spotlight strong {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 64px;
  border-radius: 16px;
  background: #7f5726;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 10px 18px rgba(127, 87, 38, 0.2);
}

.detail-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  border: 1px solid rgba(47, 92, 79, 0.12);
}

.detail-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--forest);
}

.detail-card p {
  margin: 0;
}

.detail-highlight {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--forest-deep);
}

.detail-note {
  margin-top: 0.32rem !important;
  color: var(--muted);
  font-size: 0.88rem;
}

.pricing-wrap {
  background: #fff;
  border: 1px solid rgba(47, 92, 79, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 24px rgba(42, 64, 56, 0.06);
}

.pricing-copy {
  max-width: 740px;
  margin-bottom: 1rem;
}

.pricing-copy h3 {
  color: var(--forest);
}

.pricing-copy p {
  margin: 0;
  color: var(--muted);
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(47, 92, 79, 0.12);
  border-radius: 14px;
}

.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fffdf8;
}

.pricing-table th,
.pricing-table td {
  padding: 0.92rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(47, 92, 79, 0.12);
}

.pricing-table th {
  background: rgba(47, 92, 79, 0.09);
  color: var(--forest-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.pricing-table td {
  color: var(--text);
  font-weight: 650;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table .is-ocean td {
  background: linear-gradient(90deg, rgba(29, 126, 148, 0.18), rgba(47, 92, 79, 0.08));
  border-top: 1px solid rgba(29, 126, 148, 0.24);
  border-bottom: 1px solid rgba(29, 126, 148, 0.24);
}

.pricing-table .is-featured td {
  background: rgba(202, 156, 99, 0.14);
}

.pricing-table td:nth-child(3),
.pricing-table td:nth-child(4) {
  color: var(--forest-deep);
}

.pricing-label {
  display: inline-flex;
  margin-right: 0.45rem;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #1b7ea0;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  vertical-align: middle;
}

.pricing-badge-offer {
  background: #7f5726;
}

.pricing-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.location-grid,
.contact-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.distance-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.7rem;
}

.distance-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--surface);
  border: 1px solid rgba(47, 92, 79, 0.12);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
}

.distance-list strong {
  min-width: 56px;
  color: var(--forest-deep);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(47, 92, 79, 0.14);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 320px;
}

.location {
  padding-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.advantages {
  padding-top: clamp(1.4rem, 3vw, 2.2rem);
}

.disclaimer {
  color: var(--muted);
  font-size: 0.93rem;
}

.advantages-grid {
  display: grid;
  gap: 0.78rem;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  min-height: 640px;
}

.advantage-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 8px;
  background: #10201b;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(18, 31, 27, 0.2);
  isolation: isolate;
}

.advantage-card-large {
  grid-row: span 2;
}

.advantage-card-wide {
  grid-column: span 2;
}

.advantage-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  z-index: -2;
}

.advantage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 10, 0.04), rgba(5, 12, 10, 0.74)),
    linear-gradient(120deg, rgba(5, 12, 10, 0.34), rgba(5, 12, 10, 0.08));
  z-index: -1;
}

.advantage-card:hover img {
  transform: scale(1.04);
}

.advantage-content {
  position: absolute;
  left: clamp(1rem, 2.4vw, 1.55rem);
  right: clamp(1rem, 2.4vw, 1.55rem);
  bottom: clamp(1rem, 2.4vw, 1.55rem);
  max-width: 420px;
}

.advantage-symbol {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.58rem;
  color: #ffffff;
}

.advantage-symbol svg {
  width: 34px;
  height: 34px;
}

.advantage-card h3 {
  margin-bottom: 0.4rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.advantage-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.5vw, 1.18rem);
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.contact {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.65) 0%, rgba(232, 242, 238, 0.58) 100%);
}

.potential {
  background: linear-gradient(180deg, #fffdf8 0%, #edf5f1 100%);
  border-top: 1px solid rgba(47, 92, 79, 0.1);
}

.potential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
  align-items: start;
}

.potential-item {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: #fffdf8;
  border: 1px solid rgba(47, 92, 79, 0.12);
  box-shadow: 0 20px 38px rgba(16, 38, 32, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.potential-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(16, 38, 32, 0.23);
}

.potential-item img {
  position: relative;
  width: 100%;
  height: clamp(250px, 24vw, 330px);
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  z-index: 0;
}

.potential-item:nth-child(1) img {
  object-position: center 45%;
}

.potential-item:nth-child(2) img {
  object-position: center 38%;
}

.potential-item:nth-child(3) img {
  object-position: center 34%;
}

.potential-item:hover img {
  transform: scale(1.035);
}

.potential-item::after {
  content: none;
}

.potential-number {
  position: absolute;
  top: 0;
  left: clamp(1.45rem, 3vw, 2.1rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(74px, 7vw, 98px);
  height: clamp(105px, 9vw, 140px);
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, #d6ad6c, #c99b5f);
  color: #073a32;
  font-weight: 900;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1;
  box-shadow: 0 14px 24px rgba(41, 29, 11, 0.18);
}

.potential-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 250px;
  padding: 2.45rem clamp(1.2rem, 2.4vw, 1.7rem) 1.1rem;
  color: var(--forest-deep);
}

.potential-icon {
  position: absolute;
  top: -36px;
  left: clamp(1.2rem, 2.4vw, 1.7rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(58px, 5vw, 72px);
  height: clamp(58px, 5vw, 72px);
  margin: 0;
  border-radius: 50%;
  background: rgba(83, 121, 74, 0.92);
  color: #ffffff;
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 22px rgba(3, 25, 21, 0.22);
}

.potential-icon svg {
  width: 56%;
  height: 56%;
}

.potential-card-content h3 {
  max-width: 17rem;
  margin: 0 0 0.42rem;
  color: var(--forest-deep);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.72rem, 3.35vw, 2.65rem);
  line-height: 1.02;
  text-shadow: none;
}

.potential-card-content h3 span,
.potential-card-content h3 strong {
  display: block;
}

.potential-card-content h3 strong {
  color: #bd8b4d;
}

.potential-card-content h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: #d7b27c;
}

.potential-card-content p {
  max-width: 20rem;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  font-size: clamp(0.88rem, 1.12vw, 0.98rem);
  line-height: 1.42;
  text-shadow: none;
}

.potential-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.62rem;
  border-top: 1px solid rgba(47, 92, 79, 0.14);
}

.potential-features span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  background: rgba(47, 92, 79, 0.1);
  color: var(--forest-deep);
  font-size: clamp(0.7rem, 0.88vw, 0.78rem);
  font-weight: 750;
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(47, 92, 79, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--forest-deep);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(47, 92, 79, 0.24);
  border-radius: 10px;
  padding: 0.74rem 0.85rem;
  font: inherit;
  background: #fffcf7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(47, 92, 79, 0.25);
  outline-offset: 1px;
}

.form-note {
  min-height: 1.2rem;
  margin: 0.3rem 0 0;
  color: var(--forest-deep);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(47, 92, 79, 0.15);
  background: #f6f2e9;
}

.footer-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #4f5f5a;
  font-size: 0.95rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.62rem 1rem 0.62rem 0.68rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #24c15a 0%, #17a84b 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(7, 101, 46, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(7, 101, 46, 0.38);
}

.whatsapp-float:focus-visible {
  outline: 2px solid rgba(24, 126, 58, 0.95);
  outline-offset: 2px;
}

.whatsapp-float .wa-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  flex-shrink: 0;
}

.whatsapp-float svg {
  width: 19px;
  height: 19px;
}

.whatsapp-float span[data-i18n="whatsapp_float"] {
  line-height: 1;
  letter-spacing: 0.2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 18, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 100;
  padding: 1.2rem;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-highlights {
    grid-template-columns: 1fr;
  }

  .option-highlight {
    min-height: 150px;
  }

  .offer-spotlight {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-stage {
    grid-template-columns: 1fr;
  }

  .gallery-spotlight {
    min-height: 540px;
  }

  .gallery-rail {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    will-change: transform;
  }

  .gallery-thumb,
  .gallery-thumb:nth-child(1) {
    flex: 0 0 220px;
    min-height: 180px;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: auto;
  }

  .potential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .potential-item {
    min-height: 0;
  }

  .potential-card-content h3 {
    max-width: 14rem;
    font-size: clamp(1.8rem, 5vw, 2.55rem);
  }

  .advantage-card-large,
  .advantage-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .advantage-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 780px) {
  .container,
  #gallery .container {
    width: min(100% - 2.6rem, var(--maxw));
  }

  .hero-badges {
    grid-template-columns: 1fr;
    width: min(100%, 430px);
  }

  .hero-badges span {
    min-height: 46px;
    padding: 0.58rem 0.78rem;
  }

  .hero-badges span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-badges span::before {
    height: 22px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid rgba(47, 92, 79, 0.13);
    padding: 0.8rem 1.1rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .location-grid,
  .contact-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .potential-grid {
    grid-template-columns: 1fr;
  }

  .potential-item {
    max-width: 430px;
    min-height: 0;
    margin: 0 auto;
  }

  .potential-card-content {
    padding: 2.45rem 1.25rem 1.15rem;
  }

  .potential-card-content h3 {
    max-width: 16rem;
    font-size: clamp(2rem, 8vw, 2.95rem);
  }

  .potential-card-content p {
    font-size: 0.98rem;
  }

  .advantage-card,
  .advantage-card-wide {
    grid-column: auto;
    min-height: 360px;
  }

  .narrative {
    padding-top: 2.6rem;
    padding-bottom: 2.8rem;
  }

  .narrative-list {
    gap: 0.5rem;
    padding-left: 1.2rem;
  }

  .gallery-spotlight {
    min-height: 460px;
  }

  .gallery-spotlight-overlay {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 0.78rem 0.85rem;
  }

  .gallery-spotlight-overlay h3 {
    font-size: 1.06rem;
  }

  .gallery-thumb,
  .gallery-thumb:nth-child(1) {
    flex-basis: 190px;
    min-height: 155px;
  }

  .video-card {
    max-width: 100%;
  }

  .video-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float .wa-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 640px) {
  .pricing-wrap {
    padding: 1rem;
  }

  .pricing-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .pricing-table {
    background: transparent;
    border-collapse: separate;
    border-spacing: 0;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tbody {
    display: grid;
    gap: 0.75rem;
  }

  .pricing-table tr {
    overflow: hidden;
    border: 1px solid rgba(47, 92, 79, 0.14);
    border-radius: 14px;
    background: #fffdf8;
    box-shadow: 0 8px 18px rgba(42, 64, 56, 0.08);
  }

  .pricing-table .is-ocean {
    background: linear-gradient(180deg, rgba(29, 126, 148, 0.16), rgba(255, 253, 248, 0.96));
    border-color: rgba(29, 126, 148, 0.28);
  }

  .pricing-table .is-featured {
    background: linear-gradient(180deg, rgba(202, 156, 99, 0.18), rgba(255, 253, 248, 0.96));
    border-color: rgba(202, 156, 99, 0.34);
  }

  .pricing-table th,
  .pricing-table td {
    border-bottom: 1px solid rgba(47, 92, 79, 0.1);
    padding: 0.74rem 0.85rem;
  }

  .pricing-table tr td:last-child {
    border-bottom: 0;
  }

  .pricing-table .is-ocean td,
  .pricing-table .is-featured td {
    background: transparent;
    border-top: 0;
  }

  .pricing-table td {
    display: grid;
    grid-template-columns: minmax(6.4rem, 42%) minmax(0, 1fr);
    gap: 0.8rem;
    align-items: start;
    color: var(--text);
    font-size: 0.98rem;
  }

  .pricing-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .pricing-table td:nth-child(3),
  .pricing-table td:nth-child(4) {
    color: var(--forest-deep);
    font-weight: 850;
  }

  .pricing-label {
    margin: 0 0 0.35rem;
  }
}

@media (max-width: 560px) {
  .container,
  #gallery .container {
    width: min(100% - 2.4rem, var(--maxw));
  }

  .hero-content {
    padding-top: 5.4rem;
  }

  .narrative-title {
    margin-bottom: 1rem;
  }

  .narrative-lead,
  .narrative-block-title {
    margin-bottom: 0.48rem;
  }

  .narrative-sublead {
    margin-bottom: 0.78rem;
  }

  .gallery-spotlight {
    min-height: 380px;
  }

  .gallery-thumb,
  .gallery-thumb:nth-child(1) {
    flex-basis: 78%;
  }

  .video-card {
    padding: 0.9rem;
  }

  .video-card video {
    max-height: 68vh;
  }

  .video-selector {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .video-thumb {
    min-height: 52px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .option-highlight {
    padding: 1.05rem;
  }

  .option-highlight h3,
  .option-highlight p {
    max-width: none;
  }

  .offer-spotlight {
    padding: 1rem;
  }

  .offer-spotlight strong {
    min-width: 100%;
    min-height: 54px;
  }

  .pricing-label {
    display: flex;
    margin: 0 0 0.32rem;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.8rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-rail.is-cycling {
    transition: none !important;
  }

  .video-player-wrap,
  .video-thumb {
    transition: none !important;
  }

  .video-sound-note.is-visible {
    animation: none !important;
  }
}
