
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0f172a;
  background-color: #f3f4f6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  color: #f9fafb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.60rem 0.5rem;
  gap: 1rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #f97316;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-weight: 600;
  font-size: 1rem;
}

.logo-subtitle {
  font-size: 0.7rem;
  opacity: 0.8;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  transition: width 0.2s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #f9fafb;
  border-radius: 999px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #f9fafb;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.45), transparent 50%),
              linear-gradient(to bottom, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7));
}

.hero-content {
  position: relative;
  padding: 4.5rem 0 4rem;
  z-index: 1;
}

.hero-kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: #fed7aa;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin: 0 0 1rem;
}

.hero h1 span {
  color: #fed7aa;
}

.hero-text {
  max-width: 550px;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.70rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #111827;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}

.btn.ghost {
  border-color: rgba(248, 250, 252, 0.35);
  color: #e5e7eb;
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.6);
}

.btn.light {
  background: #f9fafb;
  color: #0f172a;
}

.btn.full {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.hero-badges span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(248, 250, 252, 0.14);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-light {
  background: #f9fafb;
}

.section-gradient {
  background: radial-gradient(circle at top left, #fde68a, #f97316 30%, #fb923c 50%, #f97316 70%, #0f172a 110%);
  color: #0f172a;
}

.section-gradient .section-heading p {
  color: #111827;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.section-heading p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.nosotros-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  background: #0f172a;
  position: relative;
}

.nosotros-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nosotros-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
  color: #f9fafb;
  font-size: 0.9rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
  color: #f97316;
}

/* Paquetes */
.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}

.paquete-card {
  border-radius: 1.2rem;
  overflow: hidden;
  background: rgba(248, 250, 252, 0.94);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
}

.paquete-card img {
  height: 180px;
  object-fit: cover;
}

.paquete-body {
  padding: 0.9rem 1.05rem 1.15rem;
}

.paquete-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.paquete-body p {
  margin: 0;
  font-size: 0.85rem;
  color: #4b5563;
}

/* Vuelo banner */
.vuelo-banner {
  margin-top: 2.5rem;
  border-radius: 1.6rem;
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: center;
}

.vuelo-img img {
  border-radius: 1.2rem;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.6);
}

.vuelo-text h3 {
  margin: 0 0 0.5rem;
}

.vuelo-text p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.9rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.gallery-item:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.35);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  border-radius: 1.2rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.8);
  color: #f9fafb;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Video section */
.section-video {
  color: #f9fafb;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1.5rem;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.55);
  overflow: hidden;
  background: #020617;
}

.video-wrapper iframe {
  width: 100%;
  height: min(450px, 56vw);
  display: block;
}

/* Contacto */
.contact-grid {
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.85rem;
}

.social-links a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.contact-form {
  padding: 1.25rem 1.4rem 1.4rem;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.form-row {
  margin-bottom: 0.8rem;
}

label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid #e5e7eb;
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid #fb923c;
  outline-offset: 1px;
  border-color: transparent;
}

/* Map */
.map-wrapper {
  margin-top: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
}

.map-wrapper iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #22c55e;
  color: #f9fafb;
  font-size: 0.86rem;
  box-shadow: 0 18px 35px rgba(22, 163, 74, 0.6);
}

.whatsapp-float::before {
  content: "💬";
}

/* Footer */
.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.6rem 0;
  font-size: 0.78rem;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-footer a {
  color: #f97316;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .vuelo-banner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: rgba(15, 23, 42, 0.97);
    flex-direction: column;
    padding: 0.8rem 1.1rem 1rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
  }

  .main-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.35rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding-top: 4rem;
    padding-bottom: 3.3rem;
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding-inline: 0.3rem;
  }

  .logo-subtitle {
    display: none;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-text {
    font-size: 0.88rem;
  }

  .hero-badges span {
    font-size: 0.72rem;
  }

  .gallery-item {
    height: 140px;
  }
}
