 /* Container exemplo (similar ao da imagem) */
        .card-container {
            background-color: #2a2a3e;
            border: 2px solid #3a3a4e;
            border-radius: 20px;
            padding: 40px 30px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            color: white;
        }

        /* Versão flexível do botão */
        .btn-reservar {
            /* Layout responsivo */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 80%;
            max-width: 450px;
            padding: 18px 30px;
            margin: 20px auto;
            min-height: 60px;
            
            /* Cores e gradiente */
            background: linear-gradient(135deg, #5a9e4a 0%, #7ec850 50%, #5a9e4a 100%);
            
            /* Bordas */
            border: 3px solid #3d7a2f;
            border-radius: 50px;
            outline: none;
            
            /* Sombras para dar profundidade */
            box-shadow: 
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(126, 200, 80, 0.3);
            
            /* Texto */
            color: white;
            font-size: clamp(16px, 4vw, 22px);
            font-weight: bold;
            text-transform: uppercase;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 0.5px;
            white-space: nowrap;
            
            /* Animações */
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        /* Ícone de ticket */
        .ticket-icon {
            font-size: 1.3em;
            transform: rotate(15deg);
            display: inline-block;
            flex-shrink: 0;
        }

        /* Efeito de brilho */
        .btn-reservar::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 70%
            );
            transform: rotate(45deg);
            transition: all 0.6s;
            opacity: 0;
        }

        /* Hover effects */
        .btn-reservar:hover {
            background: linear-gradient(135deg, #6bb05b 0%, #8ed960 50%, #6bb05b 100%);
            box-shadow: 
                inset 0 2px 4px rgba(255, 255, 255, 0.4),
                inset 0 -2px 4px rgba(0, 0, 0, 0.3),
                0 6px 12px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(126, 200, 80, 0.5);
            transform: translateY(-2px);
        }
 
        .btn-reservar:hover::before {
            opacity: 1;
            left: 100%;
        }

        /* Active state */
        .btn-reservar:active {
            transform: translateY(0);
            box-shadow: 
                inset 0 2px 4px rgba(0, 0, 0, 0.3),
                inset 0 -1px 2px rgba(255, 255, 255, 0.2),
                0 2px 4px rgba(0, 0, 0, 0.5),
                0 0 15px rgba(126, 200, 80, 0.3);
        }

        /* Versão compacta para espaços menores */
        .btn-reservar.compact {
            padding: 15px 25px;
            font-size: 18px;
        }

        /* Responsividade avançada */
        @media (max-width: 480px) {
            .btn-reservar {
                padding: 15px 20px;
                font-size: 14px;
                letter-spacing: 0;
            }
            
            .ticket-icon {
                font-size: 20px;
            }
        }

        /* Para telas muito pequenas */
        @media (max-width: 360px) {
            .btn-reservar {
                gap: 5px;
                padding: 12px 15px;
                font-size: 14px;
            }
            
            .ticket-icon {
                display: none; /* Oculta o ícone em telas muito pequenas */
            }
        }

        /* CSS para integração fácil */
        .btn-reservar-wrapper {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 10px 0;
        }

        /* ========== VERSÃO PARA CONTAINERS ========== */
        /* Use esta classe quando o botão estiver dentro de divs/cards */
        .btn-reservar-container {
            /* Layout responsivo */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            max-width: 450px;
            padding: 18px 30px;
            margin: 20px auto;
            
            /* Cores e gradiente (mesmo do original) */
            background: linear-gradient(135deg, #5a9e4a 0%, #7ec850 50%, #5a9e4a 100%);
            
            /* Bordas */
            border: 3px solid #3d7a2f;
            border-radius: 50px;
            outline: none;
            
            /* Sombras para dar profundidade */
            box-shadow: 
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(126, 200, 80, 0.3);
            
            /* Texto */
            color: white;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 0.5px;
            white-space: nowrap;
            
            /* Animações */
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-reservar-container .ticket-icon {
            font-size: 1.3em;
            transform: rotate(15deg);
            display: inline-block;
            flex-shrink: 0;
        }

        .btn-reservar-container:hover {
            background: linear-gradient(135deg, #6bb05b 0%, #8ed960 50%, #6bb05b 100%);
            transform: translateY(-2px);
        }

        @media (max-width: 480px) {
            .btn-reservar-container {
                padding: 15px 20px;
                font-size: 14px;
            }
        }

.text-gradient {
 color: #B3E3FF; 
 background-image: linear-gradient(90deg, #B3E3FF 50%, #496885 100%); 
 background-clip: text; 
 -webkit-background-clip: text; 
 -webkit-text-fill-color: transparent; 
 
}
.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.section {
  background-color: #01080f;
  background-image: url('../images/img-headernovo.webp');
  background-position: 50% 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.section-2 {
  background-color: #010911;
  padding-top: 0;
  padding-bottom: 0;
}

.container {
  max-width: 70%;
  padding-top: 0;
}

.container-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  display: flex;
  min-height: 600px;
}

.cell {
  justify-content: center;
  align-items: flex-start;
}

.quick-stack {
  padding: 0;
}

.cell-2 {
  justify-content: center;
  align-items: flex-end;
}

.heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 200;
}

.cell-3 {
  justify-content: flex-start;
  align-items: center;
}

.cell-4 {
  justify-content: flex-start;
  align-items: flex-end;
}

.heading-2 {
  color: #fff;
  text-align: center;
  width: 80%;
  margin-top: 400px;
  font-family: Fraunces, sans-serif;
  font-size: 45px;
  font-weight: 400;
}

.text-span {
  font-weight: 100;
}

.heading-3 {
  color: #fff;
  text-align: center;
  width: 100%;
  font-family: DM Sans, sans-serif;
  font-size: 28px;
  font-weight: 200;
  line-height: 30px;
}

.text-span-2 {
  font-weight: 500;
  text-decoration: underline;
}

.image {
  padding-top: 20px;
}

.heading-4 {
  color: #fff;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 100;
}

.section-3 {
  background-image: url('../images/img-bg-section2.png');
  background-position: 50% 0;
  background-size: cover;
}

.heading-5 {
  color: #fff;
  text-align: center;
  font-family: Fraunces, sans-serif;
  font-size: 51px;
  font-weight: 100;
  line-height: 50px;
}

.text-span-3 {
  font-style: italic;
  font-weight: 600;
}

.section-4 {
  text-align: center;
  background-color: #01080f;
  height: auto;
}

.heading-6 {
  color: #fff;
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 28px;
  font-weight: 100;
  line-height: 30px;
}

.text-span-4 {
  font-weight: 400;
}

.image-2 {
  text-align: center;
  max-width: none;
  padding-top: 60px;
  padding-bottom: 40px;
}

.container-3 {
  padding-top: 0;
}

.image-3 {
  max-width: 70%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.container-4 {
  text-align: left;
  background-color: #061b2c;
  border: 1px solid #292929;
  border-radius: 10px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 672px;
  max-width: 1140px;
  height: auto;
  margin-top: 0;
  padding: 40px 40px 61px;
  font-size: 20px;
  display: block;
  position: relative;
  background: linear-gradient(141deg,rgba(16, 56, 115, 1) 0%, rgba(2, 13, 27, 1) 66%);

}

.heading-7 {
  color: #fff;
  text-align: left;
  width: 89%;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 100;
  line-height: 30px;
}

.container-5 {
  border: 1px solid #b2e3ff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  max-width: 580px;
  margin-left: 0;
  display: flex;
}

.text-block {
  color: #fff;
  text-transform: uppercase;
  min-width: auto;
  padding: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}

.container-6 {
  text-align: center;
  border: 1px solid #b2e3ff;
  border-radius: 10px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  max-width: 533px;
  max-height: none;
  margin-top: 10px;
  margin-left: 0;
  display: block;
}

.heading-8 {
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
}

.section-5 {
  text-align: left;
  text-decoration: none;
}

.heading-9 {
  color: #fff;
  width: 540px;
  font-family: Fraunces, sans-serif;
  font-size: 31px;
  font-weight: 300;
}

.text-span-5 {
  font-style: italic;
  font-weight: 700;
}

.heading-10 {
  color: #fff;
  width: 89%;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 100;
  line-height: 30px;
}

.text-span-6 {
  font-weight: 300;
}

.section-6 {
  background-color: #01080f;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
}

.heading-11 {
  color: #fff;
  text-align: center;
  width: auto;
  height: auto;
  margin-top: 60px;
  font-family: Fraunces, sans-serif;
  font-size: 51px;
  font-weight: 100;
}

.container-7 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-span-7 {
  font-style: italic;
  font-weight: 400;
}

.heading-12 {
  color: #fff;
  text-align: center;
  width: 870px;
  font-family: DM Sans, sans-serif;
  font-size: 28px;
  font-weight: 100;
  line-height: 32px;
}

.text-span-8 {
  font-weight: 300;
}

.container-8 {
    background-color: #041620;
    border: 1px solid #41494e;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 1140px;
    height: 460px;
    margin-top: 34px;
    margin-bottom: 36px;
    display: flex
;
    overflow: visible;
    background: linear-gradient(141deg, rgba(16, 56, 115, 1) 0%, rgba(2, 13, 27, 1) 66%);
  
}

.heading-13 {
  font-family: DM Sans, sans-serif;
}

.heading-14 {
  color: #fff;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 25px;
}

.cell-5 {
  justify-content: center;
  align-items: center;
}

.heading-15 {
  color: #fff;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 25px;
}

.paragraph {
  color: #fff;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 22px;
}

.heading-16 {
  color: #fff;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 23px;
}

.heading-17 {
color: #fff;
    width: 520px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: Fraunces, sans-serif;
    font-size: 33px;
    font-style: italic;
    font-weight: 500;
    line-height: 29px;
}

.heading-18 {
  color: #fff;
}

.heading-19 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 25px;
}

.cell-6 {
  justify-content: center;
  align-items: center;
  line-height: 19px;
}

.section-7 {
  background-color: #01080f;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
}

.heading-20 {
  color: #fff;
  text-align: center;
  width: 760px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Fraunces, sans-serif;
  font-weight: 100;
}

.container-9 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.cell-7, .cell-8 {
  background-color: #011128;
  border: 1px solid #4f5f7b;
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 20px;
  background: linear-gradient(199deg,rgba(5, 37, 84, 1) 15%, rgba(2, 13, 27, 1) 100%);

}

.heading-21 {
  color: #fff;
  padding: 20px;
  font-family: Fraunces, sans-serif;
  font-size: 30px;
  font-weight: 100;
  line-height: 28px;
}

.container-10 {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 1140px;
  display: flex;
}

.text-span-9 {
  font-style: italic;
  font-weight: 400;
}

.list {
  color: #fff;
  padding-bottom: 20px;
  padding-right: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 200;
}

.quick-stack-2 {
  padding-right: 20px;
}

.quick-stack-3 {
  margin-bottom: 0;
  padding-top: 0;
}

.section-8 {
  background-color: #01080f;
  height: auto;
}

.image-4 {
  padding-top: 27px;
  padding-bottom: 32px;
}

.image-5 {
  max-width: none;
  margin-top: 59px;
}

.text-span-10 {
  font-size: 18px;
}

.heading-22 {
  color: #fff;
  text-align: center;
  margin-top: 45px;
  font-family: Fraunces, sans-serif;
  font-size: 51px;
  font-weight: 100;
}

.text-span-11 {
  font-style: italic;
  font-weight: 400;
}

.section-9 {
  background-color: #01080f;
  height: auto;
}

.container-11 {
  max-width: 1140px;
  display: none;
}

.section-10 {
  background-color: #01080f;
  height: auto;
}

.heading-23 {
  color: #fff;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 864px;
  font-family: Fraunces, sans-serif;
  font-size: 39px;
  font-weight: 100;
  display: block;
}

.container-12 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 1150px;
  display: flex;
}

.text-span-12 {
  font-style: italic;
  font-weight: 300;
}

.section-11 {
  background-color: #01080f;
  padding-top: 0;
  padding-bottom: 0;
}

.container-13 {
  background-color: #061b2c;
  border: 1px solid #292929;
  border-radius: 10px;
  max-width: 940px;
}

.image-6 {
  max-width: 67%;
}

.image-7 {
  padding-bottom: 45px;
}

.section-12 {
  background-color: #01080f;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
}

.image-8, .image-9, .image-10, .image-12, .image-13, .image-15, .image-16, .image-17 {
  display: none;
}

/* Dimensões explícitas para image-8 */
.image-8 {
  width: 553px;
  height: auto;
  aspect-ratio: 553/82;
}

.container-14 {
  max-width: 1150px;
}

.image-19, .image-20, .image-21, .image-22 {
  display: none;
}

.container-15 {
  text-align: center;
  max-width: 1140px;
}

.image-23 {
  margin-top: 40px;
  margin-bottom: 0;
  padding-bottom: 52px;
}

.container-16 {
  max-width: 1140px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.text-span-13 {
  font-style: italic;
  font-weight: 400;
}

.section-13 {
  background-color: #01080f;
}

.container-17 {
  text-align: center;
  width: 100%;
  max-width: 1390px;
}

.section-14 {
  background-color: #01080f;
  background-image: url('../images/Group-1707478607.png');
  background-position: 50% 0;
  background-size: cover;
  height: 22vh;
}

.image-24 {
  z-index: 1;
  box-sizing: border-box;
  aspect-ratio: auto;
  margin-top: -130px;
  position: relative;
}

.image-25 {
  max-width: 100%;
  margin-top: 69px;
  padding-bottom: 85px;
}

.heading-24 {
  color: #fff;
  margin-top: 70px;
  margin-bottom: 70px;
  font-family: Fraunces, sans-serif;
  font-size: 51px;
  font-weight: 100;
  min-height: 80px;
}

.quick-stack-5 {
  font-family: Fraunces, sans-serif;
}

.text-span-14 {
  font-style: italic;
  font-weight: 500;
}

.text-span-15 {
  font-style: italic;
  font-weight: 400;
}

.image-26 {
  max-width: 70%;
}

.heading-25 {
  color: #fff;
  text-align: center;
  max-width: 310px;
  margin-bottom: 31px;
  font-family: Fraunces, sans-serif;
  font-weight: 100;
}

.text-span-16 {
  font-style: italic;
  font-weight: 500;
}

.heading-26 {
  font-family: Fraunces, sans-serif;
  font-size: 22px;
}

.heading-27 {
color: #fff;
    padding-right: 99px;
    font-family: Fraunces, sans-serif;
    font-size: 25px;
    font-style: italic;
    font-weight: 300;
    line-height: 27px;
    padding-bottom: 11px;
}

.heading-28 {
  color: #fff;
  margin-top: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
}

.text-span-17 {
  color: #818181;
}

.heading-29 {
color: #fff;
    font-family: Fraunces, sans-serif;
    font-size: 25px;
    font-style: italic;
    font-weight: 300;
    line-height: 27px;
    padding-bottom: 11px;
}

.heading-30 {
 color: #fff;
    font-family: Fraunces, sans-serif;
    font-size: 25px;
    font-style: italic;
    font-weight: 300;
    line-height: 27px;
    padding-bottom: 11px;
}

.heading-31, .heading-32 {
color: #fff;
    font-family: Fraunces, sans-serif;
    font-size: 25px;
    font-style: italic;
    font-weight: 300;
    line-height: 27px;
    padding-bottom: 11px;
}

.heading-33 {
color: #fff;
    font-family: Fraunces, sans-serif;
    font-size: 25px;
    font-style: italic;
    font-weight: 300;
    line-height: 27px;
    padding-bottom: 11px;
}

.paragraph-2, .paragraph-3, .paragraph-4, .paragraph-5, .paragraph-6 {
  color: #818181;
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.text-span-18, .text-span-19, .text-span-20, .text-span-21, .text-span-22 {
  color: #fff;
}

.cell-9 {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    border: 1px solid #494949;
    border-radius: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    display: flex
;
    background: linear-gradient(181deg, rgba(18, 18, 18, 1) 48%, rgba(47, 50, 61, 1) 100%);
  
}

.cell-10 {
  grid-column-gap: 12px;
border: 3px solid #C3922E;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  background: linear-gradient(181deg,rgba(18, 18, 18, 1) 48%, rgba(57, 51, 44, 1) 100%);

}

/* Estiliza todos os blocos de preço de forma padronizada */
.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* Preço antigo cortado */
.old-price {
  color: red;
  font-size: 18px;
  text-decoration: line-through;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Preço atual */
.current-price {
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Parcelamento */
.installment {
  font-size: 18px;
  font-weight: 400;
  color: #ccc;
}

.cell-11 {
    border: 3px solid #4fb5e5;
    border-radius: 10px;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    background: linear-gradient(181deg, rgba(18, 18, 18, 1) 48%, rgba(24, 49, 66, 1) 100%);

}

.heading-34 {
  color: #fff;
  border: 0 solid #fff;
  margin-top: 0;
  padding: 0 20px;
  font-family: Fraunces, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 29px;
}

.heading-35 {
  color: #fff;
  margin-top: 10px;
  padding: 0 20px;
  font-family: Fraunces, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
}

.heading-36 {
  color: #fff;
  margin-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Fraunces, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 29px;
}

.text-span-23 {
  font-size: 39px;
  font-weight: 500;
}

.text-span-24 {
  font-size: 39px;
  font-weight: 500;
  line-height: 25px;
}

.div-block {
  border: 1px solid #fff;
  margin-top: 0;
  margin-bottom: 20px;
}

.list-2 {
  color: #fff;
  text-align: left;
  width: 350px;
  padding-left: 35px;
  font-family: Poppins, sans-serif;
  line-height: 25px;
}

.heading-37 {
  color: #fff;
  margin-top: 0;
  padding-top: 0;
  font-family: Fraunces, sans-serif;
  font-size: 20px;
  font-weight: 200;
  min-height: 30px;
}

.text-span-25 {
  color: red;
  text-decoration: line-through;
}

.heading-38 {
  color: #fff;
  margin-top: -6px;
  font-family: Fraunces, sans-serif;
  font-size: 66px;
  font-weight: 500;
}

.heading-39 {
  font-family: Fraunces, sans-serif;
}

.heading-40 {
  color: #fff;
  text-transform: uppercase;
  margin-top: -2px;
  font-family: Fraunces, sans-serif;
  font-size: 20px;
  font-weight: 100;
  min-height: 30px;
}

.list-item {
  line-height: 25px;
}

.image-27 {
  max-width: 90%;
  margin-top: 0;
}

.image-28 {
  padding-bottom: 25px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.div-block-2 {
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  display: flex;
}

.image-29 {
  margin-top: 0;
}

.quick-stack-6 {
  padding-top: 0;
  padding-bottom: 0;
}

.heading-37-copy {
  color: #fff;
  margin-top: 0;
  font-family: Fraunces, sans-serif;
  font-size: 20px;
  font-weight: 200;
}

.container-18 {
  background-color: #04121d;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  height: 278px;
  max-height: 278px;
  display: flex;
  background: linear-gradient(141deg, rgba(16, 56, 115, 1) 0%, rgba(2, 13, 27, 1) 66%);
    border: 1px solid #4a4a4a;
}

.heading-41 {
  color: #fff;
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 29px;
  font-weight: 600;
}

.image-30 {
  text-align: left;
}

.container-19 {
  margin-top: 50px;
}

.heading-42 {
  color: #fff;
  text-align: center;
  font-family: Fraunces, sans-serif;
  font-size: 51px;
  font-style: italic;
  font-weight: 400;
}

.quick-stack-7 {
  margin-bottom: 0;
}

.text-span-26 {
  font-size: 13.3px;
}

.div-block-3 {
padding-top: 20px;
    padding-bottom: 39px;
}

.div-block-4 {
  padding-top: 16px;
}

.container-20 {
  display: block;
}

.heading-43 {
  color: #fff;
  text-transform: uppercase;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.bold-text {
  font-weight: 600;
}

.image-31 {
  display: none;
}

.image-32 {
  max-width: 70%;
  height: auto;
  aspect-ratio: 401/83;
}

.heading-44 {
  color: #fff;
  margin-bottom: 0;
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
}

.paragraph-7 {
  color: #fff;
  font-family: DM Sans, sans-serif;
}

.image-33 {
  max-width: 76%;
  height: auto;
  aspect-ratio: 436/111;
}

.paragraph-8 {
  color: #fff;
  text-align: left;
  width: 290px;
  margin-top: 14px;
  padding-left: 1px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.quick-stack-9 {
  width: 300px;
  padding-left: 20px;
  padding-right: 0;
}

.cell-12 {
  text-align: right;
  justify-content: flex-start;
  align-items: flex-start;
}

.cell-13 {
  justify-content: flex-start;
  align-items: flex-start;
}

.text-span-28 {
  font-style: italic;
  font-weight: 500;
}

.heading-25-copy {
  color: #fff;
  text-align: center;
  max-width: 310px;
  margin-bottom: 31px;
  font-family: Fraunces, sans-serif;
  font-weight: 100;
  display: none;
}

.container-21 {
    background-color: #010e1a;
    border-radius: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: none;
    margin-top: 54px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex
;
    background: linear-gradient(141deg, rgba(16, 56, 115, 1) 0%, rgba(2, 13, 27, 1) 66%);
    border: 1px solid #4a4a4a;
}

.heading-45 {
  color: #fff;
  font-family: Fraunces, sans-serif;
  font-size: 51px;
  font-weight: 400;
}

.text-span-29 {
  color: #b2e3ff;
}

.heading-46 {
  color: #fff;
  text-align: left;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 25px;
}

.quick-stack-10 {
  grid-column-gap: 51px;
  grid-row-gap: 51px;
  width: 992px;
}

@media screen and (max-width: 479px) {
  .section {
    height: 745px;
  }

  .section-2 {
    display: none;
  }

  .container-2 {
    background-image: url('../images/img-headermobilen.webp');
    background-position: 50% 0;
    background-size: cover;
    width: 100%;
  }

  .heading-2 {
    margin-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 26px;
    line-height: 25px;
    width: 100%;
  }

  .heading-3 {
        margin-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 16px;
        line-height: 19px;
        font-weight: 500;
  }

  .image {
    width: 90%;
    padding-top: 0;
  }

  .heading-4 {
        letter-spacing: 0;
        font-size: 16px;
        width: 50%;
        text-align: center;
        margin-top: 0px;
  }

  .heading-5 {
font-size: 24px;
        line-height: 25px;
        font-weight: 600;
  }

  .section-4 {
    background-color: #01080f;
    background-image: none;
    height: auto;
  }

  .heading-6 {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 15px;
        line-height: 19px;
        font-weight: 800;
  }

  .image-2 {
    display: none;
  }

  .container-3 {
    padding-top: 0;
  }

  .image-3 {
    max-width: 100%;
    display: none;
  }

  .container-4 {
    z-index: 1;
    width: auto;
    height: auto;
    margin-top: 24px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 16px 10px 39px 20px;
    display: block;
    position: relative;
  }

  .heading-7 {
    width: auto;
    height: auto;
    font-size: 17px;
    line-height: 22px;
  }

  .text-block {
    padding-left: 20px;
    padding-right: 10px;
    font-size: 15px;
  }

  .container-6 {
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
    width: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
  }

  .heading-8 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: auto;
    padding-left: 20px;
    padding-right: 21px;
    font-size: 15px;
  }

  .heading-9 {
    width: auto;
    font-size: 23px;
    line-height: 27px;
  }

  .heading-10 {
    font-size: 17px;
    line-height: 22px;
  }

  .section-6 {
    height: auto;
  }

  .heading-11 {
    width: auto;
    margin-top: 11px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
    line-height: 25px;
  }

  .container-7 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .heading-12 {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 17px;
    line-height: 25px;
  }

  .container-8 {
    width: auto;
    height: auto;
    display: none;
  }

  .cell-5 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .heading-17 {
    width: auto;
    font-size: 33px;
  }

  .section-7 {
    background-color: #01080f;
    background-image: none;
    height: auto;
  }

  .heading-20 {
    width: auto;
    margin-top: 24px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 29px;
    line-height: 25px;
  }

  .cell-7 {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
  }

  .cell-8 {
    padding-left: 0;
  }

  .heading-21 {
    padding-right: 0;
    font-size: 23px;
    line-height: 27px;
  }

  .container-10 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .list {
    width: auto;
    padding-left: 32px;
    font-size: 14px;
    line-height: 21px;
  }

  .quick-stack-3 {
    margin-bottom: 1px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-8 {
    text-align: center;
    background-color: #01080f;
    background-image: none;
    height: auto;
  }

  .image-4, .image-5 {
    display: none;
  }

  .text-span-10 {
    font-size: 15px;
  }

  .heading-22 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 25px ;
    line-height: 25px;
  }

  .section-9 {
    background-color: #01080f;
    background-image: none;
    height: auto;
  }

  .container-11 {
    display: none;
  }

  .section-10 {
    height: auto;
  }

  .heading-23 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 27px;
    line-height: 25px;
  }

  .container-13 {
    margin-left: 10px;
    margin-right: 10px;
    display: block;
  }

  .section-12 {
    height: auto;
    display: none;
  }

  .image-8 {
    margin-top: 50px;
    margin-bottom: 20px;
    display: block;
    width: 70%;
  }

  .image-9 {
    width: 94%;
  }

  .image-10 {
    max-width: 100%;
    display: inline;
  }

  .quick-stack-4 {
    flex: 1;
    padding-left: 0;
    padding-right: 0;
  }

  .image-11 {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .image-12 {
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .image-13 {
    text-align: center;
    padding: 0 10px 28px;
    display: block;
  }

  .image-14 {
    display: none;
  }

  .image-15 {
    padding-top: 35px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
  }

  .image-16 {
    padding-bottom: 18px;
  }

  .image-17 {
    padding-bottom: 53px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .image-18 {
    display: none;
  }

  .image-19 {
    padding: 29px 10px 20px;
    display: block;
  }

  .image-20 {
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .image-21 {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .container-15 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .container-16 {
    padding-top: 20px;
  }

  .image-24 {
    display: none;
  }

  .heading-24 {
        margin-top: 40px;
        margin-bottom: 30px;
        padding-top: 0;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 31px;
        line-height: 35px;
  }

  .heading-27 {
    padding-right: 0;
  }

  .heading-28 {
    font-size: 13px;
    line-height: 19px;
  }

  .paragraph-2, .paragraph-3, .paragraph-4, .paragraph-5, .paragraph-6 {
    font-size: 18px;
  }

  .cell-9 {
    grid-column-gap: 13px;
    grid-row-gap: 13px;
    border-width: 0;
    border: 4px solid #494949;
  }

  .cell-10 {
    border-width: 0;
        border: 4px solid #C3922E;
  }
    .cell-11 {
    border-width: 0;
        border: 4px solid #359fd0;
  }

  .image-27 {
    max-width: 80%;
    padding-bottom: 25px;
  }

  .quick-stack-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-18 {
        height: 200px;
        margin-top: 70px;
        margin-left: 40px;
        margin-right: 40px;
  }

  .heading-41 {
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
    line-height: 30px;
  }

  .quick-stack-7 {
    margin-bottom: 20px;
  }

  .list-item-2, .list-item-3, .list-item-4, .list-item-5, .list-item-6, .list-item-7, .list-item-8, .list-item-9, .list-item-10, .list-item-11, .list-item-12, .list-item-13 {
    padding-bottom: 10px;
  }

  .quick-stack-8 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-span-27 {
    font-weight: 500;
  }

  .bold-text {
    font-size: 15px;
  }

  .heading-43 {
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    margin-top: 10px;
    padding-left: 20px;
    padding-right: 21px;
    font-family: DM Sans, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
  }

  .image-31 {
    display: block;
    z-index: 999;
    margin-top: -60px;
    position: relative;
  }

  .image-32 {
    max-width: 90%;
  }

  .paragraph-8 {
    text-align: center;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 26px;
  }

  .quick-stack-9 {
    width: 260px;
    padding-top: 0;
    padding-left: 0;
  }

  .heading-25-copy {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 35px;
  }

  .image-34 {
    max-width: 93%;
    height: auto;
    aspect-ratio: 601/342;
  }

  .container-21 {
    margin-top: 23px;
    margin-left: 10px;
    margin-right: 10px
  }

  .heading-45 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 32px;
  }

  .heading-46 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 17px;
  }

  .quick-stack-10 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: auto;
    padding: 0;
  }

  .cell-14 {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }

  .cell-15, .cell-16, .cell-17, .cell-18, .cell-19 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#w-node-_65cab738-0078-bc8f-df93-fcf90a1a7956-bfd15f5f {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

#w-node-_05a841ff-7f82-67bc-b45f-e46a7f891bd5-bfd15f5f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-f3521110-a8f6-90b5-3ead-a28633bd7fd8-bfd15f5f, #w-node-_7467de12-ad72-1f36-c38a-3bdd53e872d5-bfd15f5f, #w-node-b8ee5bf3-9b51-5534-46d3-acab50903ce4-bfd15f5f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_4b36dff3-048a-d8a0-506c-57603bb778ad-bfd15f5f, #w-node-_9b323f14-d3f8-2246-eb64-e14fd0c72a39-bfd15f5f, #w-node-f756cf55-99ba-c608-26a8-ad22aff166a6-bfd15f5f, #w-node-a629660a-0ae2-4f88-51ec-a7e142a207aa-bfd15f5f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_15cc83ec-35b2-dde5-14c5-f539d41fd949-bfd15f5f {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
}

#w-node-_3b2bda65-122d-4b9e-275e-00d0782046d0-bfd15f5f {
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr;
}

#w-node-_5e2170f8-754a-9204-c00a-16cab85d2c2d-bfd15f5f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e31414e4-4cbe-a1a4-2960-b2c181bafa80-bfd15f5f, #w-node-_2e26ca14-cdfb-1fe8-54f5-16ce1264e13f-bfd15f5f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 479px) {
  #w-node-f3521110-a8f6-90b5-3ead-a28633bd7fd8-bfd15f5f {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-f3521110-a8f6-90b5-3ead-a28633bd7fda-bfd15f5f {
    order: -9999;
  }

  #w-node-_7467de12-ad72-1f36-c38a-3bdd53e872d5-bfd15f5f, #w-node-b8ee5bf3-9b51-5534-46d3-acab50903ce4-bfd15f5f, #w-node-e31414e4-4cbe-a1a4-2960-b2c181bafa80-bfd15f5f, #w-node-_2e26ca14-cdfb-1fe8-54f5-16ce1264e13f-bfd15f5f, #w-node-_9b323f14-d3f8-2246-eb64-e14fd0c72a39-bfd15f5f {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_9b323f14-d3f8-2246-eb64-e14fd0c72a3b-bfd15f5f {
    grid-row: span 2 / span 2;
  }

  #w-node-f756cf55-99ba-c608-26a8-ad22aff166a6-bfd15f5f, #w-node-a629660a-0ae2-4f88-51ec-a7e142a207aa-bfd15f5f, #w-node-_15cc83ec-35b2-dde5-14c5-f539d41fd949-bfd15f5f {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_5e2170f8-754a-9204-c00a-16cab85d2c2d-bfd15f5f {
    grid-template-rows: auto;
    grid-template-columns: .25fr;
  }
}

.accordion-container {
margin-top: 40px;
    width: 100%;
    padding-right: 40px;
    margin-left: 20px;
        margin-bottom: 82px;
}

.accordion-item {
  border: 1px solid #ffffff;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  background-color: transparent;
  transition: all 0.3s ease;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.accordion-title {
  font-family: Inter, sans-serif;
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

.accordion-icon {
  font-family: Inter, sans-serif;
  font-size: 24px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-text {
  font-family: Inter, sans-serif;
  font-size: 18px;
  color: #ffffff;
  padding: 0 24px 20px 24px;
  margin: 0;
  line-height: 1.6;
  opacity: 0.8;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-item:hover {
  border-color: #B3E3FF;
}

/* Menu link styles */
.cell-2 a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cell-2 a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hide on desktop */
@media screen and (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}

/* Estabilizar botões de reserva */
.btn-reservar-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  position: relative;
}

.btn-reservar-container .ticket-icon {
  display: inline-block;
  width: 1.2em;
  text-align: center;
}

/* Hide/Show mobile elements */
.hide-mobile {
  display: block;
}

.show-mobile-only {
  display: none;
}

/* Event location mobile */
.event-location-mobile {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 20px;
}

.event-mobile-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
  
  .show-mobile-only {
    display: block;
  }
  
  .event-location-mobile {
    padding: 0 20px 40px 20px;
  }
}



