/* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8fafc;
}

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

/* Header y navegación */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2563eb;
  font-size: 1.8rem;
  font-weight: 800;
  transition: transform 0.3s ease;
}

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

.nav-logo i {
  margin-right: 0.5rem;
  font-size: 2rem;
}

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

.nav-link {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  transition: width 0.3s ease;
}

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

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

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section Corregido */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #93c5fd 100%);
  overflow: hidden;
  padding: 2rem 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("/placeholder.svg?height=1080&width=1920&text=Airplane+Flying");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.9) 0%,
    rgba(59, 130, 246, 0.8) 50%,
    rgba(147, 197, 253, 0.7) 100%
  );
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
  width: 100%;
}

.hero-text {
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-line {
  display: block;
}

.highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

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

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Search Container Corregido */
.search-container {
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 10;
}

.search-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 0.5rem;
}

.tab-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 1.5rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.tab-button.active {
  background: rgba(255, 255, 255, 0.95);
  color: #2563eb;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tab-icon {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.search-form-container {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  position: relative;
  z-index: 5;
}

.trip-type-selector {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  color: #64748b;
  position: relative;
  padding-left: 2rem;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-custom {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-color: #f1f5f9;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked ~ .radio-custom {
  background-color: #2563eb;
  border-color: #2563eb;
}

.radio-custom::after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
  display: block;
}

.radio-option input[type="radio"]:checked ~ span:last-child {
  color: #2563eb;
  font-weight: 600;
}

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

.form-row {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

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

.form-row.dates {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.form-row.passengers {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.form-row.options {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.form-row.guests {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

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

.form-group {
  position: relative;
}

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

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.form-group label i {
  color: #2563eb;
  font-size: 1rem;
}

.input-with-icon {
  position: relative;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  font-weight: 500;
  color: #1f2937;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  background: white;
}

.form-group input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.swap-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1rem;
}

.swap-button {
  width: 50px;
  height: 50px;
  border: 2px solid #e5e7eb;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swap-button:hover {
  background: #2563eb;
  color: white;
  transform: rotate(180deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

/* Search Button */
.search-button {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border: none;
  padding: 1.4rem 2rem;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.search-button:active {
  transform: translateY(0);
}

.button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.button-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  pointer-events: none;
}

.button-ripple.ripple-animate {
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Packages Form */
.packages-info {
  text-align: center;
  padding: 3rem 2rem;
}

.info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2rem;
}

.packages-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.packages-info p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.package-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-weight: 600;
}

.benefit i {
  color: #10b981;
}

/* Trust Indicators - Corregido */
.trust-indicators {
  padding: 4rem 0;
  background: white;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 16px;
  transition: transform 0.3s ease;
  border: 1px solid #e2e8f0;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.trust-content p {
  font-size: 0.9rem;
  color: #64748b;
}

/* Quick Actions - Corregido */
.quick-actions {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1f2937;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.quick-action-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.quick-action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  color: inherit;
  text-decoration: none;
}

.quick-action-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #2563eb;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.quick-action-card:hover .quick-action-icon {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  transform: scale(1.1);
}

.quick-action-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.quick-action-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.3s ease;
}

.quick-action-card:hover .card-arrow {
  background: #2563eb;
  color: white;
  transform: translateX(4px);
}

/* Features */
.features {
  padding: 5rem 0;
  background: white;
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  background: linear-gradient(135deg, #fafbfc, #f8fafc);
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: white;
}

.feature-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.feature-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-stats {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: #0c4a6e;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

/* Popular Destinations */
.popular-destinations {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  z-index: 1;
}

.destinations-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.destination-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-card.featured {
  grid-row: span 2;
}

.destination-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.destination-card.featured .destination-image {
  height: 300px;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(59, 130, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.destination-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.destination-info {
  padding: 2rem;
}

.destination-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.destination-description {
  color: #64748b;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.destination-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-from {
  font-size: 0.9rem;
  color: #64748b;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
}

.destination-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

.destination-stats span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.destinations-cta {
  text-align: center;
}

/* Newsletter */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  position: relative;
  z-index: 1;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.newsletter-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.newsletter-signup {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
}

.input-group {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
}

.input-group input {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  border-radius: 12px 0 0 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.input-group input:focus {
  outline: none;
  border-color: #fbbf24;
  background: rgba(255, 255, 255, 0.15);
}

.input-group button {
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  border: none;
  border-radius: 0 12px 12px 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.input-group button:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  transform: translateX(2px);
}

.newsletter-disclaimer {
  font-size: 0.85rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Resultados de búsqueda - Corregido */
.search-results-container {
  padding: 2rem 0;
  min-height: 80vh;
  background: #f8fafc;
}

.search-summary {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-summary h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.search-summary p {
  color: #64748b;
  font-size: 1.1rem;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.results-header p {
  font-weight: 600;
  color: #374151;
  font-size: 1.1rem;
}

.sort-options select {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-weight: 500;
  color: #374151;
}

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

.flight-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid transparent;
}

.flight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #e0f2fe;
}

.flight-info {
  flex: 1;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.airline-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.airline-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.8rem;
}

.airline-details h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.airline-details p {
  color: #64748b;
  font-size: 0.9rem;
}

.flight-details {
  flex: 1;
}

.flight-time {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.departure,
.arrival {
  text-align: center;
  flex: 1;
}

.departure .time,
.arrival .time {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.departure .airport,
.arrival .airport {
  display: block;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.departure .city,
.arrival .city {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
}

.flight-duration {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.duration-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.duration-dot {
  width: 10px;
  height: 10px;
  background: #2563eb;
  border-radius: 50%;
}

.duration-bar {
  flex: 1;
  height: 3px;
  background: #e5e7eb;
  margin: 0 0.5rem;
  position: relative;
  border-radius: 2px;
}

.duration-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 2px;
}

.duration-text {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}

.flight-features {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
  background: #f8fafc;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.feature i {
  color: #10b981;
  font-size: 0.8rem;
}

.flight-price {
  text-align: center;
  min-width: 180px;
  padding-left: 2rem;
}

.price-info {
  margin-bottom: 1.5rem;
}

.currency {
  font-size: 0.9rem;
  color: #64748b;
}

.amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0.25rem 0;
}

.per-person {
  font-size: 0.85rem;
  color: #64748b;
}

/* Botones mejorados */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: #f8fafc;
  color: #374151;
  border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: #d1d5db;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
}

/* Sugerencias de lugares */
.place-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Estilos para resultados de hoteles */
.hotels-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.hotel-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #2563eb;
}

.hotel-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.05);
}

.hotel-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f59e0b;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hotel-rating i {
  color: #fbbf24;
}

.hotel-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hotel-header {
  margin-bottom: 1rem;
}

.hotel-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.hotel-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.hotel-location i {
  color: #2563eb;
  font-size: 0.75rem;
}

.hotel-description {
  margin-bottom: 1rem;
}

.hotel-description p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.amenity {
  background: #f3f4f6;
  color: #374151;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.amenity i {
  color: #10b981;
  font-size: 0.625rem;
}

.more-amenities {
  background: #e5e7eb;
  color: #6b7280;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

.hotel-price {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}

.hotel-price .price-info {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.hotel-price .currency {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

.hotel-price .amount {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 700;
}

.hotel-price .per-night {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

.hotel-price .btn {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-weight: 600;
}

/* ===== ESTILOS PARA EL PROCESO DE RESERVA DE HOTELES ===== */

/* Contenedor principal de detalles de hotel */
.hotel-details-container {
  padding: 2rem 0;
  background: #f8fafc;
  min-height: 100vh;
}

.hotel-gallery {
  margin-bottom: 2rem;
}

.main-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image img:hover {
  transform: scale(1.02);
}

.image-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.thumbnail {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 2px solid transparent;
}

.thumbnail:hover {
  transform: scale(1.05);
  border-color: #2563eb;
}

.thumbnail img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.hotel-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hotel-main-info {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hotel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.hotel-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hotel-header .hotel-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 1.1rem;
}

.hotel-header .hotel-location i {
  color: #2563eb;
  font-size: 1rem;
}

.hotel-header .hotel-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fef3c7;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: #d97706;
  font-weight: 600;
}

.hotel-header .hotel-rating i {
  color: #fbbf24;
}

.hotel-description {
  margin-bottom: 2rem;
}

.hotel-description h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.hotel-description p {
  color: #64748b;
  line-height: 1.6;
  font-size: 1rem;
}

.hotel-amenities-full {
  margin-bottom: 2rem;
}

.hotel-amenities-full h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.amenity-item:hover {
  background: #f1f5f9;
  border-color: #2563eb;
  transform: translateY(-2px);
}

.amenity-item i {
  color: #10b981;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.amenity-item span {
  color: #374151;
  font-weight: 500;
}

/* Tarjeta de reserva */
.hotel-booking-card {
  position: sticky;
  top: 2rem;
}

.summary-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
}

.summary-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.booking-dates {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
}

.date-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.date-item:last-child {
  border-bottom: none;
}

.date-item .label {
  color: #64748b;
  font-weight: 500;
}

.date-item .value {
  color: #1e293b;
  font-weight: 600;
}

.price-breakdown {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item span:first-child {
  color: #64748b;
  font-weight: 500;
}

.price-item span:last-child {
  color: #1e293b;
  font-weight: 600;
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-top: 1rem;
  border-top: 2px solid #2563eb;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
}

.btn-full {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Progreso de reserva */
.booking-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 200px;
}

.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: #e5e7eb;
  z-index: 1;
}

.progress-step.completed::after,
.progress-step.active::after {
  background: #2563eb;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.progress-step.completed .step-number {
  background: #2563eb;
  color: white;
}

.progress-step.active .step-number {
  background: #2563eb;
  color: white;
}

.step-label {
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
  font-weight: 500;
}

.progress-step.completed .step-label,
.progress-step.active .step-label {
  color: #2563eb;
  font-weight: 600;
}

/* Contenedor de contenido de reserva */
.booking-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.passenger-details-container,
.payment-container {
  padding: 2rem 0;
  background: #f8fafc;
  min-height: 100vh;
}

.passenger-form-section,
.payment-form-section {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.passenger-form-section h1,
.payment-form-section h1 {
  color: #1e293b;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.form-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.form-section h2 {
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-section h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: #2563eb;
  border-radius: 2px;
}

/* Resumen de reserva */
.booking-summary {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 2rem;
}

.booking-summary h2 {
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item .label {
  color: #64748b;
  font-weight: 500;
}

.summary-item .value {
  color: #1e293b;
  font-weight: 600;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  margin-top: 1rem;
  border-top: 2px solid #2563eb;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
}

/* Estilos para formularios mejorados */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  color: #374151;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder {
  color: #9ca3af;
}

/* Estilos para tarjetas de crédito */
.credit-card-section {
  margin-bottom: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.credit-card-section h3 {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.credit-card-section h3 i {
  color: #2563eb;
}

.card-number-group {
  position: relative;
}

.card-number-group input {
  padding-left: 3rem;
}

.card-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1.2rem;
}

.card-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

/* Responsive para el proceso de reserva */
@media (max-width: 768px) {
  .hotel-content,
  .booking-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hotel-booking-card,
  .booking-summary {
    position: static;
  }
  
  .booking-progress {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .progress-step:not(:last-child)::after {
    display: none;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .card-details {
    grid-template-columns: 1fr;
  }
  
  .hotel-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hotel-header h1 {
    font-size: 2rem;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

.place-suggestion {
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.place-suggestion:hover {
  background-color: #f8fafc;
}

.place-suggestion:last-child {
  border-bottom: none;
}

.place-suggestion .place-code {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: #0c4a6e;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 50px;
  text-align: center;
}

.place-suggestion .place-info {
  flex: 1;
}

.place-suggestion .place-name {
  font-weight: 600;
  color: #1f2937;
  display: block;
  margin-bottom: 0.25rem;
}

.place-suggestion .place-details {
  font-size: 0.85rem;
  color: #64748b;
  display: block;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: modalSlideIn 0.3s ease-out;
  overflow: hidden;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.close {
  color: #9ca3af;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8fafc;
}

.close:hover {
  color: #374151;
  background: #e5e7eb;
}

.modal-body {
  padding: 2rem;
}

.modal-body .form-group {
  margin-bottom: 1.5rem;
}

.modal-body .form-group:last-of-type {
  margin-bottom: 2rem;
}

/* Mensajes de error y estados */
.error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #dc2626;
}

.error-message i {
  font-size: 1.2rem;
}

.no-results {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-results i {
  font-size: 4rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.no-results h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
}

.no-results p {
  color: #64748b;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1.5rem;
  color: white;
}

.footer-section h3 {
  font-size: 1.8rem;
  font-weight: 800;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-section p {
  color: #d1d5db;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul li a:hover {
  color: #fbbf24;
  transform: translateX(4px);
}

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

.social-links a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: #fbbf24;
  color: #1f2937;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  transform: scale(1.1);
  color: white;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  }
}

/* Estados de carga */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(37, 99, 235, 0.3);
  border-top: 3px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    padding: 1rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .search-form-container {
    margin: 0 1rem;
    padding: 2rem;
  }

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

  .swap-container {
    order: 2;
    padding: 0.5rem 0;
  }

  .swap-button {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .form-row.passengers,
  .form-row.options,
  .form-row.guests {
    grid-template-columns: 1fr;
  }

  .search-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tab-button {
    flex-direction: row;
    padding: 1rem 1.5rem;
  }

  .tab-icon {
    margin-bottom: 0;
    margin-right: 0.5rem;
  }

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

  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

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

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

  .destination-card.featured {
    grid-row: span 1;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .input-group {
    flex-direction: column;
    gap: 1rem;
  }

  .input-group input {
    border-radius: 12px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
  }

  .input-group button {
    border-radius: 12px;
  }

  .flight-card {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .flight-info {
    flex-direction: column;
    gap: 1rem;
  }

  .flight-time {
    flex-direction: column;
    gap: 1rem;
  }

  .flight-price {
    padding-left: 0;
  }
  
  .hotels-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hotel-card {
    margin-bottom: 1rem;
  }
  
  .hotel-info {
    padding: 1rem;
  }
  
  .hotel-price {
    padding: 1rem;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .search-form-container {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .modal-header,
  .modal-body {
    padding: 1.5rem;
  }

  .flight-card {
    padding: 1.5rem;
  }
}

/* Utilidades */
.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Estilos específicos para confirmación de hoteles */
.hotel-confirmation-container {
  padding: 2rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.hotel-confirmation-header {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.hotel-success-icon {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.hotel-confirmation-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hotel-confirmation-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.hotel-confirmation-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-bottom: 2rem;
}

.hotel-confirmation-number {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.hotel-confirmation-number h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hotel-confirmation-code {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-family: 'Courier New', monospace;
}

.hotel-confirmation-note {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hotel-duffel-order-info {
  background: #f8fafc;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.hotel-duffel-order-info h3 {
  color: #1e293b;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hotel-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.hotel-info-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.hotel-info-item .label {
  font-weight: 600;
  color: #64748b;
}

.hotel-info-item .value {
  color: #1e293b;
}

.hotel-status-confirmed {
  color: #10b981;
  font-weight: 600;
}

.hotel-status-pending {
  color: #f59e0b;
  font-weight: 600;
}

.hotel-status-cancelled {
  color: #ef4444;
  font-weight: 600;
}

.hotel-booking-info {
  padding: 2rem;
}

.hotel-info-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.hotel-info-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.hotel-info-section h3 {
  color: #1e293b;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.hotel-details {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.hotel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hotel-header h4 {
  font-size: 1.5rem;
  color: #1e293b;
  font-weight: 700;
  margin: 0;
}

.hotel-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f59e0b;
  font-weight: 600;
}

.hotel-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.hotel-amenities {
  margin-top: 1rem;
}

.hotel-amenities h5 {
  color: #1e293b;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.amenity-tag {
  background: #2563eb;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.reservation-details {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
}

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

.check-in, .check-out {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.check-in .label, .check-out .label {
  display: block;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.check-in .value, .check-out .value {
  display: block;
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 700;
}

.guest-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.guest-details .info-row,
.hotel-passenger-details .info-row,
.hotel-payment-details .info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.guest-details .info-row:last-child,
.hotel-passenger-details .info-row:last-child,
.hotel-payment-details .info-row:last-child {
  border-bottom: none;
}

.guest-details .label,
.hotel-passenger-details .label,
.hotel-payment-details .label {
  font-weight: 600;
  color: #64748b;
}

.guest-details .value,
.hotel-passenger-details .value,
.hotel-payment-details .value {
  color: #1e293b;
}

.hotel-important-info {
  background: #fef3c7;
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 1.5rem;
}

.hotel-important-info h3 {
  color: #92400e;
  margin-bottom: 1rem;
}

.hotel-important-details {
  display: grid;
  gap: 1rem;
}

.hotel-important-details .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0;
  border-bottom: none;
}

.hotel-important-details .info-item i {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.hotel-important-details .info-item div {
  color: #78350f;
  line-height: 1.5;
}

.hotel-important-details .info-item strong {
  color: #92400e;
}

.hotel-support-info {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.hotel-support-info h3 {
  color: #1e293b;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hotel-support-info p {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.hotel-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.hotel-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  color: #1e293b;
  font-weight: 500;
}

.hotel-contact-item i {
  color: #2563eb;
}

.hotel-payment-summary {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.hotel-price-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.hotel-price-item:last-child {
  border-bottom: none;
}

.hotel-price-item .label {
  color: #64748b;
}

.hotel-price-item .value {
  color: #1e293b;
  font-weight: 500;
}

.hotel-price-item.total {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1e293b;
  border-top: 2px solid #e2e8f0;
  margin-top: 1rem;
  padding-top: 1rem;
}

.hotel-confirmation-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hotel-next-steps {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.hotel-next-steps h2 {
  color: #1e293b;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hotel-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.hotel-step-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: #f8fafc;
  transition: transform 0.3s ease;
}

.hotel-step-card:hover {
  transform: translateY(-5px);
}

.hotel-step-icon {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

.hotel-step-card h3 {
  color: #1e293b;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hotel-step-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hotel-confirmation-header h1 {
    font-size: 2rem;
  }
  
  .hotel-confirmation-code {
    font-size: 1.5rem;
  }
  
  .date-range {
    grid-template-columns: 1fr;
  }
  
  .hotel-confirmation-actions {
    flex-direction: column;
  }
  
  .hotel-steps-grid {
    grid-template-columns: 1fr;
  }
  
  .hotel-contact-info {
    grid-template-columns: 1fr;
  }
}

/* Estilos específicos para páginas de hoteles */

.hotel-payment-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem 0;
}

.hotel-passenger-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem 0;
}

.hotel-summary {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hotel-summary .hotel-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.hotel-summary .hotel-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 1rem;
}

.passenger-summary {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.passenger-summary h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.passenger-info .info-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.passenger-info .info-item:last-child {
  border-bottom: none;
}

.passenger-info .label {
  font-weight: 600;
  color: #374151;
}

.passenger-info .value {
  color: #1e293b;
}

.hotel-policies {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hotel-policies h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.policy-item:last-child {
  border-bottom: none;
}

.policy-item i {
  color: #2563eb;
  font-size: 1rem;
  margin-top: 0.125rem;
}

.policy-item div {
  color: #374151;
  line-height: 1.5;
}

.policy-item strong {
  color: #1e293b;
}

.duffel-recommendations {
  background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.duffel-recommendations h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 1rem;
}

.recommendation-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(146, 64, 14, 0.2);
}

.recommendation-item:last-child {
  border-bottom: none;
}

.recommendation-item i {
  color: #d97706;
  font-size: 1rem;
  margin-top: 0.125rem;
}

.recommendation-item div {
  color: #92400e;
  line-height: 1.5;
}

.recommendation-item strong {
  color: #78350f;
}

.security-info {
  background: linear-gradient(135deg, #dbeafe 0%, #3b82f6 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #1e40af;
  font-size: 0.9rem;
}

.security-item i {
  color: #3b82f6;
  font-size: 1rem;
}

.billing-address-section {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.billing-address-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.payment-actions {
  margin-top: 2rem;
}

.payment-actions .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.form-description {
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.section-note {
  color: #64748b;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.special-requests-section {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.special-requests-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.special-requests-section textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  min-height: 80px;
}

.special-requests-section textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-actions {
  margin-top: 2rem;
}

.form-actions .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive para páginas de hoteles */
@media (max-width: 768px) {
  .hotel-payment-container,
  .hotel-passenger-container {
    padding: 1rem 0;
  }
  
  .hotel-summary,
  .passenger-summary,
  .hotel-policies,
  .duffel-recommendations,
  .security-info {
    padding: 1rem;
  }
  
  .hotel-summary .hotel-info h3 {
    font-size: 1.3rem;
  }
  
  .passenger-info .info-item {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .policy-item,
  .recommendation-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .security-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Estilos para información detallada del hotel */

.hotel-details-section,
.hotel-policies-section,
.hotel-contact-section {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hotel-details-section h3,
.hotel-policies-section h3,
.hotel-contact-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.details-grid,
.policies-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.detail-item,
.policy-item,
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #2563eb;
}

.detail-item i,
.policy-item i,
.contact-item i {
  color: #2563eb;
  font-size: 1rem;
  margin-top: 0.125rem;
  min-width: 16px;
}

.detail-item div,
.policy-item div {
  flex: 1;
}

.detail-item strong,
.policy-item strong {
  color: #1e293b;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.detail-item span,
.policy-item span {
  color: #64748b;
  font-size: 0.95rem;
}

.contact-item {
  align-items: center;
}

.contact-item span {
  color: #1e293b;
  font-weight: 500;
}

/* Responsive para información detallada */
@media (max-width: 768px) {
  .details-grid,
  .policies-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .detail-item,
  .policy-item,
  .contact-item {
    padding: 0.5rem;
  }
  
  .hotel-details-section,
  .hotel-policies-section,
  .hotel-contact-section {
    padding: 1rem;
  }
}

/* Estilos para mensaje de Duffel no disponible */

.duffel-notice {
  background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
  border: 1px solid #f59e0b;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.notice-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.notice-content i {
  color: #d97706;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  min-width: 24px;
}

.notice-content div {
  flex: 1;
}

.notice-content h3 {
  color: #92400e;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.notice-content p {
  color: #78350f;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.notice-content small {
  color: #92400e;
  font-size: 0.9rem;
  font-style: italic;
  display: block;
}

/* Responsive para el mensaje de Duffel */
@media (max-width: 768px) {
  .duffel-notice {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .notice-content {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .notice-content i {
    align-self: center;
  }
}

/* Estilos para formularios dinámicos de múltiples pasajeros */

.passenger-summary {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #0ea5e9;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.passenger-summary p {
  margin: 0;
  color: #0c4a6e;
  font-size: 1.1rem;
  font-weight: 600;
}

.passenger-section {
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.passenger-section:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.passenger-section h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
  font-size: 1.3rem;
  font-weight: 700;
}

.passenger-type-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.passenger-type-badge.adult {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.passenger-type-badge.child {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.passenger-type-badge.infant {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.adult-only-fields {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.adult-only-fields::before {
  content: "📧 Información de contacto (solo adultos)";
  display: block;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Responsive para múltiples pasajeros */
@media (max-width: 768px) {
  .passenger-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .passenger-section h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .passenger-type-badge {
    align-self: flex-start;
  }
  
  .adult-only-fields {
    padding: 1rem;
  }
}

/* Animaciones para formularios dinámicos */
.passenger-section {
  animation: slideInUp 0.5s ease-out;
}

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

/* Estilos para diferentes tipos de pasajeros */
.passenger-section[data-passenger-type="adult"] {
  border-left: 4px solid #10b981;
}

.passenger-section[data-passenger-type="child"] {
  border-left: 4px solid #f59e0b;
}

.passenger-section[data-passenger-type="infant_without_seat"] {
  border-left: 4px solid #ef4444;
}

/* Indicadores visuales para campos requeridos */
.passenger-section .form-group label::after {
  content: " *";
  color: #ef4444;
  font-weight: bold;
}

/* Estilos para campos específicos de cada tipo */
.passenger-section[data-passenger-type="child"] .adult-only-fields,
.passenger-section[data-passenger-type="infant_without_seat"] .adult-only-fields {
  display: none;
}

/* Estilos para detalles de escalas */

.connection-details {
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.connection-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #64748b;
  font-size: 0.9rem;
}

.connection-info i {
  color: #3b82f6;
}

.connection-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  border: 1px solid #e2e8f0;
}

.connection-airport {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.airport-code {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1f2937;
}

.airport-name {
  font-size: 0.8rem;
  color: #64748b;
}

.connection-time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.connection-duration {
  font-weight: 600;
  color: #059669;
  font-size: 0.9rem;
}

.connection-label {
  font-size: 0.75rem;
  color: #64748b;
}

.connection-bar {
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #3b82f6 100%);
  position: relative;
}

.connection-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #8b5cf6;
  border-radius: 50%;
  border: 2px solid white;
}

/* Estilos para el resumen de reserva mejorado */

.connection-summary {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  border: 1px solid #0ea5e9;
}

.connection-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #0c4a6e;
  font-size: 1rem;
}

.connection-header i {
  color: #0ea5e9;
}

.connection-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  border: 1px solid #e0f2fe;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.connection-info {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mejoras en el desglose de precios */

.price-breakdown {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item span:first-child {
  color: #64748b;
  font-size: 0.9rem;
}

.price-item span:last-child {
  font-weight: 600;
  color: #1f2937;
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 2px solid #3b82f6;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1f2937;
}

/* Responsive para escalas */

@media (max-width: 768px) {
  .connection-details {
    padding: 0.75rem;
  }
  
  .connection-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .connection-time {
    align-items: flex-start;
  }
  
  .connection-summary {
    padding: 1rem;
  }
  
  .connection-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .price-breakdown {
    padding: 1rem;
  }
}

/* Animaciones para escalas */

.connection-details {
  animation: slideInUp 0.5s ease-out;
}

.connection-summary {
  animation: slideInUp 0.5s ease-out 0.1s both;
}

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

/* Indicadores visuales para escalas */

.connection-bar {
  position: relative;
  overflow: hidden;
}

.connection-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
