:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --emerald: #2d6a4f;
  --emerald-dark: #1b4332;
  --emerald-light: #40916c;
  --charcoal: #1a1a2e;
  --dark: #111118;
  --warm-white: #fafaf5;
  --cream: #f5f0e8;
  --stone: #8b7355;
  --text-muted: #6b6b7a;
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}
.serif {
  font-family: "Playfair Display", serif;
}
.serif-light {
  font-family: "Cormorant Garamond", serif;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
}
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(17, 17, 24, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
  flex-shrink: 0;
}
.nav-logo-text {
  color: white;
}
.nav-logo-text .name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  line-height: 1;
}
.nav-logo-text .tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
}
nav a:hover {
  color: var(--gold);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark) !important;
  padding: 11px 26px;
  border-radius: 2px;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
  transition: all 0.3s !important;
  text-transform: uppercase;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4) !important;
  background: var(--gold-light) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 17, 24, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 28px;
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 24, 0.92) 0%,
    rgba(17, 17, 24, 0.5) 40%,
    rgba(17, 17, 24, 0.15) 70%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 7px 18px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.hero-badge i {
  font-size: 10px;
}
.hero-title {
  font-size: clamp(3rem, 6vw, 6rem);
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.hero-title .accent {
  color: var(--gold);
  font-style: italic;
}
.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 44px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 15px 36px;
  text-decoration: none;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.btn-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.7);
  }
}
.hero-stats {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
}
.hero-stat {
  text-align: center;
  color: white;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  min-width: 90px;
}
.hero-stat .num {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
section {
  position: relative;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  max-width: 600px;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}
#about {
  background: var(--dark);
  padding: 120px 0;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  bottom: 60px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-gold-tag {
  position: absolute;
  top: 30px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 12px 20px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}
.about-text .section-title {
  color: white;
}
/* .about-text .section-label {
} */
.about-body {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin: 28px 0 40px;
  font-style: italic;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
}
.about-highlight i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-highlight-text strong {
  display: block;
  color: white;
  font-size: 13px;
  margin-bottom: 3px;
}
.about-highlight-text span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
#villas {
  padding: 120px 0;
  background: var(--warm-white);
}
.villas-intro {
  text-align: center;
  margin-bottom: 80px;
}
.villas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.villa-card {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
}
.villa-card-img {
  height: 560px;
  overflow: hidden;
  position: relative;
}
.villa-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.75);
}
.villa-card:hover .villa-card-img img {
  transform: scale(1.06);
  filter: brightness(0.85);
}
.villa-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 24, 0.95) 0%,
    rgba(17, 17, 24, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}
.villa-gem {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.villa-esmeralda .villa-gem {
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  color: white;
}
.villa-rubi .villa-gem {
  background: linear-gradient(135deg, #7b1d1d, #b91c1c);
  color: white;
}
.villa-card-name {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: white;
  margin-bottom: 6px;
}
.villa-card-cap {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.villa-amenities-mini {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.villa-am-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
}
.villa-am-tag i {
  color: var(--gold);
  font-size: 10px;
}
.villa-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: gap 0.3s;
}
.villa-cta-link:hover {
  gap: 16px;
}
.villas-detail {
  margin-top: 80px;
  background: var(--dark);
  border-radius: 4px;
  overflow: hidden;
}
.villa-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: stretch;
}
.villa-tab {
  flex: 1;
  padding: 38px 32px;
  min-height: 76px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.villa-tab.active {
  color: white;
  border-bottom-color: var(--gold);
}
.villa-tab:hover {
  color: white;
}
.villa-tab-content {
  display: none;
  padding: 56px;
}
.villa-tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.villa-detail-title {
  color: white;
  font-size: 2rem;
  margin-bottom: 8px;
}
.villa-detail-sub {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.villa-rooms {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.villa-room {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  border-left: 2px solid rgba(201, 168, 76, 0.4);
}
.villa-room-icon {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
/* .villa-room-text {
} */
.villa-room-text strong {
  color: white;
  font-size: 13px;
  display: block;
  margin-bottom: 3px;
}
.villa-room-text span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.5;
}
.villa-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.villa-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.villa-feature i {
  color: var(--gold);
  font-size: 14px;
  width: 20px;
  text-align: center;
}
.villa-detail-img {
  height: 350px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
.villa-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#social {
  background: var(--charcoal);
  padding: 120px 0;
  overflow: hidden;
}
.social-header {
  text-align: center;
  margin-bottom: 80px;
}
.social-header .section-title {
  color: white;
}
.social-header .section-sub {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
}
.social-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 56px;
  filter: brightness(0.9);
}
.social-amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.social-amenity {
  background: rgba(255, 255, 255, 0.04);
  padding: 40px 28px;
  text-align: center;
  transition: background 0.3s;
  border-top: 2px solid transparent;
}
.social-amenity:hover {
  background: rgba(201, 168, 76, 0.08);
  border-top-color: var(--gold);
}
.social-amenity-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: var(--gold);
  transition: all 0.3s;
}
.social-amenity:hover .social-amenity-icon {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.1);
}
.social-amenity h4 {
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  margin-bottom: 8px;
}
.social-amenity p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.6;
}
#gallery {
  padding: 120px 0;
  background: var(--cream);
}
.gallery-intro {
  margin-bottom: 60px;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}
.gal-item {
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.3s;
  filter: brightness(0.9);
}
.gal-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.gal-item .gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 24, 0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-item:hover .gal-overlay {
  background: rgba(17, 17, 24, 0.2);
}
.gal-item .gal-overlay i {
  color: white;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-item:hover .gal-overlay i {
  opacity: 1;
}
.gal-item.tall {
  grid-row: span 2;
}
.gal-item.wide {
  grid-column: span 2;
}
.gal-item {
  height: 220px;
}
.gal-item.tall {
  height: 448px;
}
.gal-item.wide {
  height: 220px;
}
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#lightbox.open {
  display: flex;
}
#lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
}
#lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
#lightbox-close:hover {
  opacity: 1;
}
#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 32px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#lightbox-prev {
  left: 24px;
}
#lightbox-next {
  right: 24px;
}
#lightbox-prev:hover,
#lightbox-next:hover {
  background: rgba(201, 168, 76, 0.3);
}
#experiencias {
  padding: 120px 0;
  background: var(--dark);
}
.exp-header {
  margin-bottom: 70px;
}
/* .exp-header .section-title, .exp-header .section-label {
} */
.exp-header .section-title {
  color: white;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.exp-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
}
.exp-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
  filter: brightness(0.6);
}
.exp-card:hover .exp-card-img img {
  transform: scale(1.08);
  filter: brightness(0.8);
}
.exp-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 24, 0.95) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  transition: background 0.3s;
}
.exp-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px;
  transition: all 0.3s;
}
.exp-card:hover .exp-icon {
  background: var(--gold);
  color: var(--dark);
}
.exp-card h4 {
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.exp-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
}
#eventos {
  padding: 120px 0;
  background: var(--warm-white);
}
.eventos-header {
  text-align: center;
  margin-bottom: 70px;
}
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.evento-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  text-align: center;
  padding: 40px 24px 32px;
  border-bottom: 3px solid transparent;
}
.evento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-bottom-color: var(--gold);
}
.evento-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(45, 106, 79, 0.1),
    rgba(45, 106, 79, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--emerald);
  transition: all 0.3s;
}
.evento-card:hover .evento-icon {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: white;
}
.evento-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.evento-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
#testimonios {
  padding: 120px 0;
  background: var(--emerald-dark);
}
.test-header {
  text-align: center;
  margin-bottom: 70px;
}
.test-header .section-title {
  color: white;
}
.test-header .section-label {
  color: var(--gold);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 36px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s;
}
.test-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.test-quote {
  font-size: 60px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: Georgia, serif;
}
.test-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 20px;
}
.test-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
}
.test-author-info strong {
  color: white;
  font-size: 14px;
  display: block;
}
.test-author-info span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}
#ubicacion {
  padding: 120px 0;
  background: var(--dark);
}
.ub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ub-text .section-title {
  color: white;
}
.ub-body {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  font-style: italic;
  margin: 24px 0 36px;
}
.ub-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ub-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ub-detail i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.ub-detail span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.5;
}
.map-placeholder {
  height: 400px;
  background: var(--charcoal);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(45, 106, 79, 0.2) 0%,
    transparent 70%
  );
}
.map-placeholder i {
  font-size: 50px;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}
.map-placeholder h4 {
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 8px;
  position: relative;
}
.map-placeholder p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  letter-spacing: 1px;
  position: relative;
}
.map-placeholder .map-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#reservas {
  padding: 120px 0;
  background: white;
}
.cotizaciones-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, #0d2b1f 100%);
}
#reservas .booking-engine-header {
  max-width: 860px;
  margin: 0 auto 70px;
  text-align: center;
}
#reservas .booking-engine-header .section-label {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
#reservas .booking-engine-header h2 {
  color: var(--charcoal);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}
#reservas .booking-engine-header p {
  margin: 0 auto;
  max-width: 600px;
  color: var(--text-muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
}
#reservas .booking-engine-wrapper {
  width: min(100%, 860px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.08);
}
#reservas .booking-engine-iframe {
  width: 100%;
  height: clamp(420px, 42vw, 520px);
  min-height: 420px;
  border: 0;
  display: block;
  background: transparent;
}
.about-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.about-cta-group > a,
.about-cta-group .btn-primary {
  width: auto;
  flex: 0 1 auto;
}
.booking-direct-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.reservas-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.reservas-left .section-title {
  color: white;
}
.reservas-left .section-sub {
  color: rgba(255, 255, 255, 0.6);
}
.reservas-perks {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.res-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.res-perk i {
  color: var(--gold);
  font-size: 16px;
  width: 20px;
  text-align: center;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 36px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.wa-btn:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.4);
}
.wa-btn i {
  font-size: 20px;
}
.form-card {
  background: white;
  border-radius: 6px;
  padding: 48px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.form-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 32px;
  color: var(--charcoal);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid #e0ddd5;
  border-radius: 3px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  transition: border-color 0.3s;
  background: var(--warm-white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  background: white;
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(45, 106, 79, 0.4);
}
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  color: var(--emerald);
  font-family: "Playfair Display", serif;
  font-size: 18px;
}
.form-message {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 22px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.form-message.success {
  background: #e6f3ea;
  color: #1b3d2e;
  border-color: #8bc39b;
}
.form-message.error {
  background: #fdecea;
  color: #5d2320;
  border-color: #f3b3aa;
}
.form-message-icon {
  background: rgba(255, 255, 255, 0.55);
  color: inherit;
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.form-message.success .form-message-icon {
  background: rgba(138, 201, 155, 0.2);
}
.form-message.error .form-message-icon {
  background: rgba(252, 221, 217, 0.6);
}
.form-message.info {
  background: #f4f1e6;
  color: #3d3a2f;
  border-color: #d9d1bf;
}
.form-message.info .form-message-icon {
  background: rgba(255, 255, 255, 0.55);
}
.form-submit-disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo {
  margin-bottom: 20px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.footer-col h5 {
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}
#wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 800;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transition: all 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}
#wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 8px 50px rgba(37, 211, 102, 0.7),
      0 0 0 10px rgba(37, 211, 102, 0.07);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.15s !important;
}
.delay-2 {
  transition-delay: 0.3s !important;
}
.delay-3 {
  transition-delay: 0.45s !important;
}
.delay-4 {
  transition-delay: 0.6s !important;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  #navbar {
    padding: 18px 32px;
  }
  #navbar.scrolled {
    padding: 13px 32px;
  }
  .hero-content {
    padding: 0 48px 70px;
  }
  .hero-stats {
    right: 48px;
  }
  .about-grid,
  .ub-grid,
  .reservas-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-images {
    height: 400px;
  }
  .villas-grid {
    grid-template-columns: 1fr;
  }
  .villa-card-img {
    height: 420px;
  }
  #reservas .booking-engine-wrapper {
    width: 100%;
    max-width: 860px;
    border-radius: 20px;
  }
  .villa-tab-content.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .social-amenities {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-item {
    height: 200px;
  }
  .gal-item.tall {
    height: 408px;
  }
  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .eventos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .hero-stats {
    display: none;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-content {
    padding: 0 28px 56px;
  }
  .hero-scroll {
    right: 28px;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .container {
    padding: 0 24px;
  }
  #navbar {
    padding: 16px 24px;
  }
  #navbar.scrolled {
    padding: 13px 24px;
  }
  section {
    padding: 80px 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .exp-grid {
    grid-template-columns: 1fr;
  }
  .eventos-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .form-card {
    padding: 32px 24px;
  }
  .villa-tab-content.active {
    padding: 32px 24px;
  }
  .villa-tabs .villa-tab {
    padding: 16px 20px;
    font-size: 14px;
  }
  #reservas .booking-engine-wrapper {
    max-width: 100%;
    border-radius: 18px;
  }
  #reservas .booking-engine-iframe {
    height: clamp(460px, 60vw, 520px);
  }
  .about-cta-group {
    justify-content: center;
  }
  .about-cta-group > a,
  .about-cta-group .btn-primary {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .social-amenity {
    padding: 30px 20px;
  }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  #reservas .booking-engine-wrapper {
    border-radius: 16px;
  }
  #reservas .booking-engine-iframe {
    height: clamp(480px, 80vw, 520px);
  }
  .eventos-grid {
    grid-template-columns: 1fr;
  }
  .gallery-masonry {
    grid-template-columns: 1fr;
  }
  .gal-item {
    height: 240px;
  }
  .gal-item.tall {
    height: 240px;
  }
}