* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    background-color: transparent;
}

body {
    overflow-x: hidden;
}

option {
    border: 1px solid #fff;
    background-color: transparent;
}

a,
button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: normal;
    margin: 0;
    font-family: 'Manrope';
}

p {
    font-family: 'Manrope';
}



.navBarContainer {

    /* background-color: #C0690A !important; */
    background-color: #2F3034 !important;

}

.navBarContent {
    max-width: 1140px;
    margin: 0 auto;
}

.main-bg-img {
    background-image: url('../../img/lp/bg-oficial.jpg');
}

.bg-image {

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto !important;
    width: 100vw;
    margin-left: calc(-100vw / 2 + 50%);
    margin-right: calc(-100vw / 2 + 50%);
}

.formArea {
    height: auto;
    border-radius: 24px;
}

.funDoErpSubmitEsp {
    background-image: url('../../img/lp/mapImg.png');
    background-size: cover;
    width: 100%;
}

.clienteImgFundoContaier {
    /* background-image: url('../../img/lp/fundo002.png'); */
    background-size: cover;
    width: 100%;
}

.elipseImg {
    background-image: url('../../img/lp/Ellipse.png');
    background-position: center center;
    background-size: cover;
    width: 100%;
}

.cardsFundo01 {
    background-image: url('../../img/lp/cardsFundo01.png');
    background-size: cover;
    width: 100%;
}

.btn {
    background: linear-gradient(to right, #C0690A, #FF931D);
    height: 50px;
    color: #fff;
}

.btn:hover {
    color: #fff;
}

.articleContainer {
    background: linear-gradient(to right, #C0690A, #FF931D);
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
    transform: scale(1);

    &:hover {
        transform: scale(1.05);
    }
}

.mapsContainer {
    background-image: url('../../img/lp/mapImg.png');
    height: auto;
    background-size: cover;
}

.areaMapsText {
    color: #FF9F36;
}

.svg-background {
    width: 100px;
    height: 100px;
    background-image: url('imagem.svg');
    background-size: cover;
    /* Ajusta a imagem para cobrir o elemento */
}

.imgFlag {
    width: 60px;
    height: 40px;
}

.textCustomFont-size {
    font-family: 'Manrope';
    font-size: 24px;
    font-weight: 500;
}

.areaCounstHoursDate {}

.colorBorder {
    border: 2px solid #FF9F36;
    border-radius: 8px;
}

.cards {
    width: 350px;
    height: 322px;
    background-color: #0A0704;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btnSessionMaps {
    box-shadow: 2px 2px 22px #FF931D;
}

.aboutContainer {
    background-image: url('../../img/lp/1.png');
    background-size: cover;
    width: 100%;
    height: 100%;

}

.colContant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.boxMovie {
    width: 40rem;
    height: 28rem;
    margin-top: 5rem;
    border-radius: rem !important;

}

.boxMovie img {
    box-shadow: 50px 50px 2px rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    border: 1px solid #fff;
}

.bg-containerImg {
    background-color: #0A0704;
}

.galeyBox {
    background-color: rgba(255, 255, 255, 0.1);
    width: 30%;
    margin: 5px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 16px;
}

.galeryInfoBarged {}

.galeryWarppers {}

.boxFooter {
    color: #fff;
}

.icon-social {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* FAQ  */

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-button,
.accordion-button:first-of-type,
.accordion-button:last-of-type,
.accordion-item:first-of-type>.accordion-header .accordion-button.collapsed,
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed,
.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type>.accordion-header .accordion-button {
    border-radius: 16px;
}

.accordion-button:not(.collapsed):focus {
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

/* .accordion-item:last-of-type:not( .accordion-button.collapsed) {
  background-color: red !important;
} */

.accordion-button {
    background-color: #636363 !important;
    color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #ce720e !important;
    color: #fff;
    box-shadow: none;
}

.accordion-item {
    background-color: #ce720e;
    border: none;
    color: #fff;
}


/* GALERIA  */

.slider {
    background: transparent;
    width: 100%;
    overflow: hidden;
}

.slider .move.left {
    display: flex;
    gap: 1px;
    width: calc(250px * 14);
    animation: animacionLeft 50s linear infinite;
}

.slider .move.right {
    display: flex;
    gap: 1px;
    width: calc(250px * 14);
    animation: animacionRight 50s linear infinite;
}

@keyframes animacionLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes animacionRight {
    0% {
        transform: translateX(calc(-250px * 7));
    }

    100% {
        transform: translateX(0);
    }
}

.slider .box {
    /* height: 320px; */
    min-width: 300px;
}

.slider .box img {
    width: 100%;
    height: 100%;
}

/* COUNTER FOOTER  */

.counter_footer {
    background: url('../../img/lp/counter_footer_banner.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 210px;
}

@media screen and (max-width: 320px) {
    .MOBILE {
        background-color: red !important;
    }
}

.item-tab-agenda {
    color: white
}

.item-tab-agenda.active {
    color: #FFA500 !important
}

.item-tab-agenda:hover {
    color: white
}








/* #cookieConsentContainer {
    background-color: red;
    position: fixed;
    bottom: 0;

    width: 100%;
    min-height: 20px;
    box-sizing: border-box;
    padding: 1rem;
    background: #232323;
    overflow: hidden;
    left: 0;
} */


.cookieConsentContainer {
    z-index: 999;
    width: 100%;
    min-height: 20px;
    box-sizing: border-box;
    padding: 1rem;
    background: #232323;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
}

.cookieConsentContainer .cookieTitle a {
    font-family: OpenSans, arial, sans-serif;
    color: #fff;
    font-size: 22px;
    line-height: 20px;
    display: block
}

.cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;
    font-family: OpenSans, arial, sans-serif;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 10px
}

.cookieConsentContainer .cookieDesc a {
    font-family: OpenSans, arial, sans-serif;
    color: #fff;
    text-decoration: underline
}

.cookieConsentContainer .cookie-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.cookieConsentContainer .cookieButton a {
    display: inline-block;
    font-family: OpenSans, arial, sans-serif;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-top: 14px;
    background: #FFC107;
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    transition: background .3s
}

.cookieConsentContainer .cookieButton.denied a {
    display: inline-block;
    font-family: OpenSans, arial, sans-serif;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-top: 14px;
    border: 1px solid #FFC107;
    background: transparent;
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    transition: background .3s
}

.cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    background: #FFC107
}

@media (max-width:980px) {
    .cookieConsentContainer {
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important
    }
}

.point-map {
    transition: all .2s;
    filter: grayscale(0);
}

.point-map:hover img {
    filter: grayscale(.3);
}

.point-map:hover {
    z-index: 9999
}

@media (max-width: 992px) {
    .point-map img {
        max-width: 25px;
    }
}

@media (max-width: 767px) {
    .point-map img {
        max-width: 20px;
    }

    .point-es {
        top: 42% !important
    }
}

/*  */
.select-lang.form-select {
    background-image: url(../../img/icons/arrow-1.svg) !important
}

.select-lang.form-select:focus {
    box-shadow: none !important;
}

/*  */
.bg-secao-beneficios {}

/* OwlCarousel2 */
.owl-next,
.owl-prev {
    position: absolute;
    top: calc(50% - 50px);
    z-index: 9999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.owl-next {
    right: 0;
}

.owl-prev {
    left: 0px;
}

.owl-carousel-card {
    background: #171819;
}

.container-carousel {
    max-width: 1190px;
}

@media (max-width: 1400px) {
    .container-carousel {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .container-carousel {
        max-width: 85%;
    }
}

@media (max-width: 756px) {
    .container-carousel {
        max-width: 100%;
    }

    .owl-next,
    .owl-prev {
        display: none;
    }
    .owl-carousel-card-title {
        font-size: 16px !important;
    }
    .owl-carousel-card-text {
        font-size: 14px;
    }
    .owl-carousel-card-day {
        font-size: 28px !important;
        padding-top: 2px;
    }
    .owl-carousel-card-wek {
        font-size: 15px !important;
    }
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #f98e19 !important
}