@keyframes heroZoom {
  from {
    transform: scale(1.1);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-light {
  display: block !important;
}

.logo-dark {
  display: none !important;
}

html.dark .logo-light {
  display: none !important;
}

html.dark .logo-dark {
  display: block !important;
}

@keyframes pulse-once {
  0% {
    box-shadow: 0 0 0 0 rgba(176, 139, 96, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(176, 139, 96, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(176, 139, 96, 0);
  }
}

#theme-toggle {
  animation: pulse-once 2s ease-in-out 3;
}

/* TIERRA */
.earth-loader {
  --watercolor: #3344c1;
  --landcolor: #7cc133;
  width: 7.5em;
  height: 7.5em;
  background-color: var(--watercolor);
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  box-shadow:
    inset 0em 0.5em rgb(255, 255, 255, 0.25),
    inset 0em -0.5em rgb(0, 0, 0, 0.25);
  border: solid 0.15em white;
  animation: startround 1s;
  animation-iteration-count: 1;
}

.earth p {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.25em;
  font-size: 1.25em;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.earth-loader svg:nth-child(1) {
  position: absolute;
  bottom: -2em;
  width: 7em;
  height: auto;
  animation: round1 5s infinite linear 0.75s;
}

.earth-loader svg:nth-child(2) {
  position: absolute;
  top: -3em;
  width: 7em;
  height: auto;
  animation: round1 5s infinite linear;
}

.earth-loader svg:nth-child(3) {
  position: absolute;
  top: -2.5em;
  width: 7em;
  height: auto;
  animation: round2 5s infinite linear;
}

.earth-loader svg:nth-child(4) {
  position: absolute;
  bottom: -2.2em;
  width: 7em;
  height: auto;
  animation: round2 5s infinite linear 0.75s;
}

@keyframes startround {
  0% {
    filter: brightness(500%);
    box-shadow: none;
  }

  75% {
    filter: brightness(500%);
    box-shadow: none;
  }

  100% {
    filter: brightness(100%);
    box-shadow:
      inset 0em 0.5em rgb(255, 255, 255, 0.25),
      inset 0em -0.5em rgb(0, 0, 0, 0.25);
  }
}

@keyframes round1 {
  0% {
    left: -2em;
    opacity: 100%;
    transform: skewX(0deg) rotate(0deg);
  }

  30% {
    left: -6em;
    opacity: 100%;
    transform: skewX(-25deg) rotate(25deg);
  }

  31% {
    left: -6em;
    opacity: 0%;
    transform: skewX(-25deg) rotate(25deg);
  }

  35% {
    left: 7em;
    opacity: 0%;
    transform: skewX(25deg) rotate(-25deg);
  }

  45% {
    left: 7em;
    opacity: 100%;
    transform: skewX(25deg) rotate(-25deg);
  }

  100% {
    left: -2em;
    opacity: 100%;
    transform: skewX(0deg) rotate(0deg);
  }
}

@keyframes round2 {
  0% {
    left: 5em;
    opacity: 100%;
    transform: skewX(0deg) rotate(0deg);
  }

  75% {
    left: -7em;
    opacity: 100%;
    transform: skewX(-25deg) rotate(25deg);
  }

  76% {
    left: -7em;
    opacity: 0%;
    transform: skewX(-25deg) rotate(25deg);
  }

  77% {
    left: 8em;
    opacity: 0%;
    transform: skewX(25deg) rotate(-25deg);
  }

  80% {
    left: 8em;
    opacity: 100%;
    transform: skewX(25deg) rotate(-25deg);
  }

  100% {
    left: 5em;
    opacity: 100%;
    transform: skewX(0deg) rotate(0deg);
  }
}

:root {
  --bg: #ffffff;
  --text: #4b3f3f;
  --surface: #f6f1ee;
  --border: #e5dfdb;
  --muted: #4b5563;
  --btn-surface: #f3f4f6;
  --btn-danger: rgba(220, 38, 38, 0.20);

  --destino-accent: #b08b60;
  --destino-accent-dark: #8e6f4d;
  --destino-bg: #061326;
  --destino-card: rgba(8, 23, 54, 0.38);
  --destino-card-border: rgba(255, 255, 255, 0.1);
  --destino-text: #ffffff;
  --destino-text-soft: rgba(255, 255, 255, 0.78);
  --destino-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --destino-hero-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

html.dark {
  --bg: #111827;
  --text: #f9fafb;
  --surface: #1f2937;
  --border: #374151;
  --muted: #d1d5db;
  --bs-body-bg: var(--bg);
  --bs-body-color: var(--text);
  --bs-border-color: var(--border);
  --btn-surface: #374151;
  --btn-danger: rgba(220, 38, 38, 0.20);
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body.destinos-body {
  margin: 0;
  min-height: 100vh;
  background: var(--destino-bg);
  color: var(--destino-text);
  display: flex;
  flex-direction: column;
}

/* HEADER EXACTO COMO INDEX */
header {
  position: sticky;
  top: 0;
  z-index: 999;
}

header .brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

header .brand-logo img {
  display: block;
}

header .brand-logo .logo-light,
header .brand-logo .logo-dark {
  height: 80px !important;
  width: auto !important;
  object-fit: contain;
}

#menu-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 1.5rem;
}

#menu-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu-list li a {
  color: var(--text) !important;
  text-decoration: none !important;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

html.dark #menu-list li a {
  color: #f9fafb !important;
}

#menu-list li a:hover {
  color: #b08b60 !important;
}

#menu-list li a.active-link {
  color: #b08b60 !important;
  border-color: #b08b60 !important;
}

#menu-btn {
  display: none;
}

.logo a {
  color: var(--text);
  text-decoration: none;
}

/* THEME BUTTON / LOGIN / PERFIL */
.login-fancy-btn {
  background: #b08b60;
  color: #ffffff !important;
  border-color: #b08b60;
  box-shadow: 0 10px 25px rgba(176, 139, 96, 0.28);
  isolation: isolate;
  transition: all 0.35s ease;
}

.login-fancy-btn::before {
  content: "";
  position: absolute;
  width: 0;
  aspect-ratio: 1 / 1;
  left: -120%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 9999px;
  background: #8e6f4d;
  transition: all 0.7s ease;
  z-index: -1;
}

.login-fancy-btn:hover::before {
  width: 100%;
  left: 0;
  transform: translateY(-50%) scale(2.2);
}

.login-fancy-btn:hover {
  color: #ffffff !important;
  border-color: #8e6f4d;
}

.login-fancy-btn svg {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.login-fancy-btn:hover svg {
  background: rgba(255, 255, 255, 0.95);
  border-color: transparent;
}

.login-fancy-btn-arrow {
  fill: currentColor;
}

.login-fancy-btn:hover .login-fancy-btn-arrow {
  fill: #8e6f4d;
}

.dark .login-fancy-btn {
  background: #b08b60;
  color: #ffffff !important;
  border-color: #b08b60;
  box-shadow: 0 10px 25px rgba(176, 139, 96, 0.28);
}

.dark .login-fancy-btn::before {
  background: #8e6f4d;
}

.dark .login-fancy-btn:hover {
  border-color: #8e6f4d;
}

.dark .login-fancy-btn svg {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.dark .login-fancy-btn:hover svg {
  background: rgba(255, 255, 255, 0.95);
}

.dark .login-fancy-btn:hover .login-fancy-btn-arrow {
  fill: #8e6f4d;
}

/* PERFIL */
.profile-user-btn,
.profile-user-btn.dropdown-toggle,
button.profile-user-btn {
  background: #b08b60 !important;
  color: #ffffff !important;
  border: 2px solid #c7a06f !important;
  box-shadow: 0 10px 25px rgba(176, 139, 96, 0.28);
  isolation: isolate;
  transition: all 0.35s ease;
  min-height: 58px;
  min-width: 132px;
  padding: 10px 20px !important;
}

.profile-user-btn::before,
.profile-user-btn.dropdown-toggle::before,
button.profile-user-btn::before {
  content: "";
  position: absolute;
  width: 0;
  aspect-ratio: 1 / 1;
  left: -120%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 9999px;
  background: #8e6f4d;
  transition: all 0.7s ease;
  z-index: -1;
}

.profile-user-btn:hover::before,
.profile-user-btn.dropdown-toggle:hover::before,
button.profile-user-btn:hover::before {
  width: 100%;
  left: 0;
  transform: translateY(-50%) scale(2.2);
}

.profile-user-btn:hover,
.profile-user-btn.dropdown-toggle:hover,
button.profile-user-btn:hover {
  color: #ffffff !important;
  border-color: #8e6f4d !important;
}

.profile-user-btn svg,
.profile-user-btn.dropdown-toggle svg,
button.profile-user-btn svg {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  width: 32px !important;
  height: 32px !important;
}

.profile-user-btn:hover svg,
.profile-user-btn.dropdown-toggle:hover svg,
button.profile-user-btn:hover svg {
  background: rgba(255, 255, 255, 0.95);
  border-color: transparent;
}

.profile-user-btn img,
.profile-user-btn.dropdown-toggle img,
button.profile-user-btn img {
  border: 2px solid rgba(255, 255, 255, 0.35);
  width: 32px !important;
  height: 32px !important;
  object-fit: cover;
}

html.dark .profile-user-btn,
html.dark .profile-user-btn.dropdown-toggle,
html.dark button.profile-user-btn {
  background: #b08b60 !important;
  color: #ffffff !important;
  border: 2px solid #c7a06f !important;
  box-shadow: 0 10px 25px rgba(176, 139, 96, 0.28);
}

html.dark .profile-user-btn::before,
html.dark .profile-user-btn.dropdown-toggle::before,
html.dark button.profile-user-btn::before {
  background: #8e6f4d;
}

html.dark .profile-user-btn:hover,
html.dark .profile-user-btn.dropdown-toggle:hover,
html.dark button.profile-user-btn:hover {
  border-color: #8e6f4d !important;
}

html.dark .profile-user-btn svg,
html.dark .profile-user-btn.dropdown-toggle svg,
html.dark button.profile-user-btn svg {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

html.dark .profile-user-btn:hover svg,
html.dark .profile-user-btn.dropdown-toggle:hover svg,
html.dark button.profile-user-btn:hover svg {
  background: rgba(255, 255, 255, 0.95);
}

/* DROPDOWN PERFIL */
.profile-dropdown-wrap {
  position: relative;
}

.profile-dropdown-wrap .dropdown-toggle::after {
  margin-left: 10px;
  vertical-align: middle;
  color: #fff;
}

.profile-dropdown-menu {
  background: transparent !important;
  min-width: 390px !important;
  width: 390px !important;
  max-width: 390px !important;
  transform: translateY(14px) !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 34px !important;
  overflow: visible !important;
}

.profile-dropdown-card {
  background: rgba(28, 43, 69, 0.96) !important;
  border: 2px solid rgba(118, 136, 168, 0.45) !important;
  border-radius: 34px !important;
  padding: 26px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.profile-dropdown-top {
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.profile-dropdown-avatar-img,
.profile-dropdown-avatar-fallback {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-dropdown-avatar-img {
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.08);
  background: #b08b60;
}

.profile-dropdown-avatar-fallback {
  background: #b08b60;
}

.profile-dropdown-avatar-fallback svg {
  width: 54px;
  height: 54px;
}

.profile-dropdown-name {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.3;
}

.profile-dropdown-email {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  font-weight: 700;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.profile-dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  background: rgba(66, 82, 108, 0.92);
  transition: all 0.25s ease;
}

.profile-dropdown-link:hover {
  color: #fff;
  transform: translateY(-2px);
  background: rgba(77, 95, 123, 0.98);
}

.profile-dropdown-link.logout-link {
  background: rgba(97, 45, 59, 0.95) !important;
}

.profile-dropdown-link.logout-link:hover {
  background: rgba(120, 54, 72, 1) !important;
}

/* CONTENEDOR GENERAL */
.destinos-main {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: transparent;
  flex: 1;
}

/* VIDEO DE FONDO */
.destinos-hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  z-index: -3;
  pointer-events: none;
}

/* CAPAS OSCURAS */
.destinos-main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(176, 139, 96, 0.10), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.04), transparent 20%),
    linear-gradient(to bottom, rgba(4, 12, 30, 0.18), rgba(4, 12, 30, 0.55));
}

.destinos-main::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(4, 12, 30, 0.30);
}

.destinos-hero-bg,
.destinos-hero-overlay {
  display: none;
}

/* HERO */
.destinos-hero {
  position: relative;
  min-height: auto;
  padding: 120px 0 80px;
  overflow: visible;
}

.destinos-hero .container {
  position: relative;
  z-index: 2;
}

.destinos-hero-card {
  max-width: 920px;
  margin: 0 auto 70px;
  text-align: center;
  padding: 48px 34px;
  border-radius: 36px;
  background: rgba(8, 23, 54, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--destino-hero-shadow);
  animation: destinoFadeUp 0.9s ease;
}

.destinos-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(176, 139, 96, 0.14);
  color: #d7b186;
  border: 1px solid rgba(176, 139, 96, 0.2);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.destinos-hero-card h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.destinos-hero-card p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.7;
}

.destinos-toolbar {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.destinos-toolbar-item {
  text-align: left;
}

.destinos-toolbar-item label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.destinos-select,
.destinos-search {
  width: 100%;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0 18px;
  outline: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.destinos-select:focus,
.destinos-search:focus {
  border-color: rgba(176, 139, 96, 0.7);
  box-shadow: 0 0 0 4px rgba(176, 139, 96, 0.15);
}

.destinos-select option {
  color: #111827;
}

.destinos-search::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* GRID */
.destinos-grid-section {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 0 0 110px;
}

.destinos-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.destinos-section-head h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 8px;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.destinos-section-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.destinos-count {
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.destino-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none !important;
  border-radius: 28px;
  padding: 22px;
  min-height: 250px;
  background: rgba(8, 23, 54, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.destino-card:hover {
  transform: translateY(-8px);
  border-color: rgba(176, 139, 96, 0.4);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.destino-card-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(176, 139, 96, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.destino-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.destino-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 9999px;
  background: rgba(176, 139, 96, 0.14);
  color: #d4aa7b;
  border: 1px solid rgba(176, 139, 96, 0.18);
  font-size: 0.82rem;
  font-weight: 700;
}

.destino-cp {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
}

.destino-card-body {
  position: relative;
  z-index: 1;
}

.destino-card-body h3 {
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
}

.destino-card-body p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0;
}

.destino-card-footer {
  margin-top: 26px;
  position: relative;
  z-index: 1;
}

.destino-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d7b186;
  font-weight: 800;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.destino-link:hover {
  color: #ffffff;
  gap: 14px;
}

.destinos-empty {
  margin-top: 30px;
  text-align: center;
  padding: 40px 20px;
  border-radius: 24px;
  background: rgba(8, 23, 54, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.destinos-empty h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 800;
}

.destinos-empty p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* DESTINO NORMAL */
.destino-page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 110px 0 100px;
}

.destino-hero {
  margin-bottom: 36px;
}

.destino-title {
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.04;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.destino-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.destino-content {
  position: relative;
  z-index: 2;
}

.destino-info-box {
  margin-bottom: 24px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(8, 23, 54, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--destino-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.destino-info-box h2 {
  margin: 0 0 14px;
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
}

.destino-info-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.establecimientos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.establecimiento-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 22px;
  background: rgba(6, 19, 45, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.establecimiento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 139, 96, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.establecimiento-card h3 {
  margin: 0 0 14px;
  font-size: 1.18rem;
  font-weight: 900;
  color: #fff;
}

.establecimiento-card p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

/* PROXIMAMENTE */
.destino-coming-page {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px 90px;
}

.destino-coming-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.destino-coming-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 820px;
  text-align: center;
  padding: 56px 34px;
  border-radius: 36px;
  background: rgba(8, 23, 54, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--destino-hero-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.destino-coming-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 139, 96, 0.24) 0%, transparent 70%);
  animation: destinoFloatGlow 4s ease-in-out infinite;
  pointer-events: none;
}

.destino-coming-card::after {
  content: "";
  position: absolute;
  bottom: -110px;
  left: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  animation: destinoFloatGlow 5s ease-in-out infinite reverse;
  pointer-events: none;
}

.destino-coming-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(2px);
  pointer-events: none;
  opacity: 0.9;
}

.destino-coming-orb-1 {
  width: 120px;
  height: 120px;
  top: 12%;
  left: 8%;
  background: radial-gradient(circle, rgba(176, 139, 96, 0.22) 0%, transparent 70%);
  animation: destinoFloatGlow 6s ease-in-out infinite;
}

.destino-coming-orb-2 {
  width: 160px;
  height: 160px;
  bottom: 10%;
  right: 8%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, transparent 70%);
  animation: destinoFloatGlow 7s ease-in-out infinite reverse;
}

.destino-coming-orb-3 {
  width: 90px;
  height: 90px;
  top: 50%;
  right: 18%;
  background: radial-gradient(circle, rgba(176, 139, 96, 0.16) 0%, transparent 70%);
  animation: destinoPulseSoft 3s ease-in-out infinite;
}

.destino-coming-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(176, 139, 96, 0.16);
  border: 1px solid rgba(176, 139, 96, 0.28);
  color: #ddb889;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  animation: destinoPulseSoft 2.4s ease-in-out infinite;
}

.destino-coming-title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.destino-coming-subtitle {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  font-weight: 700;
}

.destino-coming-pill {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(176, 139, 96, 0.95), rgba(142, 111, 77, 0.95));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(176, 139, 96, 0.3);
  animation: destinoPulse 2s infinite ease-in-out;
}

.destino-coming-text {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.8;
}

.destino-coming-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.destino-coming-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.25s ease;
}

.destino-coming-btn-primary {
  background: linear-gradient(135deg, #b08b60, #8e6f4d);
  color: #fff;
  box-shadow: 0 14px 30px rgba(176, 139, 96, 0.28);
}

.destino-coming-btn-primary:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 40px rgba(176, 139, 96, 0.35);
}

.destino-coming-btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.destino-coming-btn-secondary:hover {
  color: #fff;
  transform: translateY(-4px);
  border-color: rgba(176, 139, 96, 0.4);
}

/* FOOTER */
footer {
  position: relative;
  z-index: 3;
  margin-top: auto;
  background: rgba(4, 12, 30, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px 20px 26px;
}

footer .example-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  gap: 10px;
  text-align: center;
  margin-bottom: 14px;
}

footer .footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.25s ease;
}

footer .footer-links a:hover {
  color: #d6b086;
}

footer p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.hidden {
  display: none !important;
}

/* ANIMACIONES */
@keyframes destinoFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes destinoCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes destinoPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(176, 139, 96, 0.28);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 14px 36px rgba(176, 139, 96, 0.42);
  }
}

@keyframes destinoPulseSoft {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes destinoFloatGlow {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.08);
  }
}

/* RESPONSIVE */
@media (max-width: 1023px) {
  #menu-btn {
    display: block;
  }

  #menu-content {
    display: none;
  }

  #menu-content.menu-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 60;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  #menu-list.menu-mobile {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    text-align: center;
    width: 100%;
  }

  #menu-list.menu-mobile li {
    width: 100%;
  }

  .profile-dropdown-menu {
    min-width: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: auto !important;
    transform: translateY(16px) !important;
  }
}

@media (max-width: 900px) {
  .destinos-hero {
    padding: 90px 0 60px;
  }

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

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

  .destino-page {
    padding-top: 90px;
  }

  .destino-coming-page {
    min-height: calc(100vh - 160px);
  }
}

@media (max-width: 768px) {
  .earth-loader {
    width: 5.2em;
    height: 5.2em;
  }

  .earth-loader svg:nth-child(1),
  .earth-loader svg:nth-child(2),
  .earth-loader svg:nth-child(3),
  .earth-loader svg:nth-child(4) {
    width: 5em;
  }
}

@media (max-width: 640px) {
  .destinos-hero {
    padding: 80px 0 40px;
  }

  .destinos-hero-card {
    padding: 32px 20px;
    border-radius: 26px;
  }

  .destino-card {
    min-height: 220px;
    padding: 18px;
  }

  .destino-card-body h3 {
    font-size: 1.45rem;
  }

  .destino-info-box {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .destino-coming-page {
    padding: 50px 16px 70px;
  }

  .destino-coming-card {
    padding: 34px 20px;
    border-radius: 26px;
  }

  .destino-coming-text {
    font-size: 1rem;
  }

  .destino-coming-btn {
    width: 100%;
    min-width: 0;
  }

  .profile-user-btn {
    min-width: 92px;
    min-height: 58px;
    padding: 8px 14px !important;
  }

  .profile-user-btn img,
  .profile-user-btn svg {
    width: 34px !important;
    height: 34px !important;
  }

  .profile-dropdown-card {
    width: calc(100vw - 32px) !important;
    min-width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    padding: 22px 16px;
    border-radius: 28px !important;
  }

  .profile-dropdown-top {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .profile-dropdown-avatar-img,
  .profile-dropdown-avatar-fallback {
    width: 96px;
    height: 96px;
  }

  .profile-dropdown-link {
    min-height: 72px;
    font-size: 0.95rem;
  }

  footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  footer .footer-links {
    gap: 8px;
    font-size: 0.95rem;
  }
}