/* font-family: "futura-pt", sans-serif;
font-weight: 400;
font-style: normal;


font-family: "futura-pt", sans-serif;
font-weight: 400;
font-style: italic;
    

font-family: "futura-pt", sans-serif;
font-weight: 700;
font-style: normal;

font-family: "futura-pt-bold", sans-serif;
font-weight: 700;
font-style: normal; */

.landing {
font-family: "futura-pt", sans-serif;
font-style: normal;
}

.bg-yellow {
  background: #ffbf18;
}





.costos-section {
  position: relative;
  min-height: 100vh;
}

.costos-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/event/back-boletos.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.cost-card {
  position: relative;
  padding: 1rem;
}

.cost-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  color: #111;
  text-transform: uppercase;
}

.cost-icon-ticket {
  max-width: 180px;
}

.cost-icon-cap {
  max-width: 140px;
}

.price-list,
.beer-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.price-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.25rem 0;
}

.price-row .label {
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: #111;
  text-transform: uppercase;
}

.price-row .small-label {
  font-size: clamp(1.3rem, 2.4vw, 2.2rem);
  font-weight: 700;
  text-transform: none;
}

.price-row .price {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  color: #111;
}

.price-row.dashed {
  position: relative;
}

.dashed, .soon {
    opacity: .60;

}


.dashed-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

.price-row .label,
.price-row .price {
  position: relative;
  z-index: 3;
}

.beer-note {
  background: #111;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.beer-disclaimer {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #111;
}

@media (max-width: 991.98px) {
  .cost-card {
    text-align: center;
  }

  .price-row {
    align-items: center;
  }

  .price-row .label,
  .price-row .price {
    font-size: clamp(1.6rem, 7vw, 2.6rem);
  }
}


#exclusiva {
    color:  #1df5b5;
    text-align: center;
    background-color: #1d1d1b;
    font-weight: bold;
    font-size: 2.5rem;
    padding: 2rem 0;
}

#exclusiva img {

    padding: 2rem;
    max-width: 700px;

}




.scroll-hint {
    padding: 20px 0;
}

.scroll-hint-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: black; /* cámbialo si tu fondo es claro */
    margin-bottom: 10px;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.scroll-arrows span {
    width: 14px;
    height: 14px;
    display: block;
    border-right: 2px solid black; /* cámbialo si quieres otro color */
    border-bottom: 2px solid black;
    transform: rotate(45deg);
    animation: scrollArrow 1.4s infinite;
    opacity: 0;
}

.scroll-arrows span:nth-child(1) {
    animation-delay: 0s;
}

.scroll-arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-6px, -6px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(6px, 6px);
    }
}