.parallax-header {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

.parallax-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle,rgba(0, 108, 250, 0.65) 15%, rgba(161, 206, 206, 0.31) 58%);
    z-index: 1;
}

.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.background-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.middle-layer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.middle-layer img {
    max-height: 40%;
    object-fit: contain;
}

.salvavidas-1 {
    margin-left: -5%;
}

.salvavidas-2 {
    margin-right: 5%;
}

.front-layer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 2;
}

.front-layer img {
    max-width: 500px;
    height: auto;
    object-fit: contain;
}
.video-banner {
    position: relative;
    height: 100vh; /* Changed to 100vh for full screen */
    overflow: hidden;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-button i {
    color: #000;
    font-size: 30px;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Fondo morado para la sección de tarifas personalizada */
.custom-pricing-banner {
    background: #353055;
}

.pricing-label {
    color: #fff;
    font-weight: 700;
}

.pricing-range {
    background-color: #f7cd46;
    border-radius: 25px;
    color: #353055;
    font-weight: bold;
    font-style: italic;
    padding: 8px 15px;
    display: inline-block;
}

.pricing-price {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.cta-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.importante-banner {
  background: #f7ce46;
  color: #1e3940;
  padding: 32px 0;
}

.importante-banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.importante-banner-img {
  max-width: 400px;
  width: 100%;
}

.importante-banner-textos {
  text-align: center;
  padding: 15px;
}

.importante-banner-main {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.importante-bold {
  font-weight: 800;
  font-style: italic;
}

.importante-banner-horario {
  margin-bottom: 8px;
}

.importante-banner-diversion {
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .importante-banner-container {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .importante-banner-textos {
    text-align: left;
  }
}

.bold-text h2 {
  font-weight:900 !important;
  font-size: 2rem;
  color: #1d3c4e;
}

.atraccion-category.peques .category-title .title-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    display: block;
}

/* Asegura que las categorías de atracciones usen flexbox en columna */
.atraccion-category {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hace que el título ocupe el mismo alto en todas las categorías */
.category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px !important;
    min-height: 120px; /* Ajusta según lo que necesites */
}

/* Estilo especial para la columna de entrada general */
.pricing-box-special {
    background: #3a8399;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

/* Make the container of the special column align to the right */
.col-12.col-md-3:last-child {
    padding-right: 0; /* Remove right padding */
    margin-left: auto; /* Push to the right */
}

.pricing-box-special .pricing-label {
    color: #fff;
    font-weight: 700;
}

.pricing-box-special .pricing-range {
    background-color: #f7cd46;
    color: #2c5530;
    font-weight: bold;
    font-style: italic;
    padding: 8px 15px;
    display: inline-block;
}

/* Estilo para la sección CTA */
.cta-section {
    background-color: #8e3482;
    padding:40px
}
.cta-section img{
  max-width:500px;
}

/* Mobile responsive styles for front-layer image */
@media (max-width: 768px) {
  .front-layer img {
    max-width: 80%;
    width: 80%;
  }
  
  .cta-image {
    max-width: 90%;
    width: 90%;
  }
  
  .importante-banner-img {
    max-width: 80%;
    width: 80%;
  }
}