.container-large {
    padding-left: 80px;
    padding-right: 80px;
}

.max-w-100vw {
    max-width: 100vw;
}

input:focus {
    outline: none;
}

/* Buttons pre-styles */

@media (min-width: 992px) {
    .faq-button-active {
        background-color: var(--primary-color) !important;
        color: var(--white) !important;
        border-color: var(--primary-color) !important;
    }
}

.custom-btn {
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    font-weight: 700;
}

.primary-button {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.primary-button:hover,
.primary-button-active {
    background: transparent;
    color: var(--primary-color);
}

.primary-outline-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.primary-outline-button:hover,
.primary-outline-button-active {
    background: var(--primary-color);
    color: var(--white);
}

.secondary-button {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.secondary-button:hover,
.secondary-button-active {
    background: transparent;
    color: var(--secondary-color);
}

.secondary-outline-button {
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.secondary-outline-button:hover,
.secondary-outline-button-active {
    background: var(--secondary-color);
    color: var(--white);
}

.white-to-red-button {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.white-to-red-button:hover,
.white-to-red-button-active {
    background: var(--primary-color);
    color: var(--white);
}

.red-to-white-button {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--white);
}

.red-to-white-button:hover,
.red-to-white-button-active {
    background: var(--white);
    color: var(--primary-color);
}

.tertiary-button {
    background: var(--white);
    color: var(--tertiary-color);
    border: 2px solid var(--tertiary-color);
}

.tertiary-button:hover,
.tertiary-button-active {
    background: var(--tertiary-color);
    color: var(--white);
}

.white-outline-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.white-outline-button:hover,
.white-outline-button-active {
    background: var(--white);
    color: var(--black);
}

.white-outline-to-red-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.white-outline-to-red-button:hover,
.white-outline-to-red-button-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* end buttons styles */

/* header styles */

.navbar-toggler {
    border: none !important;
}

.navbar-toggler-icon {
    background-image: none !important;
}

.offcanvas-header {
    padding-top: 30px;
}

.offcanvas {
    width: 80%;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    overflow: hidden;
}

.offcanvas-header .btn-close {
    background-image: none !important;
    width: fit-content;
    height: fit-content;
    transform: scaleX(-1);
    opacity: 1 !important;
}

.offcanvas-header .btn-close:focus {
    box-shadow: none !important;
}

.offcanvas-navlist {
    margin-top: 4rem;
    list-style: none;
    padding: 0;

    .nav-link {
        margin-bottom: 30px;
        font-weight: 700;
        color: var(--secondary-color);
        align-items: center;
        display: flex;
        font-size: 18px;
        gap: 10px;

        i {
            font-size: 25px;
        }
    }
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.hanging-header {
    z-index: 999;
    position: fixed;
    top: 1rem;
    width: 100%;
}

.header-body {
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
}

.questions-button {
    padding: 5px 20px;
}

.top-header {
    box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.40) !important;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
    margin-top: 35px;
    padding: 10px 80px;
    z-index: 2;
    background-color: var(--white);
    border-radius: 15px;
    color: var(--secondary-color);
    font-weight: 700;

    .nav-link {
        color: var(--secondary-color);
    }

    .navbar-nav {
        gap: 50px;
    }
}

.header-user-icon {
    font-size: 25px;
    margin-left: 55px;
    color: var(--secondary-color);
}

.header-buy-button {
    margin-right: 86px;
    padding: 5px 20px;
}

.attraction-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;

    button {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 15px;
        border: none;
        padding: 10px 20px;
    }

    .moderate-button {
        background-color: var(--quartary-color);
        color: var(--white);
    }

    .radical-button {
        background-color: var(--primary-color);
        color: var(--white);
    }

    .family-button {
        background-color: var(--quintary-color);
        color: var(--white);
    }

    .food-button {
        background-color: var(--yellow);
        color: var(--white);
    }

    .kids-button {
        background-color: var(--tertiary-color);
        color: var(--white);
    }
}

.attraction-card:hover {
    img,
    video {
        transform: scale(1.1);
    }
}

.pagination-row {
    margin-top: 35px;
}

@media (max-width: 992px) {
    .header-body {
        padding: 0px !important;
    }

    .hanging-header {
        padding: 0px 30px;
        top: -0.5rem;
    }

    .top-header {
        padding: 19px 32px;
        border-radius: 15px;
    }

    .navbar-brand img {
        max-width: 80%;
    }

    .bottom-header {
        padding: 5px 30px;

        .navbar-expand-lg {
            .container-fluid {
                flex-wrap: unset !important;
                gap: 10px;
            }
        }

        .navbar-nav {
            .tickets-button {
                padding: 4px 10px;
            }

            .passports-button {
                padding: 4px 10px;
            }
        }
    }
}

/* end header styles */

/* site styles */

.get-your-ticket-button {
    font-size: 1.5rem;
    margin-top: 50px;
    border-radius: 50px;
    padding: 15px 60px;
}

.group-discount-title h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.group-discount-images img {
    width: 100%;
    border-radius: 25px;
    transition: all 0.5s ease-in-out;
    z-index: -1;
    height: 550px;
    object-fit: cover;
}

.group-discount-images {
    margin-top: auto;
    margin-bottom: auto;
}

.group-discount-types p {
    opacity: 0.75;
    margin-left: 45%;
    margin-bottom: 0;
    width: fit-content;
    text-align: start;
    font-size: 3.45rem;
    font-family: "Neutronic", sans-serif;
    font-weight: 800;
    color: var(--secondary-color);
    cursor: pointer;
}


@media (min-width: 992px) {
    .group-discount-type:hover,
    .group-discount-types p:hover {
        p {
            opacity: 1;
        }
    }
}


.group-discount-type {
    display: flex;
    transition: all 0.2s ease-in-out;
}

.group-discount-container {
    margin-top: 239px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.bento-grid-container {
    position: relative;
    border-radius: 10px;

    img,
    video {
        border-radius: 10px;
        width: 100%;
        object-fit: cover;
        height: 360px;
    }
}

.bento-grid-container {
    .moderate span {
        color: var(--quartary-color);
    }

    .radical span {
        color: var(--primary-color);
    }

    .infant span {
        color: var(--tertiary-color);
    }

    .family span {
        color: var(--quintary-color);
    }

    .food span {
        color: var(--yellow);
    }
}

.bento-grid-container:hover {
    .bento-grid-overlay {
        opacity: 1;
    }
}

.bento-grid-overlay {
    transition: all 0.3s ease-in-out;
    opacity: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background-image: url("../assets/components/bento-card-overlay-1.svg");
    background-position: 0rem 0.5rem;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;

    h5 {
        color: var(--white);
        font-weight: 900;
        font-size: 2.5rem;
    }
}

.bento-grid-bg-component {
    padding: 0px;
    width: 100%;
}

.bento-grid-row {
    transform: translateY(-45%);
    top: 45%;
    left: 0px;
    width: 100%;
    position: absolute;
    padding-right: 64px !important;

    h3 {
        font-size: 4rem;
        color: var(--white);
        font-weight: 900;
    }
}

.bento-grid-box {
    position: relative;
    margin-top: -12rem;
}

.calendar-text img {
    width: 100%;
}

.calendar-text-content {
    margin-top: 30px;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 190px;
    padding-left: 80px;

    h2 {
        font-size: 3rem;
        font-weight: 800;
        color: var(--secondary-color);
    }

    p {
        font-size: 1.4rem;
    }
}

.month-btn {
    padding: 5px 15px;
    margin-right: 8px;
}

@media (max-width: 1536px) {
    .bento-grid-box {
        margin-top: -9rem;
    }
}

/* CALENDARIO */

.daterangepicker .drp-calendar {
    max-width: 100% !important;
}

.daterangepicker .calendar-table tbody th,
.daterangepicker .calendar-table tbody td {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px;
}

.daterangepicker .drp-calendar.left {
    padding: 0 !important;
}

.daterangepicker .calendar-table thead th,
.daterangepicker .calendar-table thead td {
    font-size: 1.8rem;
    font-family: "Neutronic", sans-serif;
    padding: 20px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.daterangepicker .drp-buttons {
    display: none !important;
}

.floating-room-card .daterangepicker .calendar-table td {
    pointer-events: none;
    cursor: default;
}

.floating-room-card .daterangepicker .calendar-table thead tr:first-child {
    display: none;
}

.floating-room-card .daterangepicker td.today span {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.floating-room-card .daterangepicker {
    position: relative !important;
    display: block !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 0 !important;
    box-shadow: none !important;
    width: 100%;
    border: none;
}

.daterangepicker.opensleft:after,
.daterangepicker:before {
    display: none !important;
    content: "" !important;
    border: none !important;
}

.month {
    display: none;
}

.table-condensed thead tr:first-child {
    display: none;
}

.table-condensed .disabled {
    text-decoration: none !important;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.floating-room-card .daterangepicker td[data-title$="c0"],
.floating-room-card .daterangepicker td[data-title$="c1"],
.floating-room-card .daterangepicker td[data-title$="c2"],
.floating-room-card .daterangepicker td[data-title$="c3"],
.floating-room-card .daterangepicker td[data-title$="c4"],
.floating-room-card .daterangepicker td[data-title$="c5"],
.floating-room-card .daterangepicker td[data-title$="c6"] {
    color: var(--quartary-color);
    /* vermelho suave como exemplo */
    font-weight: bold;
}

.floating-room-card .daterangepicker .holiday-date {
    color: var(--yellow) !important;
    /* vermelho suave como exemplo */
    font-weight: bold;
}

.months-container {
    padding-left: 30px;
}

.table-condensed .ends {
    color: #d3d2de !important;
}

.calendar-caption {
    margin-top: 60px;
    padding: 0px 55px;
    gap: 60px;
}

.caption-box {
    gap: 10px;
    display: flex;

    p {
        color: var(--secondary-color);
        margin: 0;
    }

    .caption-color {
        width: 25px;
        aspect-ratio: 1/1;
        border-radius: 5px;
    }

    .open {
        background-color: var(--quartary-color);
    }

    .closed {
        background-color: var(--primary-color);
    }

    .holiday {
        background-color: var(--yellow);
    }
}

.custom-page-text-container {
    .custom-page-text {
        display: flex;
        justify-content: center;
        font-size: 5.75rem;
        color: var(--tertiary-color);
        font-weight: 900;
        font-family: "Neutronic", sans-serif;
    }

    p:last-child {
        padding-left: 3.5rem;
    }

    p {
        margin-bottom: -2.5rem;
    }
}

@media (max-width: 992px) {
    .custom-page-text-container {
        p {
            margin-bottom: -1rem;
        }
    }
}

.custom-page-text-container {
    margin-top: 80px;
}

.custom-page-text img {
    position: absolute;
    right: -5%;
    top: 30%;
}

.become-influencer-swiper img {
    width: 100%;
}

.influencer-swiper {
    margin-bottom: -27rem;

    .swiper-slide {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .swiper-slide img {
        width: 70%;
        aspect-ratio: 8/12;
        object-fit: cover;
        border-radius: 10px;
    }

    .swiper-wrapper {
        transition-timing-function: linear !important;
    }
}

.rotate-left {
    img {
        transform: rotate(-10deg);
    }
}

.rotate-right {
    img {
        transform: rotate(10deg);
    }
}

.swiper-bottom {
    padding-top: 100px !important;
}

.become-influencer-button {
    margin-left: auto;
    margin-right: auto;
    padding: 15px 25px;
    border-radius: 30px !important;
    margin-top: 80px;
}

.faq-container {
    margin-top: -25rem;
    position: relative;
}

.faq-component-1 {
    width: 100%;
    z-index: 2;
}

.faqs-box {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
}

.faqs-list {
    overflow-y: scroll;
    max-height: 1000px;
    background-color: var(--secondary-color);
    position: relative;
    z-index: 3;
    padding: 70px 50px;
    border-radius: 10px;
    /* width: 88.4vw; */
}

.faq-itens {
    padding: 0px 125px;
}

.faqs-title {
    position: relative;
    z-index: 3;

    p {
        color: var(--white);
        font-size: 1.5rem;
        font-weight: 300;
        margin-bottom: 15px;
    }

    h2 {
        color: var(--white);
        font-size: 3rem;
        font-weight: 800;
    }
}

.faq-accordion {
    .accordion-item {
        background-color: var(--white) !important;
        margin-bottom: 20px;
        border-radius: 10px;
        --bs-accordion-active-bg: var(--white) !important;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

    .accordion-header button {
        border-radius: 10px;
        font-weight: 700;
        color: var(--secondary-color);
    }
}

.faq-filters {
    padding: 45px 115px;
}

.faq-button {
    border-radius: 10px;
    padding: 8px 10px;
    margin-bottom: 15px;
    margin-left: 12px;
}

.filter-active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.bento-grid-turtle {
    width: 250px;
    position: absolute;
    right: -0.5rem;
    top: -1.5rem;
    z-index: 3;
}

.faq-turtle {
    position: absolute;
    width: 300px;
    bottom: -50%;
    right: 0%;
    z-index: 2;
}

.follow-on-media {
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.follow-on-facebook-icon,
.follow-on-instagram-icon,
.follow-on-tiktok-icon {
    .brand-video-box {
        border-radius: 15px;
        opacity: 0;
    }
}

.follow-on-facebook-icon:hover,
.follow-on-instagram-icon:hover,
.follow-on-tiktok-icon:hover {
    .brand-video-box {
        opacity: 1;
    }
}

.follow-on-media-text {
    margin-bottom: 3.5rem;
    font-size: 5.75rem;
    font-weight: 900;
    color: var(--secondary-color);

    p {
        margin-bottom: -30px;
        font-family: "Neutronic", sans-serif;
    }

    p:last-child {
        margin-left: 6rem;
    }
}

.social-media-box i {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background-color: var(--secondary-color);
    font-size: 30px;
    aspect-ratio: 1/1;
    width: 100px;
    border-radius: 50%;
    position: relative;
    z-index: -1;
}

.brand-video-box {
    transition: all 0.3s ease-in-out;
    max-height: 200px;
    overflow: hidden;
    max-width: 150px;
}

.brand-video-box video {
    margin-top: 10px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}

.partners-swiper-container {
    margin-top: 8rem;
    margin-bottom: 15rem;
}

.partners-swiper {
    .swiper-slide img {
        object-fit: cover;
        width: 100%;
    }
}

.partners-swiper {
    .swiper-wrapper {
        transition-timing-function: linear !important;
    }
}

.marina-park-map-container {
    h2 {
        font-size: 4rem;
        font-weight: 800;
        color: var(--secondary-color);
        margin-bottom: 25px;
    }
}

/* Botões do mapa do parque */

.map-button-all {
    width: fit-content !important;
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.map-button-green {
    background-color: transparent;
    border: 2px solid var(--quartary-color);
    color: var(--quartary-color);
}

.map-button-red {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.map-button-yellow {
    background-color: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

.map-button-blue {
    color: var(--tertiary-color);
    border: 2px solid var(--tertiary-color);
    background-color: transparent;
}

.map-button-pink {
    color: var(--quintary-color);
    border: 2px solid var(--quintary-color);
    background-color: transparent;
}

.map-button-all:hover,
.map-button-all-active {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    border-color: var(--secondary-color) !important;
}

.map-button-green:hover,
.map-button-green-active {
    background-color: var(--quartary-color) !important;
    color: var(--white) !important;
    border-color: var(--quartary-color) !important;
}

.map-button-red:hover,
.map-button-red-active {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
}

.map-button-yellow:hover,
.map-button-yellow-active {
    background-color: var(--yellow) !important;
    color: var(--white) !important;
    border-color: var(--yellow) !important;
}

.map-button-blue:hover,
.map-button-blue-active {
    background-color: var(--tertiary-color) !important;
    color: var(--white) !important;
    border-color: var(--tertiary-color) !important;
    box-shadow: 0px 3px 28px 0px rgba(0, 0, 0, 0.05) !important;
}

.map-button-pink:hover,
.map-button-pink-active {
    background-color: var(--quintary-color) !important;
    color: var(--white) !important;
    border-color: var(--quintary-color) !important;
}

.marina-park-map-button {
    border-radius: 11px;
    padding: 8px 10px;
}

.map-button-caption {
    width: 0px;
    white-space: nowrap;
    position: absolute;
    max-width: fit-content;
    font-size: 16px;
    color: var(--white);
    overflow: hidden;
    font-weight: 600;
    background-color: #2d2959;
    padding: 0px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.map-index-button {
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 55px;
}

.map-button-caption-active {
    width: 300px !important;
    padding: 5px !important;
}

.container-map {
    padding: 0px 260px;
}

.map-1 {
    top: 45.5%;
    right: 5%;
}

.map-1-text {
    top: 46.5%;
    right: 10.5%;
}

.map-2 {
    top: 53.5%;
    right: 17%;
}

.map-2-text {
    top: 54.5%;
    right: 22.5%;
}

.map-3 {
    top: 74.5%;
    right: 37%;
}

.map-3-text {
    top: 75.5%;
    left: 63.5%;
}

.map-4 {
    top: 73.5%;
    right: 49%;
}

.map-4-text {
    top: 74.5%;
    right: 53.5%;
}

.map-5 {
    top: 65.5%;
    right: 60%;
}

.map-5-text {
    top: 67%;
    right: 65.5%;
}

.map-6 {
    top: 45.5%;
    right: 50%;
}

.map-6-text {
    top: 46.5%;
    right: 55.5%;
}

.map-7 {
    top: 45.5%;
    right: 95%;
}

.map-7-text {
    top: 46.5%;
    left: 5.5%;
}

.map-8 {
    top: 56.5%;
    right: 87%;
}

.map-8-text {
    top: 57.5%;
    left: 13.5%;
}

.map-9 {
    top: 37.5%;
    right: 78%;
}

.map-9-text {
    top: 38.5%;
    right: 83.5%;
}

.map-10 {
    top: 20.5%;
    right: 88%;
}

.map-10-text {
    top: 21.5%;
    left: 12.5%;
}

.map-11 {
    top: 14.5%;
    right: 72%;
}

.map-11-text {
    top: 15.5%;
    right: 77.5%;
}

.map-12 {
    top: 20.5%;
    right: 66%;
}

.map-12-text {
    top: 21.5%;
    right: 71.5%;
}

.map-13 {
    top: 18.5%;
    right: 54%;
}

.map-13-text {
    top: 19.5%;
    right: 60%;
}

.map-14 {
    top: 5.5%;
    right: 35%;
}

.map-14-text {
    top: 6.5%;
    right: 40.5%;
}

.map-15 {
    top: 25.5%;
    right: 35%;
}

.map-15-text {
    top: 26.5%;
    right: 40.5%;
}

.map-16 {
    top: 25.5%;
    right: 73%;
}

.map-16-text {
    top: 26.5%;
    right: 79%;
}

@media (max-width: 1536px) {
    .map-1 {
        top: 45%;
        right: 5%;
    }

    .map-1-text {
        top: 46%;
        right: 11.5%;
    }

    .map-2 {
        top: 53%;
        right: 18%;
    }

    .map-2-text {
        top: 54%;
        right: 24.5%;
    }

    .map-3 {
        top: 74%;
        right: 37%;
    }

    .map-3-text {
        top: 75%;
        left: 63.5%;
    }

    .map-4 {
        top: 73%;
        right: 50%;
    }

    .map-4-text {
        top: 74%;
        right: 56.5%;
    }

    .map-5 {
        top: 65%;
        right: 60%;
    }

    .map-5-text {
        top: 66.5%;
        right: 66.5%;
    }

    .map-6 {
        top: 45%;
        right: 50%;
    }

    .map-6-text {
        top: 46%;
        right: 56.5%;
    }

    .map-7 {
        top: 45%;
        right: 95%;
    }

    .map-7-text {
        top: 46%;
        left: 5.5%;
    }

    .map-8 {
        top: 56%;
        right: 87%;
    }

    .map-8-text {
        top: 57%;
        left: 13.5%;
    }

    .map-9 {
        top: 37%;
        right: 78%;
    }

    .map-9-text {
        top: 38%;
        right: 84.5%;
    }

    .map-10 {
        top: 20%;
        right: 88%;
    }

    .map-10-text {
        top: 21%;
        left: 12.5%;
    }

    .map-11 {
        top: 14%;
        right: 72%;
    }

    .map-11-text {
        top: 15%;
        right: 78.5%;
    }

    .map-12 {
        top: 20%;
        right: 65%;
    }

    .map-12-text {
        top: 21%;
        right: 71.5%;
    }

    .map-13 {
        top: 18%;
        right: 53%;
    }

    .map-13-text {
        top: 19%;
        right: 60%;
    }

    .map-14 {
        top: 5%;
        right: 35%;
    }

    .map-14-text {
        top: 6%;
        right: 41.5%;
    }

    .map-15 {
        top: 25%;
        right: 35%;
    }

    .map-15-text {
        top: 26%;
        right: 41.5%;
    }

    .map-16 {
        top: 25%;
        right: 73%;
    }

    .map-16-text {
        top: 26%;
        right: 79%;
    }
}

/* Botões do mapa do parque */

.map-component {
    width: 100%;
    margin-top: 6rem;
}

.map-container {
    top: 11.5rem;
    right: 0;
}

.map-image {
    width: 100%;
}

.marina-loc-button {
    margin-top: 80px;
    padding: 25px 80px;
    border-radius: 50px;
    font-size: 1.5rem;
}

.desktop-discount-image {
    position: absolute;
}

.banner-swiper {
    .swiper-slide img {
        max-height: 100vh;
        height: 100vh;
        width: 100%;
        object-fit: cover;
    }

    .swiper-slide video {
        max-height: 100vh;
        height: 100vh;
        width: 100%;
        object-fit: cover;
        filter: brightness(0.8);
    }

    .swiper-pagination-bullet {
        background: var(--white) !important;
    }

    .swiper-pagination-bullet-active {
        background: var(--primary-color) !important;
    }
}

.attraction-content {
    z-index: 5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);

    h1 {
        font-size: 64px;
        font-weight: 900;
    }

    p {
        font-size: 24px;
        font-weight: 600;
    }
}

.attractions-bento-container {
    padding: 0;
    position: relative;

    .nina-image {
        position: absolute;
        z-index: 5;
        width: 120px;
        top: 16rem;
        left: 88vw;
    }
}

.bento-grid-attraction-row {
    width: 100%;
    background-image: url("../assets/components/attraction-bento-m-b.svg");
    background-position: 0rem -8rem;
    padding-bottom: 18rem;
}

.bento-grid-attractions-row {
    background-image: url("../assets/components/attractions-red-component.svg");
    background-position: 0rem -10rem;

    h2 {
        color: var(--white);
        font-size: 4rem;
        font-weight: 900;
    }
}

.bento-grid-attractions-row,
.bento-grid-attraction-row {
    position: relative;
    padding-top: 15rem;
    background-size: cover;
    background-repeat: no-repeat;

    img,
    video {
        object-fit: cover;
        transition: all 0.3s ease-in-out;
    }

    .attraction-radical img,
    .attraction-moderate img,
    .attraction-family img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    .first-col {
        max-height: 70vh;
    }

    .attraction-food img {
        height: 100%;
        width: 100%;
        max-height: 385px;
        object-fit: cover;
    }

    .attraction-kids video {
        width: 100%;
        height: 100%;
        max-height: 420px;
        object-fit: cover;
    }
}

.attraction-kids {
    padding-left: 0 !important;
}

.attraction-container img {
    filter: brightness(0.8);
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.attraction-container {
    position: relative;
    margin-bottom: 10px;

    .content {
        bottom: 15px;
        left: 20px;
        position: absolute;
        color: var(--white);
        font-weight: 700;
    }

    .black-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.5)
        );
        border-radius: 10px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40%;
        z-index: 1;
    }
}

.attraction-container {
    border-radius: 10px;
    overflow: hidden;

    img {
        transition: all 0.3s ease-in-out;
    }
}

.attraction-container:hover img {
    transform: scale(1.1);
}

.attractions-video-container {
    margin-top: -0rem;
}

.attractions-grid-container {
    margin-top: 180px;

    .map-buttons-swiper {
        margin-bottom: 50px;
    }

    h2 {
        margin-bottom: 35px;
        color: var(--secondary-color);
        font-weight: 900;
        font-size: 4rem;
    }
}

.custom-pagination .page-link {
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    font-weight: 700;
    padding: 6px 14px;
}

.custom-pagination .page-link:hover {
    transform: translateY(-2px);
}

.custom-pagination .page-link:focus {
    outline: none;
    box-shadow: none;
}

.custom-pagination .active span {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    border-radius: 6px;
}

.custom-pagination .text-muted {
    display: none;
}

.custom-pagination .page-link {
    color: var(--secondary-color);
    position: relative;
}

.custom-pagination .page-item:first-child .page-link,
.custom-pagination .page-item:last-child .page-link {
    color: transparent;
    position: relative;
}

.custom-pagination .page-item:first-child .page-link::after,
.custom-pagination .page-item:last-child .page-link::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    color: var(--primary-color);
}

.custom-pagination .page-item:last-child .page-link::after,
.custom-pagination .page-item:first-child .page-link::after {
    content: "";
}

.custom-pagination .page-item:first-child .page-link::before {
    content: "\f104";
    font-size: 15px;
    font-family: "Font Awesome 6 Free";
    color: var(--secondary-color);
}

.custom-pagination .page-item:last-child .page-link::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 15px;
    color: var(--secondary-color);
}

.photo-gallery-swiper {
    overflow: visible !important;

    .swiper-slide {
        img {
            width: 100%;
            height: 630px;
            object-fit: cover;
            border-radius: 50px;
        }
    }

    .swiper-pagination {
        bottom: -30px !important;
        display: flex;
        align-items: center;
        justify-content: center;

        .swiper-pagination-bullet {
            transition: all 0.3s ease-in-out;
            height: 10px;
            width: 10px;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--primary-color);
            height: 15px;
            width: 15px;
        }
    }
}

.swiper-with-fade {
    position: relative;
}

.side-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    z-index: 5;
    pointer-events: none;
}

.side-fade-left {
    left: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0)
    );
}

.side-fade-right {
    right: 0;
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0)
    );
}

.swiper-with-fade .swiper-pagination {
    z-index: 10;
}

.photo-gallery-container {
    h2 {
        font-weight: 900;
        margin-bottom: 20px;
        color: var(--secondary-color);
        font-size: 4rem;
    }
}

.history-container {
    padding-left: 0;
    padding-right: 0;
    background-image: url("../assets/components/home-bento-bg.svg");
    background-repeat: no-repeat;
    background-position: 0rem -34rem;
    background-size: cover;
    padding-top: 15rem;
    padding-bottom: 54rem;
    background-color: transparent;
    margin-top: -10rem;

    h2 {
        color: var(--white);
        font-weight: 900;
        font-size: 4rem;
        margin-bottom: 3rem;
    }
}

.history-container-bg {
    position: relative;
    background-color: var(--primary-color);
    border-radius: 15px;
}

.history-content {
    pointer-events: none;
    margin-top: -1rem;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 80px 40px;
    height: 80vh;
    -ms-overflow-style: none;
    scrollbar-width: none;

    p {
        font-size: 20px;
    }
}

.history-content::-webkit-scrollbar {
    display: none;
}

.history-images-box {
    max-width: 62%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 36%;
}

.history-overlay-2 {
    border-radius: 15px;
    z-index: 5;
    position: absolute;
    width: 100%;
    height: 80px;
    background: linear-gradient(180deg, rgba(219, 6, 70, 0) 0%, #db0646 100%);
    left: 0;
    bottom: 0;
    width: 33%;
}

.history-image {
    height: 100%;
    object-fit: cover;
    width: 100%;
    position: absolute;
    border-radius: 15px;
    left: 0;
    top: 0;
}

.joker-image {
    opacity: 0;
    width: 90%;
}

.history-content::-webkit-scrollbar {
    display: none;
}

.section-1,
.section-2 {
    color: var(--white);

    h3 {
        font-weight: 900;
        font-size: 2.5rem;
    }
}

.about-us-workers {
    margin-top: 5rem;
}

@media (min-width: 992px) {
    .history-row {
        height: 1500px !important;
        max-height: 1500px !important;
    }

    .about-us-workers {
        margin-top: -64rem;
    }
}

.about-us-workers-image {
    position: relative;
    text-align: center;

    p {
        margin-left: 105px;
        margin-right: 100px;
        margin-top: 10px;
        font-size: 1rem;
        color: var(--secondary-color);
    }
}

.about-us-workers-image .image-1,
.about-us-workers-image .image-3 {
    position: relative;
    width: 100%;
    border-radius: 15px;
}

.about-us-workers-image .image-2,
.about-us-workers-image .image-4 {
    position: absolute;
    width: 20%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
}

.about-us-workers-image .image-2 {
    left: 85%;
    top: 73%;
}

.about-us-workers-image .image-4 {
    left: -5%;
    top: 75%;
}

.photo-gallery-swiper {
    .swiper-button-prev::after,
    .swiper-button-next::after {
        display: none;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: var(--primary-color);
        font-size: 35px;
    }

    .swiper-button-prev {
        left: 50px;
    }

    .swiper-button-next {
        right: 50px;
    }
}

.about-us-workers-text {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 400;
    padding-right: 3rem;
    padding-left: 2rem;
}

.faq-page-container {
    margin-top: -15rem;
}

.tickets-value {
    margin-top: 160px;

    .gy-3 {
        padding-left: 0.9rem;
    }

    .title {
        margin-bottom: 30px;
        text-align: center;
        color: var(--secondary-color);

        h2 {
            font-size: 3rem;
            font-weight: 800;
        }

        p {
            font-size: 1.5rem;
            font-weight: 600;
        }
    }
}

.ticket-container {
    display: flex;
    position: relative;
    justify-content: center;
    aspect-ratio: 1/1;
    text-align: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;

    h3 {
        color: var(--white);
        font-size: 1.5rem;
        font-weight: 900;
    }

    .ticket-old-value {
        text-decoration: line-through;
        color: var(--white);
    }

    .ticket-new-value {
        color: var(--yellow);
        font-size: 1.5rem;
        font-weight: 900;
    }

    .content {
        position: relative;
        z-index: 2;
        height: fit-content;
    }
}

.ticket-banner {
    position: relative;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 15px;

    h3 {
        color: var(--white);
        font-weight: 900;
        font-size: 2rem;
        margin-top: auto;
        position: relative;
        z-index: 2;
    }
}

.black-overlay,
.purple-overlay {
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.black-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.2)
    );
}

.purple-overlay {
    background: linear-gradient(
        to bottom,
        rgba(45, 41, 89, 0),
        rgba(45, 41, 89, 0.8)
    );
}

.tickets-faq {
    margin-top: 140px;
}

.tickets-faq h3 {
    margin-top: 25px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-size: 3rem;
    font-weight: 900;
}

.tickets-faq p {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
}

.tickets-faq li {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.policy-container {
    padding-right: 25rem !important;
    color: var(--secondary-color);

    h1 {
        font-weight: 900;
    }
}

.select-policy {
    margin-top: 30px;
    margin-bottom: 30px;
}

.select-policy .select-policy-button {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.rotate-div {
    border-radius: 15px;
    padding: 20px;
    margin-top: 100px;
    text-align: center;
    border: 5px solid var(--primary-color);
    transform: rotate(-1deg);

    h2 {
        font-size: 3.5rem;
        color: var(--secondary-color);
        font-weight: 700;
    }
}

.turtles-img {
    position: absolute;
    top: -10%;
    left: 0%;
    z-index: 5;
    width: 150px;
    height: 150px;
}

.secure-and-fun {
    margin-bottom: -5rem;
}

.secure-and-fun-title-2 h2 {
    margin-top: 4rem;
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.secure-and-fun-text p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 2rem;
    margin-top: 31px;
}

.secure-and-fun-image img {
    width: 100%;
    border-radius: 15px;
    margin-top: 30px;
}

.city-hall-permit {
    background-image: url("../assets/components/alvara-bg-figma.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 23rem 80px;
}

.city-permit-container {
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 4px solid #fff;
    aspect-ratio: 1/1;
    padding: 0px 50px;

    .content {
        text-align: center;
        font-size: 1.5rem;
        color: var(--white);
        font-family: "Neutronic", sans-serif;
        font-weight: 600;

        i {
            font-size: 3.5rem;
            color: var(--yellow);
        }
    }
}

.turtle-in-slide-text {
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Aileron;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.48px;
    padding-right: 110px;
}

.turtle-in-slide {
    padding-top: 5rem;
    padding-bottom: 12rem;
}

.secure-video-container {
    margin-top: -35rem;
}

.secure-get-your-ticket {
    margin-top: -8rem;
}

.contact-info-container {
    width: 100%;
    padding: 0px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    aspect-ratio: 1/1;
    border-radius: 10px;
    border: 4px solid var(--Color-2, #2d2959);

    p {
        color: var(--secondary-color);
        font-weight: 700;
        font-size: 1.2rem;
    }

    i {
        color: var(--primary-color);
        font-size: 52px;
        margin-bottom: 25px;
    }

    .fa-whatsapp {
        font-size: 80px !important;
    }
}

.contact-info {
    padding: 120px 400px;
}

@media (max-width: 1700px) {
    .contact-info {
        padding: 120px 250px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
}

.contact-form-input {
    margin-bottom: 15px;
    border: 2px solid var(--secondary-color);
    padding: 15px 20px;
    border-radius: 10px;
    color: var(--secondary-color);
}

.contact-form-input::placeholder {
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-form-textarea {
    padding: 10px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    resize: none;
}

.contact-form-textarea::placeholder {
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-form-button {
    margin-top: 15px;
    padding: 10px;
}

.contact-form-container {
    h1 {
        color: var(--secondary-color);
        font-weight: 900;
    }
}

.form-turtle {
    right: 0%;
    top: -8%;
}

.notebook-container {
    padding-right: 15rem;
    padding-top: 5rem;
    padding-bottom: 10rem;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0rem 0rem;
    background-size: contain;
    background-image: url("../assets/components/contact-form-component.svg");
}

.notebook-container img {
    width: 65vw;
    margin-left: -5rem;
    transform: rotate(-32deg);
}

.notebook-container h2 {
    position: absolute;
    left: 17%;
    top: 14%;
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
}

.contact-video-container {
    margin-top: -15rem;
}

.contact-video-container .second-vector {
    top: 0rem;
}

.video-deco-container {
    overflow: hidden;
    position: relative;
    z-index: -5;

    .video-wave-1 {
        position: absolute;
        bottom: -30%;
        width: 100%;
    }

    .video-wave-2 {
        position: absolute;
        top: -15%;
        width: 100%;
    }
}

.home-video-deco {
    margin-top: -30rem;
}

.security-video-deco {
    margin-top: -33rem;
}

.influencer-steps {
    margin-top: -9rem;
    display: flex;
    align-items: center;
    aspect-ratio: 1/1;
    background-image: url("../assets/components/influencer-red-component.svg");
    background-position: 0rem -8rem;
    background-size: cover;
    background-repeat: no-repeat;

    h1 {
        color: var(--white);
        font-size: 3rem;
        font-weight: 900;
        margin-bottom: 51px;
    }

    p {
        font-weight: 700;
        color: var(--white);
        font-size: 1.25rem;
        margin: 0;
    }

    i {
        color: var(--secondary-color);
        font-size: 3.5rem;
    }

    .step-col {
        gap: 21px;
        margin-bottom: 51px;
        align-items: center;
        display: flex;
    }
}

.attention-step {
    max-width: 630px;
    bottom: 18%;
    left: 5%;

    p {
        color: var(--secondary-color);
    }

    h3 {
        color: var(--tertiary-color);
        font-weight: 900;
        font-size: 3rem;
    }
}

.influencer-page-form {
    margin-top: -22rem;
    padding-top: 20rem;
    padding-bottom: 20rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../assets/components/purple-component-1.svg");

    h1 {
        color: var(--primary-color);
        font-weight: 900;
        font-size: 4rem;
        line-height: 53px;
    }
}

.mockup {
    position: relative;
    transform: rotate(14.563deg);
    margin-left: -30%;
    width: 100%;
}

.base {
    display: block;
    width: 100%;
    height: auto;
}

.mockup {
    --phone-left: 52.8%;
    --phone-top: -11%;
    --phone-width: 39.2%;
}

.screen,
.bezel {
    position: absolute;
    left: var(--phone-left);
    top: var(--phone-top);
    width: var(--phone-width);
    height: auto;
    aspect-ratio: 9/16;
}

.screen {
    width: var(--phone-width);
    height: 100%;
    object-fit: cover;
    -webkit-mask: url("../assets/mao-celular-branco.png") no-repeat center /
        contain;
    mask: url("../assets/celular-branco.png") no-repeat center / contain;
}

.bezel {
    pointer-events: none;
    z-index: 2;
}

.attraction-show-card {
    border-radius: 10px;
    position: relative;

    img {
        border-radius: 10px;
    }

    .attraction-title {
        z-index: 2;
        width: 80%;
        position: absolute;
        bottom: 30px;
        left: 30px;

        h1 {
            font-size: 3rem;
            color: var(--white);
            font-weight: 900;
        }

        p {
            font-size: 20px;
            color: var(--white);
            font-weight: 600;
        }
    }
}

.attraction-col {
    padding-left: 0 !important;
    padding-bottom: 5px !important;
    padding-right: 12px !important;
}

.faq-page-turtle {
    top: -12rem !important;
}

@media (min-width: 1536px) {
    .influencer-steps {
        margin-top: -11.5rem;
    }
}

@media (min-width: 922px) {
    .faqs-box {
        padding-right: 180px;
        padding-left: 180px;
    }

    .faq-accordion-item {
        .accordion-body {
            max-width: 75%;
        }
    }

    #attractions-grid {
        padding-right: 68px;
    }

    .map-buttons-swiper {
        margin-left: 0 !important;
    }

    .map-buttons-swiper .swiper-slide {
        width: fit-content !important;
    }
}

.breakpoint-1,
.breakpoint-2,
.breakpoint-3 {
    display: inline-block;
}

.bento-mobile-text {
    color: var(--white);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;

    .green {
        color: var(--quartary-color);
    }

    .red {
        color: var(--primary-color);
    }

    .blue {
        color: var(--tertiary-color);
    }

    .pink {
        color: var(--quintary-color);
    }

    .yellow {
        color: var(--yellow);
    }

    h5 {
        font-weight: 900;
    }
}

.nina-surfing {
    position: absolute;
    z-index: 2;
    right: 5rem;
    top: 0px;
}

@media (max-width: 992px) {
    .bento-grid-attractions-row {
        padding-top: 3rem;
        background-image: url("../assets/components/attraction-bento-m.svg");

        h2 {
            color: var(--white);
            font-weight: 900;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
    }

    .attraction-show-card {
        .attraction-title {
            h1 {
                font-size: 2rem;
            }
        }
    }

    .bento-grid-attraction-row {
        background-image: url("../assets/components/attraction-bento-m-b-mobile.svg");
        background-position: 0rem -3rem;
    }

    .influencer-steps {
        padding-bottom: 20rem;
        margin-bottom: 10rem;
        margin-top: 0;
        background-position: 0 -10rem;
        background-image: url("../assets/components/attraction-bento-m.svg");

        h1 {
            margin-top: 3rem;
            text-align: start;
            font-size: 2rem;
        }

        p {
            font-size: 1.1rem;
        }

        .attention-step {
            bottom: -6%;
        }
    }

    .influencer-page-form {
        margin-top: 10rem;
        padding-top: 0;
        background-image: url("../assets/components/purple-mobile-component.svg");
        background-position: 0 16rem;
        margin-bottom: -22rem;
    }

    .mockup {
        width: 150%;
        margin-left: -65%;
    }

    .notebook-container h2 {
        font-size: 40px;
        left: 7%;
    }

    .notebook-container img {
        width: 100vw;
        transform: rotate(0);
        margin-left: 0;
    }

    .contact-info {
        padding: 120px 30px;

        i {
            font-size: 40px !important;
        }

        .fa-whatsapp {
            font-size: 40px !important;
        }
    }

    .security-video-deco {
        margin-top: -5rem;
    }

    .secure-get-your-ticket {
        margin-top: 3rem;
    }

    .turtle-in-slide {
        padding-top: 30px;
        margin-bottom: -75px;
        padding-bottom: 0rem;
    }

    .turtle-in-slide-text {
        color: var(--secondary-color);
        padding-top: 90px;
        padding-bottom: 150px;
        padding-right: 0;
    }

    .secure-and-fun {
        margin-bottom: 2rem;
    }

    .secure-video-container {
        margin-top: 0 !important;

        .second-vector {
            top: -4rem;
        }
    }

    .city-hall-permit {
        background-image: url("../assets/components/permit-component-m.svg");
        background-position: 0 0;
        padding-top: 15rem;
        padding-left: 60px;
        padding-right: 60px;
        padding-bottom: 80px;
    }

    .city-permit-container {
        padding: 0px 30px;

        .content {
            font-size: 1rem;

            i {
                font-size: 2rem;
                margin-top: 15px;
            }
        }
    }

    .turtles-img {
        width: 80px;
        height: 80px;
        top: 15%;
    }

    .secure-and-fun-title-2 {
        h2 {
            font-size: 1.5rem;
            text-align: start;
        }
    }

    .rotate-div {
        h2 {
            font-size: 1.5rem;
        }
    }

    .secure-and-fun-text {
        p {
            font-size: 1.115rem;
            text-align: start;
        }
    }

    .policy-container {
        padding-right: 30px !important;
    }

    .ticket-col {
        padding-left: 0;
        padding-right: 0;
    }

    .faq-page-container {
        margin-top: -5rem !important;
    }

    .about-us-workers-image .image-2 {
        left: 85%;
        top: 60%;
    }

    .about-us-workers-image .image-4 {
        left: -6%;
        top: 60%;
    }

    .about-us-workers-text {
        margin-bottom: 20px;
    }

    .history-mobile-title {
        padding-top: 80px;
        padding-right: 40px;
        padding-left: 1.8rem;
        background-image: url("../assets/components/purple-mobile-component.svg");
        background-size: cover;
        background-position: 0rem -20rem;
        background-repeat: no-repeat;
        height: 300px;

        h2 {
            font-size: 2.5rem;
            color: var(--yellow);
            margin-bottom: 0;
            font-weight: 900;
        }

        h4 {
            font-size: 1.5rem;
            color: var(--white);
            font-weight: 900;
        }
    }

    .about-us-workers-text {
        text-align: center;
        padding: 0;
    }

    .history-container {
        margin-top: 0;
        padding: 0;
        background-image: none;
    }

    .history-content {
        pointer-events: all;
        height: unset;
    }

    .history-swiper {
        position: relative;
        margin-bottom: 43px;

        .swiper-slide img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 10px;
        }
    }

    .section-1,
    .section-2 {
        color: var(--white);
        font-size: 1rem;

        h3 {
            font-weight: 900;
            font-size: 2rem;
        }
    }

    .custom-pagination .page-item:first-child .page-link::after {
        content: "";
        font-size: 15px;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
    }

    .custom-pagination .page-item:last-child .page-link::after {
        content: "";
        font-family: "Font Awesome 6 Free";
        font-size: 15px;
        font-weight: 900;
    }

    .bento-grid-box {
        margin-top: -10rem;
    }

    .bento-grid-container {
        height: 100%;

        img,
        video {
            height: 100%;
            width: 100%;
        }
    }

    .bento-grid-row {
        transform: translateY(0);
        top: 10%;
        padding-right: 30px !important;
    }

    .bento-grid-row .col-lg-7 {
        height: 190px;
    }

    .bento-grid-row .col-lg-6 {
        height: 260px;
    }

    .bento-grid-row .col-lg-5 {
        height: 400px;
    }

    .bento-grid-row .col-lg-3 {
        height: 360px;
    }

    .attractions-grid-video-container {
        margin-top: 2rem !important;

        .second-vector {
            top: -4rem;
        }
    }

    .group-discount-types {
        position: relative;
    }

    .group-discount-type:hover,
    .group-discount-types p:hover {
        transform: translateX(0);

        p {
            transform: translateX(0);
        }
    }

    .group-discount-type-active {
        transform: translateX(2rem);
    }

    .group-discount-types p {
        margin-left: 0;
        font-size: 1.5rem;
        white-space: nowrap;
    }

    .video-container {
        margin-top: 130vh;
    }

    .get-your-ticket-container {
        margin-left: -14px;

        h1 {
            font-size: 2.5rem;
        }

        .mstart-2 {
            margin-left: 15px;
        }

        .mstart-1 {
            margin-left: -15px;
        }
    }

    .group-discount-container {
        margin-top: 20px;
    }

    .group-discount-types {
        margin-top: 30px;
    }

    .group-discount-title h3 {
        font-size: 1.6rem;
    }

    .active-group-type {
        transform: translateX(30px);
    }

    .daterangepicker .calendar-table thead th,
    .daterangepicker .calendar-table thead td {
        font-size: 1rem;
    }

    .calendar-caption {
        margin-top: 20px;
        padding: 0px 0px;
        gap: 30px;
    }

    .calendar-container {
        margin-top: 35px;
        max-width: 100vw;
    }

    .caption-box {
        display: flex;
        align-items: center;
        font-size: 0.7rem;

        .caption-color {
            width: 20px;
            aspect-ratio: 1/1;
        }
    }

    .calendar-text-content {
        max-width: 100vw;
        padding-right: 100px;
        padding-left: 40px;
        margin-top: 0;

        h2 {
            font-size: 1.5rem;
        }

        p {
            font-size: 1rem;
        }
    }

    .become-influencer-container {
        margin-top: 5rem;
    }

    .faqs-box {
        transform: translateX(0);
        top: 10%;
    }

    .influencer-swiper {
        margin-bottom: -35rem;

        .swiper-slide img {
            max-height: 290px;
            aspect-ratio: 9/16;
        }
    }

    .custom-page-text-container {
        .custom-page-text {
            font-size: 2rem;
            margin-bottom: 3rem;
        }
    }

    .custom-page-text-container {
        margin-top: 30px;
    }

    .faq-container {
        margin-top: 0;
    }

    .calendar-caption {
        gap: 20px;
        justify-content: center;
    }

    .month-btn {
        font-size: 0.65rem;
    }

    .become-influencer-form {
        margin-top: 4rem;
    }

    .influencer-form-input {
        background-color: var(--white);
        color: var(--secondary-color);
        border: none;
        border-radius: 12px;
        padding: 15px 18px;
        margin-bottom: 10px;
    }

    .influencer-form-input::placeholder {
        color: var(--secondary-color);
        font-weight: 700;
        resize: none;
    }

    .influencer-form-button {
        padding: 15px 0px;
    }

    .faq-filters {
        padding: 0px 12px;
    }

    .faqs-list {
        padding: 30px 15px;
    }

    .faq-itens {
        padding: 0px 15px;
    }

    .faq-button {
        width: 100%;
        margin-left: 0;
    }

    .faqs-title {
        h2 {
            font-size: 2rem;
        }

        p {
            font-size: 1.2rem;
        }
    }

    .faq-accordion {
        .accordion-header button {
            font-size: 12px;
        }
    }

    .follow-on-media-text {
        font-size: 2.2rem;

        p {
            white-space: nowrap;
        }

        p:last-child {
            margin-left: 0px;
        }
    }

    .partners-swiper-container {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .container-map {
        padding: 0px 30px;
    }

    .map-index-button {
        font-size: 16px;
        width: 30px;
    }

    .marina-park-map-container {
        h2 {
            font-size: 2rem;
            margin-top: 50px;
            text-align: center;
        }
    }

    .marina-park-map-button {
        font-size: 14px;
        height: 100%;
        width: 100%;
    }

    .daterangepicker .calendar-table thead th,
    .daterangepicker .calendar-table thead td {
        padding: 0px;
    }

    .months-container {
        padding-left: 0px;
    }

    .faq-container {
        background-image: url("../assets/components/faq-red-component.svg");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 120px 0px;
    }

    .faqs-box {
        position: relative;
    }

    .photo-gallery-swiper {
        .swiper-slide {
            img {
                height: 230px;
                border-radius: 20px;
            }
        }
    }

    .photo-gallery-container {
        h2 {
            font-size: 2.8rem;
        }
    }

    .home-video-deco {
        margin-top: -4rem;
    }

    .bento-grid-m-2 {
        bottom: 0;
        left: 0;
    }

    .bento-grid-m-3 {
        bottom: -1rem;
        right: 0;
    }

    .bento-grid-m-4 {
        bottom: -2rem;
        left: 0;
    }

    .bento-grid-m-5 {
        bottom: -2rem;
        right: 0;
    }

    .bento-grid-container img:first-child,
    video:first-child {
        border-radius: 15px;
    }

    /* .discount-mobile-display {
        opacity: 0;
        aspect-ratio: 16/9;

        position: fixed;
        bottom: 10px;
        right: 10px;
        border-radius: 15px;
        z-index: 2;
        object-fit: cover;
    } */

    .get-your-ticket-button {
        font-size: 1rem;
        margin-top: 0;
        border-radius: 50px;
        padding: 15px 60px;
    }

    .get-your-ticket {
        padding-left: 12px !important;
        padding-right: 12px !important;

        .custom-page-text {
            font-size: 2.2rem;
        }
    }

    .discount-mobile-display {
        opacity: 0;
        border-radius: 15px;
        z-index: 0;
        position: fixed;
        width: 260px;
        max-width: 60%;
        aspect-ratio: 16/9;
        top: 73vh;
        left: 34vw;
        object-fit: cover;
    }

    .type-active {
        z-index: 10;

        p {
            opacity: 1;
        }
    }

    .bento-grid-attraction-row {
        background-image: url("../assets/components/attraction-bento-m-b-mobile.svg");
    }

    .bento-grid-attractions-row {
        background-image: url("../assets/components/attraction-bento-m.svg");
    }

    .bento-grid-attractions-row,
    .bento-grid-attraction-row {
        margin-bottom: 25px;
        position: relative;
        padding-top: 8rem;
        background-size: cover;
        background-position: 0rem -12rem;
        background-repeat: no-repeat;

        h2 {
            color: var(--white);
            font-weight: 900;
            font-size: 2.5rem;
        }
    }

    .bento-grid-overlay {
        opacity: 1;

        h5 {
            font-size: 2rem;
        }
    }

    .all-button {
        height: 41px;
    }

    .attractions-grid-container {
        margin-top: 0px;

        h2 {
            font-size: 2.5rem;
        }
    }

    .attractions-grid-component {
        bottom: -5em;
    }

    .faq-page-container {
        background-image: url("../assets/components/attraction-bento-m.svg");
        padding: 160px 0px;
    }

    .tickets-value {
        .title h2 {
            font-size: 2.5rem;
        }
    }

    .history-container .container-large {
        padding: 0;
    }

    .history-container-bg {
        border-radius: 15px;
        width: 100%;
    }

    .nina-surfing {
        display: none;
    }

    .history-image {
        position: relative;
    }

    .marina-loc-button {
        font-size: 1rem;
        padding: 20px 50px;
        margin-top: 15px;
    }

    .attraction-radical {
        aspect-ratio: 1/1;
    }

    .attraction-moderate {
        aspect-ratio: 1/1;
    }

    .attraction-col {
        padding-left: 0 !important;
        padding-bottom: 5px !important;
        padding-right: 0 !important;
    }

    .daterangepicker .calendar-table tbody th,
    .daterangepicker .calendar-table tbody td {
        font-size: 1.4rem;
        font-weight: 600;
        padding: 10px;
    }

    .tickets-faq h3 {
        color: var(--secondary-color);
        font-size: 2rem;
        font-weight: 900;
    }

    .tickets-faq li {
        font-size: 1.2rem;
    }

    .tickets-faq p {
        color: var(--secondary-color);
        font-size: 1.2rem;
        font-weight: 900;
    }

    .become-influencer-button {
        font-size: 1rem !important;
    }

    .map-buttons-swiper {
        .swiper-slide {
            width: fit-content !important;
        }
    }

    .mono-slide-banner {
        height: 100vh !important;
        img {
            height: 100vh !important;
        }
    }

    .bento-grid-bg-component {
        max-height: 1450px;
        width: 135vw;
    }

    .bento-grid-box {
        margin-top: -5rem;
        overflow: hidden;
    }

    .map-component {
        margin-top: 6rem;
    }

    .about-us-workers-image {
        p {
            margin-left: 65px;
            margin-right: 70px;
        }
    }
}

.btn-mode-active {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.m-w-192 {
    max-width: 192px;
}

.faq-mobile-dropdown {
    width: 100%;
    margin-bottom: 25px;

    button {
        color: var(--secondary-color);
        background-color: var(--white);
    }
}

.faqs-list {
    max-height: 1000px;
    overflow-y: auto;
    scrollbar-width: large;
    scrollbar-color: var(--primary-color) var(--white);
    /* Firefox */
}

/* Chrome, Edge, Safari */
.faqs-list::-webkit-scrollbar {
    width: 16px;
}

.faqs-list::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

.faqs-list::-webkit-scrollbar-button {
    background-color: var(--white);
    color: var(--white);
    color: #ffff;
}

.faqs-list::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.faqs-list::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary-color);
}

.go-back-button {
    margin: auto;
    display: block;
    padding: 15px 0px;
    width: 35%;
}

.go-back-button:hover {
    border-color: var(--primary-color);
}

.page-not-found-container {
    margin-top: 25rem;
    color: var(--secondary-color);
    h1 {
        font-weight: 700;
        font-size: 4rem;
    }

    p {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .page-not-found-container {
        margin-top: 15rem;

        h1 {
            font-size: 2.5rem;
        }

        p {
            font-size: 1.5rem;
        }

        a {
            width: 90%;
        }
    }
}

.contact-info-container, .contact-info-container a {
    text-decoration: none;
    color: var(--secondary-color);
}

.copy-to-clipboard {
    cursor: pointer;
    text-decoration: underline;
    white-space: nowrap;
}

.copy-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    display: none;
    max-width: fit-content;
    overflow: hidden;
    white-space: nowrap;
    color: var(--white);
    background-color: #2d2959;
    padding: 10px;
    border-radius: 10px;
}
