.halloween-block-inner {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.halloween-block-paragraph {
  align-items: center;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.halloween-block-row {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 0.4em;
  white-space: nowrap;
}

.halloween-block-col {
  color: white;
  font-size: clamp(30px, 5vw, 71px);
  text-transform: uppercase;
  text-align: center;
  display: inline;
  margin: 0;
  padding: 0;
}

.halloween-block-img-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 0.4em;
}

.halloween-block-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.halloween-img-wrapper {
  position: relative;
  width: 100%;
  display: block;
}

.budweiser-logo-over {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(50%);
  z-index: 2;
  width: 20vw; /* Ajusta el tamaño según necesidad */
  max-width: 400px;
  height: auto;
  pointer-events: none;
  animation: flickerLogo 4s linear reverse infinite;
}

.budweiser-logo-over::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 0 20px 5px rgba(255, 0, 0, 0.5), 0 0 40px 10px rgba(255, 0, 0, 0.3);
  filter: blur(8px);
  z-index: -1;
}

@keyframes flickerLogo {
  0% {
    filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.4));
  }
  5% {
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.8));
  }
  10% {
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.9));
  }
  15% {
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.85));
  }
  20% {
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 1));
  }
  25% {
    filter: drop-shadow(0 0 16px rgba(255, 0, 0, 0.8));
  }
  30% {
    filter: drop-shadow(0 0 35px rgba(255, 0, 0, 1));
  }
  35% {
    filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.7));
  }
  40% {
    filter: drop-shadow(0 0 22px rgba(255, 0, 0, 0.9));
  }
  45% {
    filter: drop-shadow(0 0 28px rgba(255, 0, 0, 0.95));
  }
  50% {
    filter: drop-shadow(0 0 32px rgba(255, 0, 0, 1));
  }
  55% {
    filter: drop-shadow(0 0 26px rgba(255, 0, 0, 0.9));
  }
  60% {
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 1));
  }
  70% {
    filter: drop-shadow(0 0 18px rgba(255, 0, 0, 0.8));
  }
  80% {
    filter: drop-shadow(0 0 28px rgba(255, 0, 0, 0.95));
  }
  90% {
    filter: drop-shadow(0 0 14px rgba(255, 0, 0, 0.7));
  }
  95% {
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.4));
  }
}
.block-halloween {
  margin-top: 50px;
  padding-inline: 85px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto 50px auto;

  
  @media (max-width: 900px) {
    padding-inline: 50px;
    margin-top: 20px;
  }

  @media (max-width: 768px) {
    padding-inline: 20px;
  }
}

.halloween-full-img {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  max-width: 100vw;
}

  .halloween-block-container {
    aspect-ratio: 9 / 2;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: var(--spacing-30);
    background-color: var(--primary-blue);
    position: relative;
    overflow: hidden;

    @media (max-width: 1640px) {
      aspect-ratio: 7.5/2;
    }

    @media (max-width: 1380px) {
      aspect-ratio: 7/2;
    }

    @media (max-width: 1120px) {
      aspect-ratio: 6/2;
    }

    @media (max-width: 768px) {
      aspect-ratio: unset;
      min-height: 250px; /* Ajusta este valor según lo que necesites */
      height: 250px;      /* O usa un valor fijo si prefieres */
      padding-bottom: 20px;
    }
    }

@media (max-width: 768px) {
  .halloween-img-wrapper {
    height: 320px;
    min-height: 220px;
    max-height: 60vw;
    width: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
  }
  .halloween-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    max-width: unset;
  }

  .budweiser-logo-over{
	width: 45vw;
    animation: flickerLogo 4s linear reverse infinite;
  }

  .budweiser-logo-over::after {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    right: -5%;
    bottom: -5%;
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 0 15px 3px rgba(255, 0, 0, 0.4), 0 0 30px 6px rgba(255, 0, 0, 0.25);
    filter: blur(6px);
    z-index: -1;
  }

}

	.halloween-block-btn-row{
		display: flex;
		justify-content: center;
		margin-top: 1em;
	}