@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Londrina+Solid:wght@400;900&family=Creepster&display=swap");
body {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%), repeating-conic-gradient(from 0deg, #ff0000 0deg 10deg, #ffff00 10deg 20deg);
  background-attachment: fixed;
  background-size: 100% 100%, 100% 100%;
  font-family: "Alexandria", sans-serif;
  position: relative;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 0;
}

@keyframes circus-rotate {
  0% {
    background-position: center;
    transform: rotate(0deg);
  }
  100% {
    background-position: center;
    transform: rotate(360deg);
  }
}
img {
  max-width: 100%;
}

.mapa-container {
  overflow: scroll;
}

.mapa {
  background-image: url("../mapa-color-ARq9Juv.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100vw;
  height: 0;
  padding-top: 66.64%; /* (img-height / img-width * container-width) */
  /* (853 / 1280 * 100) */
  min-width: 900px;
  position: relative;
  display: table-cell;
}

.tipo {
  font-size: 0.9rem;
}

.tipo-img {
  max-width: 3rem;
}

.tipo-active img {
  border-bottom: 6px solid rgb(138, 10, 108);
}

.tipo img {
  transition: border-bottom 3s !important;
}

.tipo span {
  display: block;
}

.div-puesto {
  position: absolute;
  background-color: white;
  border-radius: 8px;
  text-align: center;
  width: 4%;
  padding: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.5rem;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform-origin: center center;
  backdrop-filter: blur(8px);
}
.div-puesto:hover {
  font-size: 0.9rem;
  width: 8%;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translate(-25%, -25%) scale(1.5); /* Adjust these values to center the growth */
}

.img-puesto {
  height: auto;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  transition: transform 0.3s ease;
}
.img-puesto:hover {
  transform: scale(1.05);
}

.div-puesto-xs {
  padding: 0px;
  width: 6%;
  transform-origin: center center;
}

.div-puesto-xs:hover {
  width: 8% !important;
}

.div-puesto-xs > img {
  width: 30%;
  display: inline;
}

.div-puesto-xs > .puesto-nombre {
  display: inline-block;
  width: 65%;
  overflow: hidden;
}

.div-puesto-xs:hover > .puesto-nombre {
  display: inline-block;
  width: 100%;
  overflow: visible;
}

.div-puesto-xs:hover > img {
  width: 100% !important;
}

.div-puesto:hover > .puesto-description {
  display: block !important;
}

.div-puesto-sm {
  width: 3%;
}

.puesto-nombre {
  margin-top: 4px;
  display: inline;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table-puesto-img {
  width: 15vw;
}

.row {
  background-color: white;
}

:root {
  --circus-red: #ff0000;
  --circus-yellow: #ffff00;
  --circus-gold: #FFD700;
  --circus-blue: #0066cc;
}

h1, h2, h3 {
  font-family: "Londrina Solid", cursive;
  text-transform: uppercase;
  color: var(--circus-red);
  text-shadow: 3px 3px 0 var(--circus-gold), -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.btn {
  font-family: "Londrina Solid", cursive;
  text-transform: uppercase;
  border-radius: 25px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.2s ease;
}
.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
}

.div-puesto {
  box-shadow: 0 0 0 1px var(--circus-gold), 0 0 0 2px #000, 5px 5px 15px rgba(0, 0, 0, 0.3);
  color: white;
}
.div-puesto:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 0 3px var(--circus-gold), 0 0 0 6px #000, 8px 8px 20px rgba(0, 0, 0, 0.4);
}

.img-puesto {
  border: 1px solid #000;
  box-shadow: 0 0 0 1px var(--circus-gold);
}

.tipo {
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}
.tipo:hover {
  transform: scale(1.1) rotate(5deg);
}
.tipo.tipo-active {
  transform: scale(1.15);
}
.tipo.tipo-active img {
  border-bottom: 6px solid var(--circus-red);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section-title {
  position: relative;
  text-align: center;
  margin: 2rem 0;
}
.section-title::before, .section-title::after {
  content: "★";
  color: var(--circus-gold);
  font-size: 2em;
  margin: 0 1rem;
  text-shadow: 2px 2px 0 #000;
}

.table {
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid #000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}
.table thead {
  background: var(--circus-red);
  color: white;
  text-transform: uppercase;
  font-family: "Londrina Solid", cursive;
}
.table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 0, 0.1);
}
.table tbody tr:hover {
  background-color: rgba(255, 215, 0, 0.2);
}

.mapa-container {
  border-radius: 20px;
  border: 5px solid #000;
  box-shadow: 0 0 0 5px var(--circus-gold), 0 0 0 10px #000, 10px 10px 20px rgba(0, 0, 0, 0.3);
  margin: 2rem 0;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #fff;
  border: 2px solid #000;
}

::-webkit-scrollbar-thumb {
  background: var(--circus-red);
  border: 2px solid #000;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--circus-gold);
}

.puesto-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  backdrop-filter: blur(5px);
}
.puesto-modal.show {
  display: flex;
  animation: modalFadeIn 0.3s ease-out;
}

.puesto-modal-content {
  position: relative;
  background: white;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  border-radius: 15px;
  border: 3px solid #000;
  box-shadow: 0 0 0 3px var(--circus-gold), 0 0 0 6px #000, 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--circus-red);
  color: white;
  border: 2px solid #000;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}
.close-modal:hover {
  transform: scale(1.1);
  background: #ff2b2b;
}

.modal-img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
}

.modal-title {
  color: var(--circus-red);
  margin-bottom: 10px;
}

.modal-description {
  color: #333;
  line-height: 1.6;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=app.output.css.map */
