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

:root {
  --primary-gold: #c4a572;
  --dark-gold: #9b8461;
  --soft-beige: #f5f2ed;
  --charcoal: #2c2926;
  --sage: #8b9a7b;
  --sand: #e8dcc4;
  --ocean: #7b9ea8;
  --warm-white: #fdfbf7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  background: rgba(253, 251, 247, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  padding: 15px 5%;
  background: rgba(253, 251, 247, 0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-svg {
  height: 72px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  transition: color 0.3s;
  position: relative;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  transition: all 0.3s;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(44, 41, 38, 0.2);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--primary-gold);
  box-shadow: 0 6px 20px rgba(196, 165, 114, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--charcoal);
  margin: 3px 0;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Sections */
.section {
  padding: 100px 5%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-label {
  color: var(--primary-gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--charcoal);
}

.section-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 50px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 300;
  color: var(--primary-gold);
  font-family: "Cormorant Garamond", serif;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-top: 10px;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(196, 165, 114, 0.2);
  transition: all 0.3s;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(196, 165, 114, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gold);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
}

.pricing-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.pricing-subtitle {
  color: var(--primary-gold);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 36px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 5px;
}

.pricing-currency {
  font-size: 18px;
  color: #666;
}

.pricing-description {
  font-size: 14px;
  color: #666;
  margin: 20px 0 30px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  color: #666;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.benefit-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--warm-white);
  border-radius: 20px;
  transition: all 0.3s;
  border: 1px solid rgba(196, 165, 114, 0.2);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-gold);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.benefit-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--charcoal);
}

.benefit-description {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* FAQ Section */
.faq-container {
  display: flex;
  gap: 1em 2em;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 60px auto 0;

  & > * {
    flex: 1 1 300px;
  }
}

.faq-item {
  background: var(--warm-white);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid rgba(196, 165, 114, 0.1);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--charcoal);
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(196, 165, 114, 0.05);
}

.faq-toggle {
  font-size: 24px;
  color: var(--primary-gold);
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 500px;
}

/* Form Section */
.form-section {
  padding: 120px 5%;
  background: linear-gradient(135deg, var(--charcoal), #3a3734);
  color: white;
  text-align: center;
}

.waitlist-form {
  max-width: 600px;
  margin: 40px auto 0;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-input {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: white;
  font-size: 14px;
  transition: all 0.3s;
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-gold);
}

.form-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input.full-width {
  grid-column: span 2;
}

.form-select {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.form-select option {
  background: var(--charcoal);
}

.form-submit {
  grid-column: span 2;
  background: var(--primary-gold);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(196, 165, 114, 0.3);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(196, 165, 114, 0.5);
}

/* Experiences Section */
.experiences-section {
  padding: 120px 5%;
  background: linear-gradient(
    180deg,
    var(--warm-white) 0%,
    var(--soft-beige) 100%
  );
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.experience-card {
  position: relative;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s;
}

.experience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.experience-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s;
}

.experience-card:hover .experience-image {
  transform: scale(1.1);
}

.experience-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
  color: white;
}

.experience-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 10px;
}

.experience-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
  line-height: 1.2;
}

.experience-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Lifestyle Gallery */
.lifestyle-gallery {
  padding: 100px 5%;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  margin-top: 60px;
}

.gallery-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.gallery-image-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-image-card.wide {
  grid-column: span 2;
}

.gallery-image-card.tall {
  grid-row: span 2;
}

/* Capa de fondo con imagen */
.gallery-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

/* Overlay con SVG y texto */
.gallery-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  padding: 20px;
}

/* Efecto hover */
.gallery-image-card:hover .gallery-background {
  transform: scale(1.05);
}

.gallery-image-card:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* Títulos */
.gallery-title {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-title.medium-title {
  font-size: 18px;
}

.gallery-title.large-title {
  margin-top: 20px;
  font-size: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

/* SVG styling */
.gallery-overlay svg {
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Floating Features */
.floating-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
  padding: 40px;
  background: rgba(196, 165, 114, 0.05);
  border-radius: 20px;
}

.floating-feature {
  text-align: center;
}

.floating-feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(196, 165, 114, 0.2);
}

.floating-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-gold);
}

.floating-feature-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.floating-feature-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 80px 5% 40px;
  background: var(--charcoal);
  color: white;
  text-align: center;
}

.footer-text {
  opacity: 0.7;
  font-size: 14px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 92px;
  right: -100%;
  width: 80%;
  height: calc(100vh - 92px);
  background: var(--warm-white);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s;
  z-index: 1001;
  padding: 40px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-list {
  list-style: none;
}

.mobile-menu-list li {
  margin-bottom: 30px;
}

.mobile-menu-list a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Language Switcher */
.language-switcher {
    display: inline-block;
}

.lang-link {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.lang-link:hover {
    background: var(--primary-gold);
    color: white;
}

/* Para mobile menu */
.mobile-menu .language-switcher {
    display: block;
    text-align: center;
}

.mobile-menu .lang-link {
    display: inline-block;
}
/* Hero Section con Video Background Optimizado */
.hero {
    min-height: 100vh;
    min-height: 100svh; /* Para móviles modernos */
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate; /* Crea nuevo stacking context */
}

/* Container del Video */
.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

/* Fallback Image si el video no carga */
.hero-fallback-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

/* Overlay Optimizado con Gradiente Moderno */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: 
        linear-gradient(
            to bottom,
            rgb(245 242 237 / 0.05) 0%,
            rgb(245 242 237 / 0.25) 40%,
            rgb(245 242 237 / 0.5) 100%
        );
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--charcoal);
    padding-inline: clamp(1rem, 5vw, 2rem);
    max-width: min(95%, 900px);
    -webkit-animation: heroFadeIn 1.8s cubic-bezier(0.16, 1, 0.3, 1);
            animation: heroFadeIn 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@-webkit-keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge con efecto pulse mejorado */
.hero-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: clamp(6px, 1.5vw, 8px) clamp(15px, 3vw, 20px);
    border-radius: 20px;
    font-size: clamp(10px, 1.5vw, 12px);
    letter-spacing: clamp(1px, 0.3vw, 2px);
    margin-bottom: clamp(20px, 4vw, 30px);
    font-weight: 500;
    -webkit-animation: badgePulse 3s ease-in-out infinite;
            animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgb(196 165 114 / 0.3);
}

@-webkit-keyframes badgePulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.85;
        transform: scale(1.02);
    }
}

@keyframes badgePulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.85;
        transform: scale(1.02);
    }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 7vw, 64px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: clamp(15px, 3vw, 20px);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgb(253 251 247 / 0.3);
}

.hero-subtitle {
    font-size: clamp(18px, 3.5vw, 24px);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    margin-bottom: clamp(20px, 4vw, 30px);
    color: var(--primary-gold);
    text-shadow: 0 2px 10px rgb(253 251 247 / 0.5);
}

.hero-description {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: clamp(30px, 5vw, 40px);
    font-weight: 400;
    color: rgb(44 41 38 / 0.9);
    text-shadow: 0 1px 3px rgb(253 251 247 / 0.8);
}

.hero-buttons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
}

/* Botones */
.btn-primary {
    background: var(--charcoal);
    color: white;
    padding: clamp(12px, 2vw, 15px) clamp(30px, 5vw, 40px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(12px, 1.8vw, 14px);
    letter-spacing: clamp(1px, 0.3vw, 2px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgb(44 41 38 / 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-gold);
    box-shadow: 0 15px 40px rgb(196 165 114 / 0.5);
}

.btn-secondary {
    border: 2px solid var(--charcoal);
    background: rgb(253 251 247 / 0.8);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    color: var(--charcoal);
    padding: clamp(10px, 2vw, 13px) clamp(30px, 5vw, 40px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(12px, 1.8vw, 14px);
    letter-spacing: clamp(1px, 0.3vw, 2px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgb(44 41 38 / 0.3);
}

/* Countdown Section */
.countdown-section {
    padding: clamp(60px, 10vw, 80px) 5%;
    background: var(--charcoal);
    color: white;
    text-align: center;
}

.countdown-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 10px;
    font-weight: 300;
}

.countdown-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    opacity: 0.8;
    margin-bottom: clamp(30px, 5vw, 40px);
    letter-spacing: clamp(1px, 0.3vw, 2px);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 5vw, 40px);
    margin-bottom: clamp(30px, 5vw, 40px);
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: clamp(60px, 15vw, 80px);
}

.countdown-number {
    font-size: clamp(36px, 8vw, 48px);
    font-weight: 300;
    color: var(--primary-gold);
    display: block;
    font-family: 'Cormorant Garamond', serif;
}

.countdown-label {
    font-size: clamp(11px, 1.5vw, 12px);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    opacity: 0.7;
    margin-top: 5px;
    display: block;
}

/* Progress Bar */
.progress-container {
    margin: clamp(30px, 5vw, 40px) auto 0;
    max-width: min(95%, 600px);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: clamp(13px, 2vw, 14px);
}

.progress-bar {
    height: 8px;
    background: rgb(196 165 114 / 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
    border-radius: 4px;
    width: 14%;
    -webkit-animation: progressGrow 2s cubic-bezier(0.16, 1, 0.3, 1);
            animation: progressGrow 2s cubic-bezier(0.16, 1, 0.3, 1);
}

@-webkit-keyframes progressGrow {
    from { 
        width: 0;
        opacity: 0;
    }
    to { 
        width: 14%;
        opacity: 1;
    }
}

@keyframes progressGrow {
    from { 
        width: 0;
        opacity: 0;
    }
    to { 
        width: 14%;
        opacity: 1;
    }
}
/* ==========================================
   WHATSAPP FLOAT BUTTON
   ========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(196, 165, 114, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(100px);
    text-decoration: none;
}

.whatsapp-float.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(196, 165, 114, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--charcoal);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Animación de pulso */
@-webkit-keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(196, 165, 114, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(196, 165, 114, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(196, 165, 114, 0.3);
    }
}
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(196, 165, 114, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(196, 165, 114, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(196, 165, 114, 0.3);
    }
}

.whatsapp-float.visible {
    -webkit-animation: whatsappPulse 2s infinite;
            animation: whatsappPulse 2s infinite;
}

/* ==========================================
   SCROLL TO TOP BUTTON - MEJORADO
   ========================================== */

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(196, 165, 114, 0.3);
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(196, 165, 114, 0.6);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.scroll-to-top:hover svg {
    transform: translateY(-3px);
}

/* Floating Images in Hero Section */
.floating-image {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: windSway 6s ease-in-out infinite;
    z-index: 1;
}

.floating-image:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 16px rgba(196, 165, 114, 0.3), 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-image:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-image:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes windSway {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(10px) translateY(-5px) rotate(1deg);
    }
    50% {
        transform: translateX(-5px) translateY(-10px) rotate(-0.5deg);
    }
    75% {
        transform: translateX(-10px) translateY(5px) rotate(0.5deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo-svg {
      height: 50px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-video {
        /* En móvil el video se puede ajustar para usar menos ancho de banda */
        width: 100vw;
        height: auto;
        min-height: 100%;
    }
    
    .hero-overlay {
        background: 
            linear-gradient(
                to bottom,
                rgb(245 242 237 / 0.15) 0%,
                rgb(245 242 237 / 0.35) 40%,
                rgb(245 242 237 / 0.6) 100%
            );
    }
    
    .hero-title br {
        display: none; /* Mejor lectura en móvil */
    }
    
    .hero-description br {
        display: none;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    .form-input {
        grid-column: span 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }

    .floating-image {
        width: 120px;
        height: 120px;
    }
    
    .floating-image:nth-child(1) {
        top: 15%;
        left: 5%;
    }
    
    .floating-image:nth-child(2) {
        top: 70%;
        right: 5%;
    }

    .footer {
        padding: 60px 5% 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .footer-cta {
        align-self: center;
    }
}


/* ==========================================
   FOOTER STYLES
   ========================================== */

.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 5% 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: inline-block;
}

.footer-logo svg {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(196, 165, 114, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: white;
    margin-bottom: 25px;
    font-weight: 400;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.footer-menu li svg {
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--primary-gold);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--primary-gold);
}

.footer-menu strong {
    color: white;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-menu span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-cta {
    display: inline-block;
    margin-top: 25px;
    background: var(--primary-gold);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    text-align: center;
    align-self: flex-start;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 165, 114, 0.4);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 14px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--primary-gold);
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
}




