
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1b263b, #000814 55%);
  color: #f8f9fa;
  line-height: 1.6;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(3, 7, 18, 0.85);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-wrap img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid #38bdf8;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.6);
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: #e5e7eb;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  background: rgba(56, 189, 248, 0.16);
  color: #e0f2fe;
  transform: translateY(-1px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(248, 113, 22, 0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(248, 113, 22, 0.85);
  filter: brightness(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: transparent;
  color: #e5e7eb;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.96);
  border-color: #38bdf8;
  color: #e0f2fe;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.7rem 0.2rem 0.2rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.5);
  margin-bottom: 0.9rem;
}

.hero-badge-pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #86efac);
  font-size: 0.7rem;
  font-weight: 700;
  color: #052e16;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-badge span {
  font-size: 0.75rem;
  color: #e5e7eb;
}

.hero h1 {
  font-size: clamp(2.35rem, 3.1vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.9rem;
  text-shadow: 0 0 26px rgba(15, 23, 42, 0.9);
}

.hero h1 span {
  background: linear-gradient(135deg, #38bdf8, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.95rem;
  max-width: 32rem;
  color: #e5e7eb;
  opacity: 0.9;
  margin-bottom: 1.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: #cbd5f5;
}

.hero-meta div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-right {
  position: relative;
}

.hero-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.95);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 120px rgba(8, 47, 73, 0.9);
}

.hero-card img {
  width: 100%;
  height: auto;
}

.hero-floating {
  position: absolute;
  inset: auto 0 -1.3rem;
  margin-inline: auto;
  width: min(100%, 320px);
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.78rem;
}

.hero-floating strong {
  color: #e0f2fe;
}

.hero-floating small {
  color: #9ca3af;
}

.hero-floating span.badge {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.15);
  color: #bbf7d0;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(34, 197, 94, 0.5);
}

/* Sections */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title span {
  font-size: 0.8rem;
  display: block;
  color: #9ca3af;
  letter-spacing: 0.16em;
}

.section-accent {
  width: 60px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #38bdf8, #f97316);
}

.section-description {
  font-size: 0.85rem;
  color: #cbd5f5;
  max-width: 22rem;
}

/* Experiences grid */

.grid-experiencias {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card-tour {
  border-radius: 1.2rem;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-tour-header {
  position: relative;
  overflow: hidden;
}

.card-tour-header img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.25s ease;
}

.card-tour:hover .card-tour-header img {
  transform: scale(1.07);
}

.card-tour-chip {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.card-tour-price {
  position: absolute;
  bottom: 0.7rem;
  right: 0.7rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #a3e635);
  font-weight: 800;
  color: #052e16;
  font-size: 0.85rem;
}

.card-tour-body {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.card-tour-body h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.card-tour-body ul {
  list-style: none;
  margin-top: 0.3rem;
}

.card-tour-body li {
  margin-bottom: 0.15rem;
  color: #d1d5db;
}

.card-tour-footer {
  padding: 0.75rem 1rem 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Redes */

.redes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.card-red {
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
}

.card-red h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.card-red small {
  font-size: 0.75rem;
  color: #9ca3af;
}

.card-red a.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.6);
  font-size: 0.8rem;
  color: #e0f2fe;
  margin-top: 0.4rem;
}

.badge-live {
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.9);
  color: #fecaca;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* Video */

.video-wrapper {
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 24px 60px rgba(8, 47, 73, 0.9);
  background: #020617;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* Galería */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
}

.gallery-item {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery-item::after {
  content: "Ver foto";
  position: absolute;
  inset: auto 0 0.25rem;
  margin-inline: auto;
  width: fit-content;
  padding: 0.16rem 0.5rem;
  font-size: 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  color: #e5e7eb;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 1.25rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 960px);
  max-height: 90vh;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9);
}

.lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
  font-size: 0.75rem;
  color: #e5e7eb;
}

/* Contacto */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.contact-card {
  border-radius: 1.3rem;
  padding: 1.2rem 1.4rem;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.65);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.2rem;
  font-size: 0.82rem;
  color: #e5e7eb;
}

.contact-meta div span {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.map-embed {
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.65);
  min-height: 260px;
  background: #020617;
}

.map-embed iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

/* Formulario */

.form-card {
  border-radius: 1.3rem;
  padding: 1.3rem 1.4rem 1.4rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.form-card h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
}

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

label {
  color: #e5e7eb;
}

input,
textarea,
select {
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  font: inherit;
  padding: 0.55rem 0.7rem;
  font-size: 0.85rem;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

/* WhatsApp floating */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(16, 185, 129, 0.8);
  z-index: 90;
  cursor: pointer;
}

.whatsapp-float span {
  font-size: 1.75rem;
}

.whatsapp-float:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Footer */

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

.footer-inner p a {
  color: #e5e7eb;
}

/* Responsive */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 3.5rem;
  }

  .hero-right {
    order: -1;
  }

  .grid-experiencias {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .section {
    padding-block: 2rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-floating {
    position: static;
    margin-top: 0.9rem;
  }

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

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

  .whatsapp-float {
    width: 52px;
    height: 52px;
  }
}
