/* ========================================
   VARIABLES Y RESET
======================================== */
:root {
  --primary: #c9a227;
  --secondary: #1a1a1a;
  --accent: #ff6b6b;
  --light: #ffffff;
  --dark: #0a0a0a;
  --gradient-gold: linear-gradient(135deg, #c9a227 0%, #f4e4a7 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ========================================
   PARTÍCULAS CANVAS
======================================== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ========================================
   CONTAINER
======================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ========================================
   NAVBAR MEJORADA
======================================== */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  border-bottom: 2px solid rgba(201, 162, 39, 0.2);
}

.navbar-fixed.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s;
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.5));
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.7rem 1.2rem;
  border-radius: 25px;
  transition: all 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links li a i {
  font-size: 1rem;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: translateX(-50%);
  transition: width 0.3s;
}

.nav-links li a:hover {
  color: var(--primary);
  background: rgba(201, 162, 39, 0.1);
}

.nav-links li a:hover::before {
  width: 80%;
}

.ofertas-link {
  background: var(--gradient-gold) !important;
  color: var(--dark) !important;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

.ofertas-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.6);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ========================================
   HERO SECTION ESPECTACULAR
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(26, 26, 26, 0.8) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: rgba(201, 162, 39, 0.2);
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(201, 162, 39, 0);
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  margin-bottom: 2rem;
}

.title-line-1,
.title-line-2 {
  display: block;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.2;
}

.title-line-1 {
  color: var(--light);
  animation: fadeInLeft 1s ease 0.3s backwards;
}

.title-line-2 {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInRight 1s ease 0.6s backwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.9s backwards;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1.2s backwards;
}

/* ========================================
   BOTONES MEJORADOS
======================================== */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--dark);
  box-shadow: 0 10px 40px rgba(201, 162, 39, 0.4);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(201, 162, 39, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-5px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--dark);
}

.btn-small {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ========================================
   CONTACTOS FLOTANTES
======================================== */
.floating-contacts {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-float {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  position: relative;
}

.contact-float span {
  position: absolute;
  right: 70px;
  background: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.contact-float:hover span {
  opacity: 1;
  right: 75px;
}

.contact-float.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  animation: bounce 2s infinite;
}

.contact-float.phone {
  background: var(--gradient-gold);
}

.contact-float:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ========================================
   STATS HERO
======================================== */
.hero-stats {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4rem;
  z-index: 10;
  animation: fadeInUp 1.5s ease;
}

.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

/* ========================================
   SECCIONES GENERALES
======================================== */
section {
  padding: 8rem 0;
  position: relative;
  z-index: 10;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--light);
}

.title-decoration {
  color: var(--primary);
  margin: 0 1rem;
}

.section-sub {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   SERVICIOS
======================================== */
.servicios {
  background: linear-gradient(180deg, var(--dark) 0%, #1a1a1a 100%);
}

.servicios-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.servicio-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 2px solid rgba(201, 162, 39, 0.2);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.card-icon-bg {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--gradient-gold);
  opacity: 0.1;
  border-radius: 50%;
  transition: all 0.4s;
}

.servicio-card:hover .card-icon-bg {
  transform: scale(1.5);
  opacity: 0.2;
}

.servicio-card i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.3s;
}

.servicio-card:hover i {
  transform: scale(1.2) rotate(10deg);
}

.servicio-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.servicio-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.4s;
}

.servicio-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(201, 162, 39, 0.3);
}

.servicio-card:hover .card-glow {
  opacity: 0.1;
}

/* ========================================
   PAQUETES
======================================== */
.paquetes {
  background: var(--dark);
}

.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.paquete-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.2);
  transition: all 0.4s;
  box-shadow: var(--shadow-lg);
}

.paquete-card.featured {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 25px 70px rgba(201, 162, 39, 0.4);
}

.paquete-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 30px 80px rgba(201, 162, 39, 0.5);
}

.paquete-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.paquete-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.paquete-card:hover .paquete-image img {
  transform: scale(1.1);
}

.paquete-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1.5rem;
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: 700;
  border-radius: 25px;
  font-size: 0.9rem;
  z-index: 2;
}

.featured-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
}

.paquete-content {
  padding: 2rem;
}

.paquete-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.paquete-duration {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.paquete-duration i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.paquete-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.paquete-features {
  list-style: none;
  margin-bottom: 2rem;
}

.paquete-features li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.paquete-features li i {
  color: var(--primary);
  font-size: 1rem;
}

.paquete-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.paquete-price {
  display: flex;
  flex-direction: column;
}

.price-from {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

/* ========================================
   DESTINOS
======================================== */
.destinos {
  background: #1a1a1a;
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.destino {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s;
}

.destino img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.destino:hover img {
  transform: scale(1.15);
}

.destino .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: all 0.4s;
}

.destino:hover .overlay {
  background: linear-gradient(
    to bottom,
    rgba(201, 162, 39, 0.3) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.destino-content {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
}

.destino:hover .destino-content {
  opacity: 1;
  transform: translateY(0);
}

.destino-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--light);
}

.destino-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.destino:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* ========================================
   NOSOTROS
======================================== */
.nosotros {
  background: var(--dark);
}

.nosotros-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.nosotros-text h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.nosotros-intro {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.nosotros-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.nosotros-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: all 0.3s;
}

.feature-item:hover {
  border-color: var(--primary);
  transform: translateX(10px);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary);
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.nosotros-image {
  position: relative;
}

.nosotros-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: 20px;
  z-index: -1;
}

/* ========================================
   GALERÍA
======================================== */
.galeria {
  background: #1a1a1a;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.galeria-item {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.galeria-item:hover img {
  transform: scale(1.2);
}

.galeria-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.4s;
}

.galeria-item:hover .galeria-overlay {
  transform: translateY(0);
}

.galeria-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.galeria-overlay p {
  color: rgba(255, 255, 255, 0.9);
}

.galeria-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

/* ========================================
   CONTACTO
======================================== */
.contacto {
  background: var(--dark);
}

.contacto-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contacto-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--primary);
}

.contacto-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: all 0.3s;
}

.contacto-item:hover {
  border-color: var(--primary);
  transform: translateX(10px);
  box-shadow: 0 10px 40px rgba(201, 162, 39, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  font-size: 1.8rem;
  color: var(--dark);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--light);
}

.contact-details a {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-details a:hover {
  color: var(--light);
  text-decoration: underline;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.social-links-contact {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.2);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s;
}

.social-btn:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.5);
}

/* FORMULARIO */
.contacto-form {
  background: rgba(26, 26, 26, 0.8);
  padding: 3rem;
  border-radius: 25px;
  border: 2px solid rgba(201, 162, 39, 0.2);
  box-shadow: var(--shadow-lg);
}

.contacto-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--light);
  font-weight: 600;
  font-size: 1rem;
}

.form-group label i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(201, 162, 39, 0.3);
  border-radius: 10px;
  color: var(--light);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
  background: rgba(0, 0, 0, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.mensaje-enviado {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 10px;
  color: #00ff00;
  text-align: center;
  display: none;
}

.mensaje-enviado.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--secondary);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--primary);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.footer-logo {
  height: 80px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.5));
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-section p i {
  color: var(--primary);
  margin-right: 0.5rem;
  width: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.2);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.3rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   WHATSAPP FLOTANTE
======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all 0.3s;
  animation: bounce 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7);
}

/* ========================================
   MODAL
======================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: rgba(26, 26, 26, 0.98);
  border: 2px solid var(--primary);
  border-radius: 25px;
  max-width: 800px;
  width: 100%;
  color: var(--light);
  padding: 3rem;
  position: relative;
  animation: modalFadeIn 0.5s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalFadeIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.modal-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--light);
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}

.close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .nosotros-content {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.4s;
    padding: 2rem;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    bottom: 2rem;
  }

  .nosotros-content {
    grid-template-columns: 1fr;
  }

  .nosotros-features {
    grid-template-columns: 1fr;
  }

  .contacto-container {
    grid-template-columns: 1fr;
  }

  .floating-contacts {
    right: 1rem;
  }

  .contact-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }

  .nav-container {
    padding: 1rem 3%;
  }

  .logo {
    height: 50px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .servicios-container,
  .paquetes-grid,
  .destinos-grid,
  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .paquete-card.featured {
    transform: scale(1);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .modal-content {
    padding: 2rem;
  }

  .close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .title-line-1,
  .title-line-2 {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stat-item {
    padding: 0.8rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .contacto-form {
    padding: 2rem 1.5rem;
  }
}

/* ========================================
   ANIMACIONES ADICIONALES
======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Smooth scroll */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Selección de texto */
::selection {
  background: var(--primary);
  color: var(--dark);
}

::-moz-selection {
  background: var(--primary);
  color: var(--dark);
}