body {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir'), local('Avenir Next'), local('Helvetica Neue');
  font-weight: normal;
}

* {
  font-family: 'Avenir', 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Avenir', 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: -0.5px;
}

.accent-line {
  background: #F7931D;
  height: 2px;
}

.card-elevated {
  background: #FFFFFF;
  border: 1px solid rgba(237, 0, 140, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.card-elevated:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(237, 0, 140, 0.15);
  border-color: rgba(237, 0, 140, 0.2);
}

.card-elevated.package-card:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(237, 0, 140, 0.1);
}

.stat-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
  border-left: 4px solid #ED008C;
}

.btn-primary {
  background: #ED008C;
  color: white;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-primary:hover {
  background: #C70067;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237, 0, 140, 0.3);
}

.btn-secondary {
  border: 1.5px solid #ED008C;
  color: #ED008C;
  background: transparent;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-secondary:hover {
  background: #ED008C;
  color: white;
}

.input-focus:focus {
  border-color: #ED008C;
  box-shadow: 0 0 0 3px rgba(237, 0, 140, 0.1);
}

.destination-card {
  position: relative;
  overflow: hidden;
  height: 168px;
}

@media (min-width: 768px) {
  .destination-card {
    height: 320px;
  }
}

.destination-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  z-index: 2;
}

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

.testimonial-border {
  border-left: 3px solid #ED008C;
}

.testimonials-scroll {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.stat-number {
  background: linear-gradient(90deg, #ED008C, #F7931D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ED008C/10, #F7931D/10);
  border-radius: 12px;
  font-size: 24px;
}

@media (max-width: 767px) {
  #nosotros .why-us-card .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 10px;
  }
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  min-height: 80vh;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.package-image {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: smooth;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  filter: contrast(1.05) saturate(1.1);
}

.package-route-map {
  display: block;
}

.package-tag {
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
}

.package-tag:focus-visible {
  outline: 2px solid #ED008C;
  outline-offset: 2px;
}

@view-transition {
  navigation: auto;
}
