:root {
  /* Maxima Aventura Brand Colors */
  --color-primary: #D1366A;
  --color-primary-dark: #A12856;
  --color-primary-light: #E85B8A;
  --color-accent: #FF6B9D;
  --color-dark: #2C1A2E;
  --color-dark-deep: #1A1A2E;
  --color-sunset: #FF8C42;
  --color-sunset-warm: #FFB347;
  --color-sand: #F4E4C1;
  --color-white: #FFFFFF;
  --color-gray-light: #F5F5F5;
  --color-gray: #CCCCCC;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, rgba(209, 54, 106, 0.85) 0%, rgba(161, 40, 86, 0.9) 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  --gradient-sunset: linear-gradient(135deg, #FF8C42 0%, #FFB347 100%);
  --gradient-primary: linear-gradient(135deg, #E85B8A 0%, #D1366A 100%);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(209, 54, 106, 0.3);

  --blur-glass: blur(10px);
  --border-radius: 16px;
  --border-radius-lg: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--color-white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.35rem 5%;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--blur-glass);
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--transition-normal);
  text-decoration: none;
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 180px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: height var(--transition-normal);
}

.header.scrolled .logo img {
  height: 85px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.header.scrolled .nav-links a {
  color: var(--color-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-fast);
}

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

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Video de fondo del hero */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay sobre el video: solo oscuro sutil para legibilidad */
.hero-background-custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.hero-content {
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-sunset);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

/* Section Styles */
.section {
  padding: var(--spacing-xl) 5%;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Destinations Section with Animated Flags */
.destinations-section {
  position: relative;
  overflow: hidden;
}

.flags-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.flag {
  position: absolute;
  width: 120px;
  height: 80px;
  object-fit: cover;
  opacity: 0.2;
  user-select: none;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  filter: blur(1px);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Banderas moviéndose de izquierda a derecha */
.flag-1 {
  top: 10%;
  left: -100px;
  animation: moveRight 25s linear infinite;
  animation-delay: 0s;
}

.flag-2 {
  top: 25%;
  left: -100px;
  animation: moveRight 30s linear infinite;
  animation-delay: -5s;
}

.flag-3 {
  top: 40%;
  left: -100px;
  animation: moveRight 28s linear infinite;
  animation-delay: -10s;
}

.flag-4 {
  top: 55%;
  left: -100px;
  animation: moveRight 32s linear infinite;
  animation-delay: -15s;
}

.flag-5 {
  top: 70%;
  left: -100px;
  animation: moveRight 27s linear infinite;
  animation-delay: -20s;
}

/* Banderas moviéndose de derecha a izquierda */
.flag-6 {
  top: 15%;
  right: -100px;
  animation: moveLeft 26s linear infinite;
  animation-delay: -2s;
}

.flag-7 {
  top: 30%;
  right: -100px;
  animation: moveLeft 29s linear infinite;
  animation-delay: -7s;
}

.flag-8 {
  top: 45%;
  right: -100px;
  animation: moveLeft 31s linear infinite;
  animation-delay: -12s;
}

.flag-9 {
  top: 60%;
  right: -100px;
  animation: moveLeft 33s linear infinite;
  animation-delay: -17s;
}

.flag-10 {
  top: 75%;
  right: -100px;
  animation: moveLeft 24s linear infinite;
  animation-delay: -22s;
}

/* Banderas moviéndose diagonalmente */
.flag-11 {
  top: -100px;
  left: 20%;
  animation: moveDiagonalDownRight 35s linear infinite;
  animation-delay: -3s;
}

.flag-12 {
  top: -100px;
  left: 50%;
  animation: moveDiagonalDownLeft 34s linear infinite;
  animation-delay: -8s;
}

.flag-13 {
  top: -100px;
  left: 80%;
  animation: moveDiagonalDownRight 36s linear infinite;
  animation-delay: -13s;
}

.flag-14 {
  bottom: -100px;
  left: 30%;
  animation: moveDiagonalUpRight 38s linear infinite;
  animation-delay: -18s;
}

.flag-15 {
  bottom: -100px;
  left: 70%;
  animation: moveDiagonalUpLeft 37s linear infinite;
  animation-delay: -23s;
}

@keyframes moveRight {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(calc(50vw + 200px)) translateY(30px) rotate(5deg);
  }
  100% {
    transform: translateX(calc(100vw + 200px)) translateY(0) rotate(0deg);
  }
}

@keyframes moveLeft {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(calc(-50vw - 200px)) translateY(-30px) rotate(-5deg);
  }
  100% {
    transform: translateX(calc(-100vw - 200px)) translateY(0) rotate(0deg);
  }
}

@keyframes moveDiagonalDownRight {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(calc(40vw + 200px)) translateY(calc(50vh + 200px)) rotate(10deg);
  }
  100% {
    transform: translateX(calc(100vw + 200px)) translateY(calc(100vh + 200px)) rotate(0deg);
  }
}

@keyframes moveDiagonalDownLeft {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(calc(-40vw - 200px)) translateY(calc(50vh + 200px)) rotate(-10deg);
  }
  100% {
    transform: translateX(calc(-100vw - 200px)) translateY(calc(100vh + 200px)) rotate(0deg);
  }
}

@keyframes moveDiagonalUpRight {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(calc(40vw + 200px)) translateY(calc(-50vh - 200px)) rotate(10deg);
  }
  100% {
    transform: translateX(calc(100vw + 200px)) translateY(calc(-100vh - 200px)) rotate(0deg);
  }
}

@keyframes moveDiagonalUpLeft {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(calc(-40vw - 200px)) translateY(calc(-50vh - 200px)) rotate(-10deg);
  }
  100% {
    transform: translateX(calc(-100vw - 200px)) translateY(calc(-100vh - 200px)) rotate(0deg);
  }
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.destination-card {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: var(--color-white);
  transition: padding var(--transition-normal);
}

.destination-card:hover .destination-overlay {
  padding: 2.5rem;
}

.destination-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.destination-description {
  font-size: 1rem;
  opacity: 0.9;
}

/* Services Section */
.services-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  background: var(--gradient-card);
  backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(209, 54, 106, 0.2);
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.service-icon {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.service-icon svg {
  width: 3.5rem;
  height: 3.5rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.service-description {
  color: var(--color-dark);
  line-height: 1.7;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: orbFloat 15s ease-in-out infinite;
}

.about-orb-1 {
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  top: 10%;
  left: 5%;
  animation: orbFloat 18s ease-in-out infinite, orbPulse 4s ease-in-out infinite;
  animation-delay: 0s;
}

.about-orb-2 {
  width: 200px;
  height: 200px;
  background: var(--color-accent);
  bottom: 20%;
  right: 10%;
  animation: orbFloat 20s ease-in-out infinite, orbPulse 5s ease-in-out infinite;
  animation-delay: -5s;
}

.about-orb-3 {
  width: 150px;
  height: 150px;
  background: var(--color-sunset);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 16s ease-in-out infinite, orbPulse 3.5s ease-in-out infinite;
  animation-delay: -10s;
}

.about-orb-4 {
  width: 180px;
  height: 180px;
  background: var(--color-primary);
  top: 30%;
  right: 15%;
  animation: orbFloat 22s ease-in-out infinite, orbPulse 4.5s ease-in-out infinite;
  animation-delay: -2s;
}

.about-orb-5 {
  width: 220px;
  height: 220px;
  background: var(--color-accent);
  bottom: 10%;
  left: 20%;
  animation: orbFloat 19s ease-in-out infinite, orbPulse 5.5s ease-in-out infinite;
  animation-delay: -7s;
}

.about-orb-6 {
  width: 160px;
  height: 160px;
  background: var(--color-sunset);
  top: 70%;
  right: 30%;
  animation: orbFloat 17s ease-in-out infinite, orbPulse 3.8s ease-in-out infinite;
  animation-delay: -4s;
}

.about-orb-7 {
  width: 140px;
  height: 140px;
  background: var(--color-primary);
  top: 15%;
  left: 50%;
  animation: orbFloat 21s ease-in-out infinite, orbPulse 4.2s ease-in-out infinite;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 30px) scale(0.9); }
  75% { transform: translate(25px, 15px) scale(1.05); }
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.25; filter: blur(80px); }
  50% { opacity: 0.4; filter: blur(60px); }
}

/* Sistemas orbitales con rotación circular */
.orbit-system {
  position: absolute;
  width: 1px;
  height: 1px;
}

.orbit-system-1 {
  top: 20%;
  left: 15%;
  animation: systemFloat 25s ease-in-out infinite;
}

.orbit-system-2 {
  bottom: 25%;
  right: 20%;
  animation: systemFloat 30s ease-in-out infinite;
  animation-delay: -10s;
}

.orbit-system-3 {
  top: 60%;
  left: 70%;
  animation: systemFloat 28s ease-in-out infinite;
  animation-delay: -15s;
}

.orbit-center {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  animation: centerPulse 3s ease-in-out infinite;
}

.orbit-path {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: orbitRotate linear infinite;
}

.orbit-path-1 {
  width: 120px;
  height: 120px;
  animation-duration: 20s;
  transform: translate(-50%, -50%);
}

.orbit-path-2 {
  width: 180px;
  height: 180px;
  animation-duration: 25s;
  animation-direction: reverse;
  transform: translate(-50%, -50%);
}

.orbit-path-3 {
  width: 100px;
  height: 100px;
  animation-duration: 18s;
  transform: translate(-50%, -50%);
}

.orbit-path-4 {
  width: 160px;
  height: 160px;
  animation-duration: 22s;
  animation-direction: reverse;
  transform: translate(-50%, -50%);
}

.orbit-path-5 {
  width: 220px;
  height: 220px;
  animation-duration: 30s;
  transform: translate(-50%, -50%);
}

.orbit-path-6 {
  width: 140px;
  height: 140px;
  animation-duration: 24s;
  animation-direction: reverse;
  transform: translate(-50%, -50%);
}

.orbit-path-7 {
  width: 200px;
  height: 200px;
  animation-duration: 28s;
  transform: translate(-50%, -50%);
}

.orbit-item {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
  box-shadow: 0 0 10px rgba(209, 54, 106, 0.5);
  animation: itemPulse 2s ease-in-out infinite;
}

.orbit-item-1 {
  background: var(--color-primary);
  animation-delay: 0s;
}

.orbit-item-2 {
  background: var(--color-accent);
  animation-delay: 0.5s;
}

.orbit-item-3 {
  background: var(--color-sunset);
  animation-delay: 1s;
}

.orbit-item-4 {
  background: var(--color-primary);
  animation-delay: 1.5s;
}

.orbit-item-5 {
  background: var(--color-accent);
  animation-delay: 0.3s;
}

.orbit-item-6 {
  background: var(--color-sunset);
  animation-delay: 0.8s;
}

.orbit-item-7 {
  background: var(--color-primary);
  animation-delay: 1.2s;
}

@keyframes orbitRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes systemFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(40px, -30px); }
  50% { transform: translate(-30px, 40px); }
  75% { transform: translate(30px, 20px); }
}

@keyframes centerPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes itemPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.3); }
}

.about-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-particles .particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: particleUp 12s linear infinite;
}

.about-particles .particle:nth-child(1) { 
  left: 10%; 
  width: 6px; 
  height: 6px; 
  background: var(--color-primary);
  animation-delay: 0s; 
  animation-duration: 12s;
}
.about-particles .particle:nth-child(2) { 
  left: 25%; 
  width: 8px; 
  height: 8px; 
  background: var(--color-accent);
  animation-delay: -2s; 
  animation-duration: 14s;
}
.about-particles .particle:nth-child(3) { 
  left: 40%; 
  width: 5px; 
  height: 5px; 
  background: var(--color-sunset);
  animation-delay: -4s; 
  animation-duration: 16s;
}
.about-particles .particle:nth-child(4) { 
  left: 55%; 
  width: 7px; 
  height: 7px; 
  background: var(--color-primary);
  animation-delay: -1s; 
  animation-duration: 13s;
}
.about-particles .particle:nth-child(5) { 
  left: 70%; 
  width: 6px; 
  height: 6px; 
  background: var(--color-accent);
  animation-delay: -3s; 
  animation-duration: 15s;
}
.about-particles .particle:nth-child(6) { 
  left: 85%; 
  width: 8px; 
  height: 8px; 
  background: var(--color-sunset);
  animation-delay: -5s; 
  animation-duration: 17s;
}
.about-particles .particle:nth-child(7) { 
  left: 20%; 
  width: 5px; 
  height: 5px; 
  background: var(--color-primary);
  animation-delay: -6s; 
  animation-duration: 11s;
}
.about-particles .particle:nth-child(8) { 
  left: 50%; 
  width: 7px; 
  height: 7px; 
  background: var(--color-accent);
  animation-delay: -7s; 
  animation-duration: 18s;
}
.about-particles .particle:nth-child(9) { 
  left: 80%; 
  width: 6px; 
  height: 6px; 
  background: var(--color-sunset);
  animation-delay: -8s; 
  animation-duration: 14s;
}
.about-particles .particle:nth-child(10) { 
  left: 35%; 
  width: 8px; 
  height: 8px; 
  background: var(--color-primary);
  animation-delay: -9s; 
  animation-duration: 16s;
}
.about-particles .particle:nth-child(11) { 
  left: 15%; 
  width: 6px; 
  height: 6px; 
  background: var(--color-accent);
  animation-delay: -1.5s; 
  animation-duration: 13s;
}
.about-particles .particle:nth-child(12) { 
  left: 45%; 
  width: 7px; 
  height: 7px; 
  background: var(--color-sunset);
  animation-delay: -3.5s; 
  animation-duration: 15s;
}
.about-particles .particle:nth-child(13) { 
  left: 65%; 
  width: 5px; 
  height: 5px; 
  background: var(--color-primary);
  animation-delay: -5.5s; 
  animation-duration: 17s;
}
.about-particles .particle:nth-child(14) { 
  left: 30%; 
  width: 8px; 
  height: 8px; 
  background: var(--color-accent);
  animation-delay: -7.5s; 
  animation-duration: 12s;
}
.about-particles .particle:nth-child(15) { 
  left: 75%; 
  width: 6px; 
  height: 6px; 
  background: var(--color-sunset);
  animation-delay: -9.5s; 
  animation-duration: 14s;
}
.about-particles .particle:nth-child(16) { 
  left: 5%; 
  width: 7px; 
  height: 7px; 
  background: var(--color-primary);
  animation-delay: -2.5s; 
  animation-duration: 16s;
}
.about-particles .particle:nth-child(17) { 
  left: 90%; 
  width: 5px; 
  height: 5px; 
  background: var(--color-accent);
  animation-delay: -4.5s; 
  animation-duration: 18s;
}
.about-particles .particle:nth-child(18) { 
  left: 60%; 
  width: 8px; 
  height: 8px; 
  background: var(--color-sunset);
  animation-delay: -6.5s; 
  animation-duration: 13s;
}
.about-particles .particle:nth-child(19) { 
  left: 12%; 
  width: 6px; 
  height: 6px; 
  background: var(--color-primary);
  animation-delay: -8.5s; 
  animation-duration: 15s;
}
.about-particles .particle:nth-child(20) { 
  left: 55%; 
  width: 7px; 
  height: 7px; 
  background: var(--color-accent);
  animation-delay: -10.5s; 
  animation-duration: 17s;
}
.about-particles .particle:nth-child(21) { 
  left: 95%; 
  width: 5px; 
  height: 5px; 
  background: var(--color-sunset);
  animation-delay: -11.5s; 
  animation-duration: 19s;
}

@keyframes particleUp {
  0% { 
    transform: translateY(100vh) translateX(0) scale(0); 
    opacity: 0; 
  }
  10% { 
    opacity: 0.6; 
    transform: translateY(90vh) translateX(10px) scale(1);
  }
  50% {
    transform: translateY(50vh) translateX(-15px) scale(1.2);
  }
  90% { 
    opacity: 0.3; 
    transform: translateY(10vh) translateX(5px) scale(1);
  }
  100% { 
    transform: translateY(-100px) translateX(0) scale(0); 
    opacity: 0; 
  }
}

.about-section .section-title,
.about-section .about-content {
  position: relative;
  z-index: 1;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.heroicon-sm {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--color-primary);
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.about-features {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gradient-card);
  border-radius: var(--border-radius);
  border: 1px solid rgba(209, 54, 106, 0.2);
}

.about-features li svg {
  flex-shrink: 0;
}

/* Contact Section */
.contact-section {
  background: #E8E8E8;
}

.contact-section .section-subtitle {
  margin-bottom: 2.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-map {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  min-height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  display: block;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.5rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--color-white);
  font-size: 0.95rem;
}

.map-overlay p {
  margin: 0.25rem 0;
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.contact-form-elegant {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.contact-form-elegant label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.contact-form-elegant input,
.contact-form-elegant select,
.contact-form-elegant textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form-elegant input:focus,
.contact-form-elegant select:focus,
.contact-form-elegant textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(209, 54, 106, 0.15);
}

.contact-form-elegant select {
  cursor: pointer;
  background: var(--color-white);
}

.form-submit-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--color-white);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  margin-top: 0.5rem;
}

.form-submit-whatsapp svg {
  width: 24px;
  height: 24px;
}

.form-submit-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

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

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-item {
  padding: 2rem;
  background: var(--gradient-card);
  backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(209, 54, 106, 0.2);
  border-radius: var(--border-radius);
  transition: transform var(--transition-normal);
}

.contact-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-label {
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.contact-value {
  color: var(--color-dark);
  font-size: 1.1rem;
}

.contact-value a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-value a:hover {
  color: var(--color-primary-light);
}

/* Footer */
.footer {
  background: #2D1A20;
  color: var(--color-white);
  padding: 4rem 5% 2rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-column {
  justify-content: flex-start;
}

.footer-logo {
  height: 200px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-column-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.footer-column-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  margin-top: 0.4rem;
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-icon {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.footer-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 5px;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(209, 54, 106, 0.4);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 40px;
  height: 40px;
  fill: var(--color-white);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 48px rgba(37, 211, 102, 0.6);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .logo img {
    height: 120px;
  }

  .header.scrolled .logo img {
    height: 70px;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

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

  .services-container {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 300px;
  }

  .contact-map iframe {
    min-height: 300px;
  }

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

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-logo {
    height: 90px;
  }

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

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

@media (max-width: 480px) {
  .section {
    padding: var(--spacing-lg) 5%;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}