:root {
  --bg-color: #e8e4dd;
  --text-main: #5d5f56;
  --accent-green: #3a4f41;
  --accent-teal: #2e6d89; /* Color azul/verdoso del formulario y disclaimer */
  --white: #ffffff;
  --container-width: 1200px;
  --section-padding: 120px;
  --font-heading: "Zodiak", Georgia, serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

/* --- RESET & BASE --- */
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.3s ease;
}

.w-full {
  width: 100%;
}

.font-zodiac {
  font-family: var(--font-heading);
}
.font-Jakarta {
  font-family: var(--font-body);
}
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}

.text-light {
  color: var(--text-main);
}

.bg-video-intro {
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 0;
}
.bg-video-intro img {
  position: absolute;
  width: 50%;
  top: 0;
  margin-left: 50%;
  transform: translateX(-50%);
  filter: invert(0.2);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  cursor: pointer;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
.container-header {
  margin: 0 auto;
  padding: 0 2%;
}
.container-intro {
  margin: 0 auto;
  padding: 0 5%;
}
.container-location {
  margin: auto;
  padding: 0 5%;
}

/* --- ANIMACIONES DE ALTA GAMA (ENTRADA Y SALIDA) --- */
.reveal {
  opacity: 0;
  transform: translateY(80px) scale(0.96);
  transition:
    opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 {
  transition-delay: 0.15s;
}
.delay-2 {
  transition-delay: 0.3s;
}
.delay-3 {
  transition-delay: 0.45s;
}

/* --- HEADER --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 0;
  z-index: 100;
  color: var(--accent-teal);
  animation: headerFadeIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition:
    background-color 0.5s ease,
    box-shadow 0.5s ease;
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header.scrolled {
  background-color: var(--bg-color);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 80px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.social-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}
.lang-switch {
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-teal);
}
.lang-btn {
  color: inherit;
  opacity: 0.5;
  transition: opacity 0.3s;
  font-weight: 500;
}
.lang-btn:hover,
.lang-btn.active {
  opacity: 1;
}
.lang-btn.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.lang-divider {
  opacity: 0.5;
}

/* --- HAMBURGER BUTTON --- */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  font-size: 1.5rem;
  line-height: 1;
  transition: opacity 0.3s;
}
.hamburger-btn:hover {
  opacity: 0.7;
}

/* --- NAV OVERLAY --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* --- NAV DRAWER --- */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100vw);
  height: 100%;
  background: var(--accent-teal);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 32px 40px 100px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.nav-drawer.active {
  transform: translateX(0);
}

/* Drawer header: logo + close */
.nav-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
.nav-drawer-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #e3ded6;
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px;
  opacity: 0.7;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
}
.nav-drawer-close:hover {
  opacity: 1;
}

/* Nav links */
.nav-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
/* .nav-drawer-links li {
  border-bottom: 1px solid rgba(227, 222, 214, 0.15);
} */
.nav-drawer-links li:first-child {
  border-top: 1px solid rgba(227, 222, 214, 0.15);
}
.nav-drawer-links a {
  display: block;
  padding: 12px 0;
  color: #e3ded6;
  font-family: "Zodiak", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.nav-drawer-links a:hover {
  color: #b89a6a;
  padding-left: 8px;
}

/* Drawer footer: contact info */
.nav-drawer-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(227, 222, 214, 0.15);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-drawer-footer p {
  color: rgba(227, 222, 214, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0;
}

/* --- HERO VIDEO --- */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-video-container {
  width: 70%;
  height: 90%;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  background: #000;
  overflow: hidden;
  transform: translateZ(0);
  mask-image: radial-gradient(white, black);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  z-index: 5;
}
#heroVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
.video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.video-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.video-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* --- SECCIONES --- */
section {
  padding: var(--section-padding) 0;
  position: relative;
}
.bg-watermark {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(232, 228, 221, 0.5) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
/* --- SECCIÓN 1: INTRODUCCIÓN --- */
#intro {
  position: relative;
}
.bg-intro {
  position: relative;
  top: -40%;
}
.bg-intro img {
  position: absolute;
  top: -200px;
  left: 0;
  right: auto;
  width: 25%;
  filter: invert(0.2);
}
.brujula-intro {
  position: relative;
  top: -40%;
}
.brujula-intro img {
  position: absolute;
  top: 0;
  left: -90px;
  right: auto;
  width: 250px;
  filter: invert(0.2);
}
.intro-grid {
  display: grid;
  grid-template-columns: 4fr 4fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}
.title-section-intro svg {
  width: 100%;
  max-width: 600px;
}
.intro-text {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}
.intro-text h2 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 15px;
}
.intro-text h2 span.line {
  display: flex;
  align-items: baseline;
  gap: 15px;
}
.intro-text h2 .small-text {
  font-size: 0.35em;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
  font-weight: 400;
}
.intro-text .paragraph-block {
  margin-left: auto;
  margin-right: 0;
  margin-top: 60px;
  max-width: 70%;
}
.intro-text p {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 24px;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 300;
}
.intro-text p strong {
  color: var(--text-main);
  font-weight: 700;
}
.intro-img {
  width: 100%;
  position: relative;
}
.intro-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* --- SECCIÓN 2: UBICACIÓN Y CARRUSEL MULTI-SECCIÓN --- */
.location-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.location-carousel-wrapper {
  position: relative;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.location-slides-container {
  display: grid;
  position: relative;
}
.location-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.location-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.location-grid {
  display: grid;
  grid-template-columns: 4fr 4fr;
  gap: 60px;
  align-items: center;
}
.location-grid-second-slide {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 32px;
  align-items: center;
}
.location-grid-third-slide {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 60px;
  align-items: center;
  justify-items: center;
}
.location-grid-third-slide .location-text-block {
  text-align: center;
}
.location-text-block {
  width: 80%;
  padding-left: 8%;
}
.section-subtitle-small {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0;
  display: block;
}
.location-text-block h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}
.location-text-block h2 i {
  font-family: var(--font-heading);
}
.location-text-block p {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 300;
}
.location-text-block p strong {
  font-weight: 700;
  color: var(--text-main);
}
.location-img-container {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagen en su formato original, sin recortar */
.location-img-container img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
}

/* Slide 3: todas las imágenes POI con el mismo aspect-ratio que Ciénaga */
.location-grid-third-slide .location-img-container {
  aspect-ratio: 239 / 263;
  overflow: hidden;
}
.location-grid-third-slide .location-img-container img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.location-img-container-slide-dos {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-img-container-slide-dos img {
  width: 80%;
  height: auto;
  max-height: 75vh; /* Evitar que fotos verticales se salgan de pantalla */
  object-fit: contain;
  display: block;
}

/* Botones de navegación principal de la SECCIÓN (izquierda y derecha globales) */
.carousel-nav-main {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(93, 95, 86, 0.55);
  border-radius: 50%;
  opacity: 0.9;
  transition: all 0.3s;
  z-index: 20;
  cursor: pointer;
  border: none;
}
.carousel-nav-main:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  background: var(--accent-teal);
  color: var(--white);
}
.carousel-nav-main.prev {
  left: -80px;
}
.carousel-nav-main.next {
  right: -80px;
  font-size: 40px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(90, 96, 91, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background-color: var(--accent-green);
  transform: scale(1.2);
}

/* Estilos Carrusel Interno (Frases) */
.inner-phrase-carousel {
  margin-top: 40px;
  padding: 20px;
  /* border-left: 2px solid var(--accent-green); */
  position: relative;
  text-align: center;
  margin: auto;
}
.phrase-slide {
  display: none;
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 400;
  letter-spacing: 1px;
  animation: fadeIn 0.5s ease;
}
.phrase-slide.active {
  display: block;
  position: relative;
}
.content-phrase {
  max-width: 420px;
  margin: auto;
}
.content-phrase h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.content-phrase h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-top: 16px;
}
.content-phrase h4 strong {
  font-weight: 700;
}
.content-phrase h4 .unit {
  font-weight: 300;
  font-size: 1.2rem;
}
.content-phrase p {
  font-size: 1rem;
  line-height: 1.7;
  min-height: auto;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.inner-controls {
  display: flex;
  justify-content: center;
  width: 100%;
  pointer-events: none;
  gap: 10px;
  margin-top: 20px;
}
.inner-controls button {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  pointer-events: all;
  background: var(--accent-teal);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  opacity: 1;
  padding: 0;
  transition: opacity 0.3s;
}
.inner-controls button:hover {
  opacity: 0.6;
}
@keyframes levitate {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(4px);
  }
  70% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.animate-levitate {
  animation: levitate 12s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- SECCIÓN 3: EQUIPO DE TRABAJO --- */
.team-section {
  padding-top: 60px;
  position: relative;
}

.bg-team-section {
  position: absolute;
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: auto;
}
.bg-team-section img {
  width: 100%;
  height: auto;
}
.team-title-container {
  margin-bottom: 80px;
}
.staggered-title {
  font-size: 4rem;
  line-height: 1.1;
}
.staggered-title span {
  display: block;
}
.staggered-title .indent {
  margin-left: 1.5em;
}
.team-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.team-col {
  padding: 0 40px;
  position: relative;
}
.team-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}
.team-logo-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.team-logo-container img {
  max-width: 130px;
  max-height: 65px;
  width: 130px;
  height: 65px;
  object-fit: contain;
  filter: brightness(0) invert(0.25);
}
.team-col p {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.9;
  margin-bottom: 15px;
  text-align: justify;
  letter-spacing: 0.04em;
  font-weight: 300;
}
.team-col p strong {
  color: var(--text-main);
  font-weight: 700;
}
.team-col p i {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-main);
}

/* --- SECCIÓN 4: PROPIEDAD --- */
.property-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}
.property-title h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--text-main);
  text-align: end;
}
.property-title h2 span.line {
  display: block;
}
.property-title h2 i {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
}
.property-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.btn-solid {
  display: inline-block;
  background-color: #5a605b;
  color: var(--white);
  padding: 12px 35px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  text-align: center;
  width: fit-content;
}
.btn-solid:hover {
  background-color: var(--text-main);
  transform: translateY(-2px);
}
.property-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- SECCIÓN 5: AMENIDADES --- */
.amenities-section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
.bg-amenities {
  width: 350px;
  height: auto;
  position: absolute;
  right: 0;
  left: auto;
  filter: invert(0.2);
  top: 50%;
  transform: translateY(-50%);
}
.bg-amenities img {
  width: 100%;
  height: auto;
}
.amenities-main-title {
  font-size: 3.5rem;
  text-align: center;
  letter-spacing: 4px;
  margin-bottom: 60px;
  color: var(--text-main);
}
.amenities-content-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 50px;
  align-items: flex-end;
}
.amenities-img img {
  width: 100%;
  min-height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.amenities-text-cols {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
}
.amenity-cat-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.line-list {
  list-style: none;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 15px;
  margin-bottom: 30px;
}
.line-list li {
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.6;
  position: relative;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.line-list li::before {
  content: "•";
  position: absolute;
  left: -19px;
  font-size: 20px;
  top: -5px;
}
.line-list.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 15px;
}

/* --- SECCIÓN 6: SERVICIOS --- */
.services-section {
  padding-top: 60px;
  padding-bottom: 120px;
  position: relative;
}

.bg-services {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bg-services .derecha {
  position: absolute;
  right: 0;
  left: auto;
  width: 450px;
  top: 50%;
  transform: translateY(-50%);
}
.bg-services .derecha img,
.bg-services .izquierda img {
  display: block;
  width: 100%;
  height: auto;
}
.bg-services .izquierda {
  position: absolute;
  right: auto;
  left: 0;
  width: 450px;
  top: 50%;
  transform: translateY(-50%);
}

.services-main-title {
  font-size: 3.5rem;
  text-align: center;
  letter-spacing: 4px;
  margin-bottom: 60px;
  color: var(--text-main);
}
.services-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}
.services-content-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 50px;
  align-items: flex-start;
}
.services-text-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.services-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- SECCIÓN 7: BENEFICIOS --- */
.benefits-section {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
}
.bg-beneficios {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.bg-beneficios img {
  display: block;
  width: 100%;
  height: auto;
}
.benefits-header {
  margin-bottom: 60px;
}
.benefits-header h2 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--text-main);
  margin-bottom: 10px;
}
.benefits-header h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--text-main);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefit-img {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}
.benefit-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.benefit-card h4 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.benefit-card .benefit-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
  width: 100%;
}
.benefit-card .benefit-bullets li {
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--text-main);
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}
.benefit-card .benefit-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 16px;
  top: -2px;
  color: var(--accent-teal);
}

/* --- SECCIÓN 8: CONTACTO / FORMULARIO --- */
.contact-section {
  padding-top: 80px;
  padding-bottom: 140px;
  text-align: center;
}
.contact-header {
  margin-bottom: 40px;
}
.contact-header h2 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--accent-teal);
  line-height: 1;
  letter-spacing: 0.1em;
}
.contact-header .italic-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 3rem;
  color: var(--accent-teal);
  margin-top: -10px;
  letter-spacing: 0.04em;
}
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  margin-bottom: 30px;
}

.custom-input {
  width: 100%;
  background-color: var(--accent-teal);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 18px 25px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  font-weight: 300;
  transition: all 0.3s;
}
.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.08em;
}
.custom-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(51, 102, 118, 0.5);
  background-color: #2a5563;
}

.field-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.phone-wrap {
  display: flex;
  width: 100%;
}
.w-full {
  width: 100%;
}

.country-code-select {
  flex-shrink: 0;
  background-color: var(--accent-teal);
  color: var(--white);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px 0 0 50px;
  padding: 18px 8px 18px 16px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  font-weight: 300;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s;
  max-width: 200px;
}

.country-code-select:focus {
  outline: none;
  background-color: #2a5563;
}

.phone-wrap .custom-input {
  border-radius: 0 50px 50px 0;
  flex: 1;
  min-width: 0;
}
.form-error {
  color: #e07070;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-top: 4px;
  text-align: left;
}
.d-none {
  display: none !important;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-outline-blue {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-teal);
  border: 1px solid var(--accent-teal);
  padding: 15px 50px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 2px;
  transition: all 0.3s;
  text-align: center;
}
.btn-outline-blue:hover {
  background-color: var(--accent-teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- THANK YOU PAGE --- */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/img/thankyou/bg-thank-you-page.jpg") center / cover no-repeat;
  padding: 100px 5% 60px;
}
.thankyou-msg-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  max-width: 600px;
  width: 100%;
}
.thankyou-ornament {
  opacity: 0.85;
  animation: fadeInUp 0.8s ease forwards;
}
.thankyou-header {
  margin-bottom: 0;
}
.thankyou-header h2 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--accent-teal);
  line-height: 1;
  letter-spacing: 0.1em;
}
.thankyou-header .italic-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 3rem;
  color: var(--accent-teal);
  margin-top: -10px;
  letter-spacing: 0.04em;
}
.thankyou-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.thankyou-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--accent-teal);
  letter-spacing: 0.08em;
  min-height: 1.2em;
}
.thankyou-btn {
  margin-top: 12px;
  text-decoration: none;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- SECCIÓN 9: FOOTER --- */
.footer-main {
  background-color: var(--accent-green); /* Fallback por si la imagen no carga */
  background-image: url("/img/footer/bg-footer.jpg");
  background-size: cover;
  background-position: center;
  padding: 70px 5%;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-left h2 {
  font-size: 4.5rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.footer-address {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.btn-solid-light {
  display: inline-block;
  background-color: var(--bg-color); /* Color beige de la página */
  color: var(--accent-green);
  padding: 15px 45px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 2px;
  transition: all 0.3s;
  text-align: center;
  width: fit-content;
  font-weight: 600;
}

.btn-solid-light:hover {
  background-color: var(--white);
  transform: translateY(-2px);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: flex-end; /* Alinear a la derecha */
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
}

/* Clase especial para espaciar drásticamente las letras en el contacto */
.spaced-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.4em; /* Emula el S a n t u a sin ensuciar el HTML */
  font-weight: 300;
}

/* Disclaimer bar */
.footer-disclaimer {
  background-color: var(--bg-color);
  padding: 25px 0;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.65rem;
  color: var(--accent-teal);
  line-height: 1.5;
  max-width: 1000px;
  margin: 0 auto;
}

/* --- MODAL: FUTURA PROPIEDAD --- */
.property-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 28, 25, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.property-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.property-modal-container {
  background: var(--bg-color);
  border-radius: 16px;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 44px 44px;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.property-modal-overlay.active .property-modal-container {
  transform: translateY(0);
}
.property-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.property-modal-close:hover {
  background: rgba(0, 0, 0, 0.16);
}
.property-modal-header {
  margin-bottom: 24px;
}
.property-modal-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.property-modal-img img {
  width: 100%;
  height: auto;
  display: block;
}
.property-modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.property-modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 1px solid var(--accent-teal);
}
.property-modal-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 14px;
}
.pms-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-teal);
}
.pms-value {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.pms-value small {
  font-size: 0.78rem;
  opacity: 0.7;
}
.pms-section-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-teal);
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

@media (max-width: 600px) {
  .property-modal-specs {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .property-modal-container {
    padding: 32px 20px 32px;
    border-radius: 12px;
    max-height: 88vh;
  }
}

/* --- MODAL: BENEFICIOS --- */
.benefits-modal-container {
  max-width: 1020px;
}
.benefits-modal-header {
  margin-bottom: 24px;
  text-align: center;
}
.benefits-modal-main-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-main);
  line-height: 1;
}
.benefits-modal-dot {
  color: var(--accent-teal);
}
.benefits-modal-subtitle {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-main);
  margin-top: 4px;
}
.benefits-modal-subtitle em {
  font-style: italic;
  font-weight: 700;
}
.benefits-modal-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.benefits-modal-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.benefits-modal-note {
  font-size: 0.75rem;
  color: var(--text-main);
  opacity: 0.6;
  margin-bottom: 14px;
  line-height: 1.5;
}
.benefits-modal-text {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 14px;
}
.benefits-modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid var(--accent-teal);
}
.benefits-modal-list li {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.6;
  padding-left: 14px;
}

@media (max-width: 700px) {
  .benefits-modal-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .benefits-modal-main-title {
    font-size: 2.4rem;
  }
  .benefits-modal-subtitle {
    font-size: 1.1rem;
  }
}

/* --- RESPONSIVE --- */

/* ── 13" laptops (1440px) ─────────────────────────────── */
@media (max-width: 1440px) {
  .hero-video-container {
    height: 82%;
  }
  .intro-grid {
    gap: 40px;
  }
  .intro-text h2 {
    font-size: 2.5rem;
  }
  .location-carousel-wrapper {
    max-width: 84%;
  }
  .location-text-block h2 {
    font-size: 2.6rem;
  }
  .staggered-title {
    font-size: 3.2rem;
  }
}

/* ── 12" / small 13" laptops (1280px) ────────────────── */
@media (max-width: 1280px) {
  .hero {
    padding-top: 90px;
  }
  .hero-video-container {
    width: 65%;
    height: 80%;
  }
  .intro-grid {
    gap: 30px;
  }
  .intro-text h2 {
    font-size: 2.5rem;
  }
  .title-section-intro {
    padding-left: 80px;
  }
  .title-section-intro svg {
    max-width: 480px;
  }
  .location-carousel-wrapper {
    max-width: 90%;
  }
  .location-text-block h2 {
    font-size: 2rem;
  }
  .line-list.two-cols {
    grid-template-columns: 1fr;
  }
}

/* ── Tablets grandes / 12" ajustados (1024px) ────────── */
@media (max-width: 1024px) {
  .property-grid {
    grid-template-columns: 1fr 1.5fr;
  }
  .property-title {
    grid-column: 1 / -1;
    margin-bottom: -20px;
  }
  .hero-video-container {
    width: 96%;
    height: 78%;
  }
  .intro-grid {
    gap: 24px;
  }
  .intro-text h2 {
    font-size: 2.6rem;
  }
  .location-carousel-wrapper {
    max-width: 94%;
  }
}

/* ── Tablets (992px) ──────────────────────────────────── */
@media (max-width: 992px) {
  .intro-grid,
  .location-grid,
  .location-grid-second-slide,
  .location-grid-third-slide,
  .amenities-content-grid,
  .services-content-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .location-grid-third-slide .location-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .location-grid-third-slide .location-text-block {
    padding-left: 0;
    width: 100%;
  }
  /* Altura dinámica en móvil: el contenedor sigue al slide activo */
  .location-slides-container {
    display: block;
    position: relative;
  }
  .location-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .location-slide.active {
    position: relative;
  }
  .content-phrase {
    max-width: 100%;
  }
  .location-text-block {
    padding-left: 0;
  }
  .location-carousel-wrapper {
    max-width: 100%;
    padding: 0 48px;
  }
  .carousel-nav-main.prev {
    left: 0;
  }
  .carousel-nav-main.next {
    right: 0;
  }
  .location-text-block {
    width: 100%;
  }
  .intro-text .paragraph-block {
    max-width: 100%;
    margin-top: 40px;
  }
  .title-section-intro svg {
    max-width: 100%;
  }
  .team-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-col {
    padding: 0;
    text-align: center;
  }
  .team-col:not(:last-child)::after {
    display: none;
  }
  .team-col p {
    text-align: center;
  }
  .amenities-text-cols,
  .services-text-cols {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    gap: 80px;
  }
  .footer-right {
    align-items: flex-start;
    margin-top: 40px;
  }
}

/* ── Mobile landscape / tablets chicos (768px) ───────── */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding-top: 80px;
    align-items: flex-start;
  }
  .hero-video-container {
    width: 100%;
    border-radius: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .intro-grid {
    gap: 20px;
  }
  .intro-text .paragraph-block {
    margin-left: 0;
    margin-top: 30px;
  }
  .intro-text h2,
  .location-text-block h2 {
    font-size: 2rem;
  }
  .staggered-title {
    font-size: 2.2rem;
  }
  .location-carousel-wrapper {
    max-width: 100%;
    padding: 0 44px;
  }
  .location-img-container,
  .location-img-container-slide-dos {
    width: 100%;
  }
  .location-img-container img,
  .location-img-container-slide-dos img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
  .content-phrase p {
    min-height: auto;
  }
  .content-phrase h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  .content-phrase h4 {
    font-size: 1.4rem;
  }
  .inner-phrase-carousel {
    padding: 16px 44px;
  }
  .location-section {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .property-title h2,
  .benefits-header h2 {
    font-size: 2.2rem;
  }
  .footer-left h2 {
    font-size: 2.6rem;
  }
  .amenities-main-title,
  .services-main-title {
    font-size: 2rem;
  }
  .property-title h2 {
    text-align: center;
  }
  .contact-header h2 {
    font-size: 1.4rem;
  }
  .contact-header .italic-title {
    font-size: 2.2rem;
  }
  .property-grid {
    grid-template-columns: 1fr;
  }
  .staggered-title {
    text-align: center;
  }
  .staggered-title .indent {
    margin-left: 0;
  }
  .amenities-text-cols,
  .services-text-cols {
    grid-template-columns: 1fr;
  }
  .line-list.two-cols,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .spaced-text {
    letter-spacing: 0.1em;
  }
}

/* ── Móviles (480px → 420px) ─────────────────────────── */
@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
  }
  .hero-video-container {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .video-controls {
    bottom: 10px;
    right: 10px;
    gap: 8px;
  }
  .video-btn {
    width: 36px;
    height: 36px;
  }
  .intro-grid {
    gap: 16px;
  }
  .intro-text h2,
  .location-text-block h2 {
    font-size: 1.6rem;
  }
  .staggered-title {
    font-size: 1.8rem;
  }
  .content-phrase h3 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .content-phrase h4 {
    font-size: 1.3rem;
    margin-top: 10px;
  }
  .content-phrase p {
    font-size: 0.9rem;
  }
  .inner-phrase-carousel {
    padding: 12px 36px;
  }
  .property-title h2,
  .benefits-header h2 {
    font-size: 1.8rem;
  }
  .footer-left h2 {
    font-size: 2rem;
  }
  .amenities-main-title,
  .services-main-title {
    font-size: 1.8rem;
  }
  .contact-header h2 {
    font-size: 1.1rem;
  }
  .contact-header .italic-title {
    font-size: 1.8rem;
  }
  .intro-text .paragraph-block {
    margin-top: 20px;
  }
  .intro-text p {
    font-size: 0.9rem;
  }
  .location-grid {
    gap: 30px;
  }
  .location-carousel-wrapper {
    padding: 0 36px;
  }
  .carousel-nav-main {
    width: 36px;
    height: 36px;
  }
  .carousel-nav-main.prev {
    left: 0;
  }
  .carousel-nav-main.next {
    right: 0;
  }
  .carousel-dots {
    margin-top: 24px;
  }
  section {
    padding: 60px 0;
  }
  .container-location {
    padding: 0;
  }
  .location-section {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

/* ── Botón flotante CTA ── */
@keyframes pulseCta {
  0% {
    box-shadow:
      0 4px 16px rgba(46, 109, 137, 0.4),
      0 0 0 0 rgba(46, 109, 137, 0.5);
  }
  70% {
    box-shadow:
      0 4px 16px rgba(46, 109, 137, 0.4),
      0 0 0 14px rgba(46, 109, 137, 0);
  }
  100% {
    box-shadow:
      0 4px 16px rgba(46, 109, 137, 0.4),
      0 0 0 0 rgba(46, 109, 137, 0);
  }
}

.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 400;
  background: var(--accent-teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: pulseCta 2s ease-out infinite;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.floating-cta:hover {
  background: #245a72;
  box-shadow: 0 8px 28px rgba(46, 109, 137, 0.55);
  animation-play-state: paused;
}

@media (max-width: 600px) {
  .floating-cta {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    justify-content: center;
    font-size: 0.88rem;
    padding: 16px 20px;
    box-shadow: 0 -2px 16px rgba(46, 109, 137, 0.3);
    animation: none;
    border-top: solid 2px var(--bg-color);
  }
}
