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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #102036;
  background-color: #f4f6fa;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-soft {
  background: #eef2f7;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-intro {
  max-width: 640px;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  color: #4c5c73;
}

/* Header */

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.6rem 0;
}

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

.logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid #e4b54c;
}

.brand-text h1 {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-text p {
  margin: 0;
  font-size: 0.8rem;
  color: #4c5c73;
}

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

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

.main-nav a:hover {
  background: #182141;
  color: #f9fafb;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: none;
  background: #182141;
  color: #fff;
  font-size: 1.3rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
}

/* Hero */

.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(16, 32, 54, 0.25), rgba(3, 7, 18, 0.85));
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(8, 47, 73, 0.85);
  border: 1px solid rgba(241, 245, 249, 0.3);
}

.hero h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  max-width: 650px;
}

.hero h2 span {
  color: #fbbf24;
}

.hero p {
  max-width: 520px;
  margin-top: 1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

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

.btn.primary {
  background: linear-gradient(135deg, #fbbf24, #e4b54c);
  color: #1f2937;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.btn.outline {
  background: transparent;
  border-color: rgba(249, 250, 251, 0.7);
  color: #f9fafb;
}

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

.btn.full {
  width: 100%;
}

/* Layout helpers */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.card-highlight {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem 1.7rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.card-highlight h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.card-highlight ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card-highlight li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.35rem;
  font-size: 0.94rem;
  color: #4b5563;
}

.card-highlight li::before {
  content: "•";
  position: absolute;
  left: 0.3rem;
  top: 0;
  color: #e4b54c;
  font-size: 1.1rem;
}

.media-card {
  background: white;
  border-radius: 1.5rem;
  padding: 0.8rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.media-card img {
  border-radius: 1.2rem;
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.media-caption {
  margin: 0.6rem 0 0.2rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.pill {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #182141;
  color: #f9fafb;
}

/* Destinos */

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
  margin-top: 2rem;
}

.destino-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.09);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-direction: column;
}

.destino-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.destino-body {
  padding: 1.1rem 1.3rem 1.2rem;
}

.destino-body h4 {
  margin: 0 0 0.4rem;
}

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

/* Checklist */

.checklist {
  list-style: none;
  padding-left: 0;
  margin-top: 0.8rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.94rem;
  color: #4b5563;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
}

/* Video */

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1.3rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 1rem;
  height: 170px;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
  filter: brightness(1.05);
}

/* Redes sociales */

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 0.9rem;
  font-size: 0.93rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.social-btn.fb {
  background: #1877f2;
  color: #f9fafb;
}

.social-btn.ig {
  background: linear-gradient(135deg, #f97316, #ec4899, #8b5cf6);
  color: #f9fafb;
}

.social-btn:hover {
  opacity: 0.93;
}

.social-embed {
  background: white;
  border-radius: 1.5rem;
  padding: 0.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.fb-embed-wrapper {
  border-radius: 1.3rem;
  overflow: hidden;
}

/* Contacto */

.contact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

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

.contact-list a {
  color: #0f766e;
}

.contact-form {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.85rem;
}

.form-row label {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row textarea {
  border-radius: 0.8rem;
  border: 1px solid #cbd5e1;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid #e4b54c;
  outline-offset: 1px;
}

.form-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.6rem;
}

/* WhatsApp floating */

.whatsapp-float {
  position: fixed;
  bottom: 1.3rem;
  right: 1.1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.7);
  z-index: 60;
  color: #f9fafb;
}

/* Footer */

.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.85rem;
  margin: 0;
}

.site-footer a {
  color: #e4b54c;
  font-size: 0.85rem;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.lightbox.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
}

.lightbox-content {
  position: relative;
  max-width: min(900px, 100% - 2rem);
  max-height: 90vh;
  z-index: 1;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: none;
  background: #0f172a;
  color: #f1f5f9;
  font-size: 1.3rem;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 900px) {
  .two-column {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    padding: 0.85rem 1rem 1rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
  }

  .main-nav a {
    color: #e5e7eb;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    padding: 0.55rem 0;
  }

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

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .logo {
    width: 44px;
    height: 44px;
  }
}
