/* ===== GLOBE SECTION ===== */
#globe-section {
  padding: 4.5rem 2rem 3rem;
  background: var(--white) !important;
  position: relative;
  overflow: hidden;
}

/* Orbes ambientales costeros */
#globe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 42% 55%, rgba(143,191,174,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(208,93,62,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 78% 25%, rgba(61,133,119,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Halo difuso detrás del globo — teal+celeste */
#globe-section::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 680px; height: 680px;
  border-radius: 50%;
  background: radial-gradient(ellipse 60% 60% at 50% 50%,
    rgba(143,191,174,0.06) 0%,
    rgba(208,93,62,0.03) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.globe-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

#globe-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
  line-height: 1.15;
}

#globe-section h2 em {
  color: var(--gold);
}

.globe-subtitle {
  color: var(--text-mid);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.globe-hint-badge {
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
  background: rgba(44,104,93,0.06);
  border: 1px solid rgba(44,104,93,0.20);
  border-radius: 50px;
  padding: 0.45rem 1.3rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--deep-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.globe-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  z-index: 1;
}

#globe-canvas {
  display: block;
  cursor: grab;
  border-radius: 50%;
  box-shadow:
    0 0  55px rgba(208,93,62,0.18),
    0 0 110px rgba(208,93,62,0.08),
    0 0 180px rgba(143,191,174,0.10),
    0 0  30px rgba(44,104,93,0.40),
    0 20px 45px rgba(27,55,41,0.20);
}

#globe-canvas:active { cursor: grabbing; }

/* ── Lista de destinos ── */
.dest-nav {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(208,93,62,0.25) transparent;
  min-width: 210px;
}
.dest-nav::-webkit-scrollbar { width: 4px; }
.dest-nav::-webkit-scrollbar-track { background: transparent; }
.dest-nav::-webkit-scrollbar-thumb { background: rgba(208,93,62,0.25); border-radius: 4px; }

.dest-btn {
  display: flex;
  align-items: center;
  gap: 0.70rem;
  padding: 0.62rem 1.1rem 0.62rem 0.95rem;
  background: rgba(27,55,41,0.03);
  border: 1px solid rgba(27,55,41,0.10) !important;
  border-left: 3px solid rgba(208,93,62,0.25) !important;
  border-radius: 10px;
  color: rgba(28,46,39,0.72);
  font-size: 0.83rem;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition:
    background    0.22s cubic-bezier(0.4,0,0.2,1),
    border-color  0.22s cubic-bezier(0.4,0,0.2,1),
    color         0.22s cubic-bezier(0.4,0,0.2,1),
    transform     0.22s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  font-weight: 300;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

/* Shimmer en hover */
.dest-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(44,104,93,0.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.dest-btn:hover::after { opacity: 1; }

.dest-btn:hover, .dest-btn.active {
  background: rgba(44,104,93,0.06) !important;
  border-color: rgba(44,104,93,0.22) !important;
  border-left-color: var(--gold) !important;
  color: var(--text-dark);
  transform: translateX(6px);
  box-shadow: 0 4px 18px rgba(27,55,41,0.08), -2px 0 0 var(--gold);
}

.dest-btn.active {
  color: var(--gold-dark);
  font-weight: 400;
  background: rgba(44,104,93,0.08) !important;
}

.dest-flag { font-size: 1.15rem; flex-shrink: 0; display: inline-flex; }
.dest-flag .flag-icon { width: 20px; }

/* Flecha indicadora en cada dest-btn */
.dest-btn-arrow {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.dest-btn:hover .dest-btn-arrow,
.dest-btn.active .dest-btn-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ===== STARS ===== */
.stars       { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.stars-empty { color: rgba(208,93,62,0.28); }

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.rating-score  { font-weight: 700; font-size: 0.9rem; color: var(--gold-text); }
.reviews-count { font-size: 0.8rem; color: var(--text-muted); }
.panel-stars   { margin-top: 0.5rem; }

@media (max-width: 900px) {
  .globe-wrapper { gap: 1.8rem; }
}

@media (max-width: 768px) {
  #globe-section { padding: 4rem 1rem; }
  #globe-section::after { width: 360px; height: 360px; }
  .globe-wrapper { flex-direction: column; }
  .dest-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; min-width: unset; }
  .dest-btn { transform: none !important; }
}
