@charset "UTF-8";
.circos-map {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px;
  color: #535353;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}
.circos-map *, .circos-map *::before, .circos-map *::after {
  box-sizing: border-box;
}
.circos-map__head {
  text-align: center;
  margin-bottom: 18px;
}
.circos-map__title {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0;
  color: #EB661C;
}
.circos-map__title::before {
  content: "🎪";
  margin-right: 10px;
}
.circos-map__subtitle {
  font-size: 14px;
  color: #535353;
  margin: 6px 0 0;
}
.circos-map__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.circos-map__stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 18px;
}
.circos-map__stat + .circos-map__stat {
  border-left: 1px solid #E4E4E4;
}
.circos-map__stat-ic {
  font-size: 20px;
  line-height: 1;
}
.circos-map__stat-num {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: #EB661C;
}
.circos-map__stat-txt {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.circos-map__stat-txt b {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333333;
}
.circos-map__stat-txt small {
  font-size: 11px;
  color: #666666;
}
.circos-map__stat-txt .circos-map__stat-hl {
  color: #EB661C;
}
.circos-map__stage {
  position: relative;
  z-index: 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.circos-map__canvas {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 68vh;
  min-height: 420px;
  max-height: 620px;
  background: #D3E4EC;
}
.circos-map__controls {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.circos-map__ctrl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #E4E4E4;
  border-radius: 50%;
  background: #FFFFFF;
  color: #535353;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.circos-map__ctrl:hover {
  background: #EB661C;
  border-color: #EB661C;
  color: #FFFFFF;
}
.circos-map__ctrl--reset {
  font-size: 0;
}
.circos-map__legend {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 9px 7px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 11px;
  line-height: 1.35;
  color: #535353;
}
.circos-map__legend-title {
  margin: 0 0 2px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333333;
}
.circos-map__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.circos-map__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
}
.circos-map__dot--r {
  background: #E0483E;
}
.circos-map__dot--o {
  background: #F5941E;
}
.circos-map__dot--g {
  background: #43A047;
}
.circos-map__dot--n {
  background: #D2D2CE;
}
.circos-map__pin {
  pointer-events: none;
  width: 30px;
  height: 30px;
}
.circos-map__pin-carpa {
  display: block;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}
.circos-map__pin-name {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 2px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  color: #333333;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.circos-map__canvas.is-zoom-far .circos-map__pin-carpa {
  font-size: 15px;
}
.circos-map__canvas.is-zoom-far .circos-map__pin-count {
  min-width: 14px;
  height: 14px;
  font-size: 9px;
  line-height: 14px;
  top: -2px;
  right: -2px;
}
.circos-map__canvas.is-zoom-far .circos-map__pin-name {
  display: none;
}
.circos-map__pin-count {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  box-shadow: 0 0 0 2px #FFFFFF;
}
.circos-map__pin-count--r {
  background: #E0483E;
}
.circos-map__pin-count--o {
  background: #F5941E;
}
.circos-map__pin-count--g {
  background: #43A047;
}
.circos-map__loading {
  position: absolute;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F5F5;
  color: #666666;
  font-size: 15px;
}
.circos-map__otras {
  margin-top: 20px;
}
.circos-map__otras[hidden] {
  display: none;
}
.circos-map__otras-title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 2px;
}
.circos-map__otras-sub {
  font-size: 13px;
  color: #666666;
  margin: 0 0 14px;
}
.circos-map__otras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.circos-otra {
  background: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.circos-otra__img {
  width: 100%;
  aspect-ratio: 16/9;
  background: #F5F5F5 center/cover no-repeat;
}
.circos-otra__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 14px;
}
.circos-otra__name {
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 6px;
}
.circos-otra__loc {
  font-size: 13px;
  color: #666666;
  margin: 0 0 6px;
}
.circos-otra__price {
  font-size: 15px;
  font-weight: 800;
  color: #EB661C;
  margin: 0 0 12px;
}
.circos-otra__btn {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  background: #EB661C;
  color: #FFFFFF !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 5px;
}
.circos-otra__btn:hover {
  background: #cc5512;
}

.circos-map__hint {
  text-align: center;
  color: #666666;
  font-size: 13px;
  margin: 14px auto 8px;
  max-width: 720px;
}

.circos-map__districts {
  margin: 2px 0 14px;
}

.circos-map__chips-viewport {
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 4px 0;
}
.circos-map__chips-viewport.is-marquee-on {
  justify-content: flex-start;
}
.circos-map__chips-viewport:hover .circos-map__chips.is-marquee {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.circos-map__chips {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.circos-map__chips.is-marquee {
  -webkit-animation: circosChipsMarquee linear infinite;
          animation: circosChipsMarquee linear infinite;
}

.circos-map__chips-set {
  display: flex;
  gap: 8px;
  padding-right: 8px;
}

@-webkit-keyframes circosChipsMarquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes circosChipsMarquee {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .circos-map__chips.is-marquee {
    -webkit-animation: none;
            animation: none;
  }
}
.circos-map__chip {
  flex: 0 0 auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 12px;
  background: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 50px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #333333;
  transition: border-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.circos-map__chip:hover {
  border-color: #43A047;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}
.circos-map__chip-ic {
  font-size: 15px;
  line-height: 1;
}
.circos-map__chip-name {
  font-weight: 600;
}
.circos-map__chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 50px;
  background: #43A047;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
}
.circos-map__chip-count--r {
  background: #E0483E;
}
.circos-map__chip-count--o {
  background: #F5941E;
}
.circos-map__chip-count--g {
  background: #43A047;
}

.circos-map__tip.leaflet-tooltip {
  background: #FFFFFF;
  color: #333333;
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 9px;
}
.circos-map__tip.leaflet-tooltip.leaflet-tooltip-top:before {
  border-top-color: #FFFFFF;
}

.circos-map__tip--rich.leaflet-tooltip {
  padding: 0;
  width: 216px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.circos-prev {
  font-family: "Roboto", sans-serif;
}
.circos-prev__img {
  width: 100%;
  height: 96px;
  background: #F5F5F5 center/cover no-repeat;
}
.circos-prev__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 11px 10px;
}
.circos-prev__distrito {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #666666;
}
.circos-prev__name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  white-space: normal;
  line-height: 1.25;
}
.circos-prev__price {
  font-size: 14px;
  font-weight: 800;
  color: #EB661C;
}
.circos-prev__more {
  font-size: 11px;
  font-weight: 600;
  color: #166B60;
}
.circos-prev__hint {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 400;
  color: #A6A6A6;
}

@media (max-width: 768px) {
  .circos-map {
    padding: 12px;
  }
  .circos-map__title {
    font-size: 21px;
  }
  .circos-map__canvas {
    height: 62vh;
    min-height: 340px;
  }
  .circos-map__ctrl {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .circos-map__legend {
    font-size: 10px;
    padding: 5px 8px 6px;
    gap: 1px;
    left: 8px;
    bottom: 8px;
  }
  .circos-map__legend-title {
    font-size: 8px;
  }
  .circos-map__dot {
    width: 8px;
    height: 8px;
  }
}
body.circos-modal-open {
  overflow: hidden;
}

.circos-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.circos-modal[hidden] {
  display: none;
}
.circos-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.circos-modal__panel {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: 92vh;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  -webkit-animation: circosModalIn 0.18s ease-out;
          animation: circosModalIn 0.18s ease-out;
}
.circos-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@-webkit-keyframes circosModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes circosModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.circos-ficha {
  font-family: "Roboto", sans-serif;
}
.circos-ficha__head {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: #2b2b2b;
  border-bottom: 3px solid #EB661C;
  color: #FFFFFF;
}
.circos-ficha__head-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.circos-ficha__head-emoji {
  font-size: 26px;
  line-height: 1;
}
.circos-ficha__head-distrito {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}
.circos-ficha__head-sub {
  margin: 2px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.circos-ficha__close {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}
.circos-ficha__close:hover {
  background: rgba(255, 255, 255, 0.28);
}
.circos-ficha__tabs {
  display: flex;
  gap: 10px;
  padding: 14px 20px;
  overflow-x: auto;
  background: #F5F5F5;
  border-bottom: 1px solid #E4E4E4;
}
.circos-ficha__tab {
  flex: 0 0 auto;
  width: 120px;
  padding: 0 0 6px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.1s ease;
}
.circos-ficha__tab:hover {
  transform: translateY(-1px);
}
.circos-ficha__tab.is-active {
  border-color: #EB661C;
}
.circos-ficha__tab-img {
  display: block;
  width: 100%;
  height: 66px;
  background: #EEEEEE center/cover no-repeat;
  font-size: 26px;
  line-height: 66px;
}
.circos-ficha__tab-name {
  display: block;
  padding: 6px 6px 0;
  font-size: 12px;
  font-weight: 700;
  color: #535353;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.circos-ficha__detail {
  padding: 20px;
}
.circos-ficha__top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 22px;
}
.circos-ficha__gallery {
  min-width: 0;
}
.circos-ficha__hero {
  width: 100%;
  aspect-ratio: 16/10;
  background: #F5F5F5 center/cover no-repeat;
  border-radius: 8px;
  border: 1px solid #E4E4E4;
}
.circos-ficha__hero--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.circos-ficha__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.circos-ficha__thumb {
  width: 60px;
  height: 46px;
  border: 2px solid #E4E4E4;
  border-radius: 6px;
  background: #F5F5F5 center/cover no-repeat;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s ease;
}
.circos-ficha__thumb:hover {
  border-color: #A6A6A6;
}
.circos-ficha__thumb.is-active {
  border-color: #EB661C;
}
.circos-ficha__info {
  min-width: 0;
}
.circos-ficha__name {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 800;
  color: #333333;
}
.circos-ficha__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.circos-ficha__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.circos-ficha__row-ic {
  font-size: 18px;
  line-height: 1.2;
  flex: 0 0 auto;
}
.circos-ficha__row-txt {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.circos-ficha__row-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #A6A6A6;
}
.circos-ficha__row-val {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
}
.circos-ficha__muted {
  color: #666666;
  font-weight: 400;
}
.circos-ficha__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(235, 102, 28, 0.08);
  border: 1px solid rgba(235, 102, 28, 0.25);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.circos-ficha__price-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #EB661C;
}
.circos-ficha__price-val {
  font-size: 16px;
  font-weight: 700;
  color: #535353;
}
.circos-ficha__price-val span {
  font-size: 30px;
  font-weight: 800;
  color: #EB661C;
  margin-left: 2px;
}
.circos-ficha__cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #EB661C;
  color: #FFFFFF !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.circos-ficha__cta:hover {
  background: #cc5512;
}

@media (max-width: 768px) {
  .circos-modal {
    padding: 0;
  }
  .circos-modal__panel {
    max-width: none;
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
  }
  .circos-ficha__detail {
    padding: 16px;
  }
  .circos-ficha__top {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .circos-ficha__name {
    font-size: 20px;
  }
  .circos-ficha__head-distrito {
    font-size: 18px;
  }
  .circos-ficha__price-val span {
    font-size: 26px;
  }
}
