body {
    background-color: #090A0C;
}

.container {
    max-width: 1136px;
}

section:not(.section-footer) {
    padding-bottom: 120px;
}

.section-main{
    padding-top: 180px;
    background-position: center center;
    background-size: cover;
}

.video-container {
    position: relative;
    width: 850px;
}

.img-video-overlay{
    display: block;
    width: 100%; 
    height: auto;
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.img-video-thumbnail{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 97%;
    background-color: black;
    border-radius: 70px;
    z-index: 2;
    cursor: pointer;
    object-fit: cover;
}

.white-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    height: 92%;
    border-radius: 58px;
    opacity: 0.3;
    background: #FFF;
    filter: blur(25px);
}

.video-container video {
    position: absolute;
    top: 1.5%;
    left: 2%;
    width: 95%;
    height: 97%;
    z-index: 1;
    background-color: black;
    border-radius: 70px;
}

.btn-play-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    padding: 24px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    display: inline-flex;
    z-index: 4;
    cursor: pointer;
}

.img-check-the-difference {
    position: absolute;
    top: -10%;
    left: 82%;
    z-index: 5;
    pointer-events: none;
}

.img-phone-glow-bottom {
    position: absolute;
    top: -5%;
    left: -5%;
    z-index: -1;
    pointer-events: none;
}

.img-phone-glow-top {
    position: absolute;
    top: -10%;
    left: 4%;
    z-index: -1;
    pointer-events: none;
}

.btn-play {
    width: 48px;
    padding: 12px;
    background: white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 4px;
    display: flex;
}

.video-container:hover .btn-play {
    background: var(--Red-600, #C42121);
}

.video-container:hover .btn-play img {
    content:url("/templates/exit-lag/img/mobile/play_icon_white.svg");
}

.title-container {
    padding-bottom: 56px;
}

.section-title-text {
    color: #FFF;
    text-align: center;
    font-family: Organetto;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    align-self: center;
}

.section-title-text:not(.reviews-title) {
    margin-bottom: 32px;
}

.btn-mobile-download {
    height: 48px;
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--Red-600, #C42121);
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    display: flex;
    align-items: center;
    gap: 8px;
}


/*Section Games Carousel*/
.carousel-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.carousel-container:hover .carousel {
    animation-play-state: paused;
}
  
.carousel {
    display: inline-block;
    animation: 25s scroll infinite linear;
}
  
.carousel img {
    max-width:125px; 
    margin-right: 25px;
    padding-right: 25px;
}
  
/* Animação */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/*Section Benefits*/
.section-title {
    padding: 4px 16px;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.65) 0%, rgba(212, 249, 255, 0.65) 26%, rgba(255, 223, 245, 0.65) 69%, rgba(255, 255, 255, 0.65) 100%), #FFF;
    color: var(--grey-800, #212630);
    margin-bottom: 15px;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
}

.benefits-block {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #0B0C0F;
}

.img-fade-left {
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 95%, rgba(0,0,0,0));
}

.benefits-text-block-title {
    color: var(--Gray-50, #F5F5F6);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin: 10px 0px;
}

.benefits-text-block-info {
    color: var(--Gray-400, #878D97);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.img-main-home{
    display: block;
    width: 100%; 
    height: auto;
    position: relative;
    z-index: 1;
}

.img-optmizer-btn {
    position: absolute;
    top: 9%;
    left: 21%;
    z-index: 2;
}

.img-exitlag-btn {
    position: absolute;
    top: 21%;
    left: 77%;
    z-index: 2;
}

.img-awesome-btn {
    position: absolute;
    top: 75%;
    left: 30%;
    z-index: 2;
}

.img-wiggle:hover {
    animation: wiggle 1s ease-in-out infinite;
}

/* Animação */
@keyframes wiggle {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.benefits-main-block {
    position: relative;
}

.benefits-red-glow {
    position: absolute;
    top: -22%;
    left: -8%;
    z-index: -1;
}

/*Section Features*/
.feature-title-item {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 17.951px;
    margin: 12px;
}

.features-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.features-group-no-margin {
    margin: 0;
}

.features-text-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    max-width: 300px;
    word-wrap: break-word;
    margin-bottom: 16px;
}

.features-text-description {
    color: var(--Gray-300, #C6C8CB);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 478px;
    word-wrap: break-word;
}

.features-img img{
    width: 100%; 
    height: auto;
}


/*Section Reviews*/
.review-box {
    padding: 24px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid var(--Gray-850, #1D2129);
    background: var(--Gray-950, #111317);
    box-shadow: 4px 12px 20px 0px rgba(0, 0, 0, 0.20);
    height: 100%;
}

.review-username {
    color: var(--Gray-50, #F5F5F6);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.review-store {
    color: var(--Gray-400, #878D97);
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 16px;
}

.review-title {
    color: var(--Gray-50, #F5F5F6);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.review-details {
    color: var(--Gray-300, #C6C8CB);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.container-reviews-try-for-free {
    margin-top: 42px;
    padding: 24px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #430F1F;
}

.try-for-free-title {
    color: var(--Gray-White, #FFF);
    font-family: Organetto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 8px;
}

.try-for-free-info {
    color: var(--Gray-300, #C6C8CB);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    opacity: 0.6;
}

/*Section Talking About Us*/
#section-talking-about .container{
    padding-left: 0px;
}

.talking-about-title {
    color: #FFF;
    font-family: Organetto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.talking-about-video-group {
    display: flex;
    flex-wrap: nowrap;
    min-width: 100%;
    scroll-snap-align: start;
    gap: 16px;
}

.talking-about-video-box {
    display: flex;
    flex-direction: column;
    width: 368px;
    height: 250px;
    padding: 10px;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid var(--Gray-800, #212630);
    background: var(--Gray-950, #111317);
}

.talking-about-video-title {
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: 16px;
}

.talking-about-video-title img {
    flex: 0 0 auto;
}

.talking-about-channel-name {
    color: var(--Gray-200, #E0E1E2);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Organetto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    flex: 1;
}

.talking-about-channel-subscribers {
    color: var(--Gray-400, #878D97);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    flex: 0 0 auto;
}

.talking-about-video {
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 346px;
    height: 195px; 
}

#section-talking-about .row {
    margin: 0px;
}

/*Section FAQ*/
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.faq-accordion-item {
    cursor: pointer;
}

.faq-accordion-header {
    display: flex;
    padding: 24px;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    justify-content: space-between;
    
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.faq-accordion-content {
    display: flex;
    padding: 24px;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    display: none;

    color: var(--Gray-200, #E0E1E2);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.faq-item-opened {
    border-radius: 8px;
    border: 1px solid var(--Gray-600, #313741);
    background: var(--Gray-950, #111317);
}

.faq-item-opened .faq-accordion-header {
    color: var(--White, #FFF);
}

.faq-item-closed {
    border-radius: 8px;
    border: 1px solid var(--exl-neutral-gray-950, #111317);
    background: var(--Gray-1000, #0B0C0F);
    backdrop-filter: blur(11.5px);
}

.faq-item-closed .faq-accordion-header {
    color: var(--exl-neutral-gray-400, #878D97);
}

.faq-title {
    color: var(--White, #FFF);
    font-family: Organetto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.faq-subtitle {
    color: var(--Gray-400, #878D97);
    text-align: right;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

/*Section footer*/
.section-footer {
    background: linear-gradient(180deg, #0B0A0C 50.5%, #2C0606 100%);
    position: relative;
}

.title-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.footer-title {
    color: #FFF;
    font-family: Organetto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-list-item {
    display: flex;
    gap: 10px;
}

.footer-gradient {
    position: absolute;
    bottom: 0;
    width: 100%;
    pointer-events: none;
}

.footer-btn-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}
/*QR Code*/
.qr-code-box {
    position: fixed;
    right: 0px;
    top: 20%;
    border-radius: 8px 0px 0px 8px;
    border-top: 1px solid var(--Gray-500, #555C68);
    border-bottom: 1px solid var(--Gray-500, #555C68);
    border-left: 1px solid var(--Gray-500, #555C68);
    background: var(--Gray-800, #212630);
    box-shadow: 4px 12px 20px 0px rgba(0, 0, 0, 0.20);
    padding: 16px;
    z-index: 100;
}

.qr-code-itens {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.qr-code-text {
    color: var(--Gray-50, #F5F5F6);
    text-align: center;
    font-family: Ubuntu;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.qr-code-mobile {
    filter: invert(99%) sepia(97%) saturate(5%) hue-rotate(180deg) brightness(99%) contrast(95%)
}

/*Responsivity*/
@media screen and (max-device-width: 1600px) {

    .container {
        max-width: 944px;
    }

    .img-optmizer-btn {
        max-width: 23%;
        left: 21%;
        top: 9%;
    }
    
    .img-exitlag-btn {
        max-width: 18%;
    }
    
    .img-awesome-btn {
        max-width: 63%;
        left: 28%;
    }

    .talking-about-channel-name {
        font-size: 11px;
    }

    .talking-about-video-box {
        width: 307px;
        height: 207px;
        padding: 8px;
        gap: 4px;
    }

    .talking-about-video-group {
        gap: 12px;
    }

    .talking-about-video {
        width: 289px;
        height: 170px;
    }
}

@media screen and (max-device-width: 1023px) {

    .container {
        max-width: 688px;
    }

    .img-check-the-difference {
        top: -16%;
        left: 78%;
    }

    .benefits-red-glow {
        display: none !important;
    }

    .benefits-img-div {
        display: none !important;
    }

    .benefits-itens-container {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        pointer-events: none;
    }

    .benefits-itens-container::-webkit-scrollbar {
        display: none;
    }

    .benefits-itens-row {
        display: flex;
        flex-wrap: nowrap;
        min-width: 100%;
        scroll-snap-align: start;
        gap: 16px;
    }

    .benefits-block {
        max-width: 48% !important;
    }

    .qr-code-box {
        display: none !important;
    }

    [class*="pagination-btn-"] {
        display: flex;
        width: 32px;
        height: 32px;
        padding: 6px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        border-radius: 8px;
    }

    .pagination-btn-active {
        background: var(--Red-600, #C42121);
    }

    .pagination-btn-inactive {
        background: var(--Gray-800, #212630);
    }

    .pagination-menu {
        display: flex;
        align-items: flex-start;
        gap: 32px;
        justify-content: space-between;
    }

    .pagination-benefits {
        visibility: visible !important;
    }

    .pagination-buttons {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .talking-about-slider-container {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        pointer-events: none;
    }
    
    .talking-about-slider-container::-webkit-scrollbar {
        display: none;
    }

    .pagination-talking-about {
        visibility: visible !important;
    }

    .talking-about-video-group {
        gap: 10px;
    }

    .talking-about-video-box {
        width: 339px;
        height: 231px;
        gap: 8px;
    }

    .talking-about-video {
        width: 320px;
        height: 180px;
        pointer-events: auto;
    }

    .section-title-text {
        font-size: 24px;
        line-height: 32px;
    }

    .footer-image-container {
        overflow: hidden;
    }

    .footer-image-container img {
        width: 100%; 
        height: 100%; 
        object-fit: cover;
        object-position: left;
    }

    .footer-text {
        padding-bottom: 24px;
    }
}

@media screen and (max-device-width: 767px) {
    
    .container {
        max-width: 312px;
    }

    .img-check-the-difference {
        top: -37%;
        left: 50%;
    }

    .img-video-thumbnail {
        width: 88%;
        border-radius: 17px;
    }

    .btn-play {
        width: 24px;
        padding: 6px;
    }

    .btn-play-border {
        padding: 12px;
    }

    .video-container video {
        width: 88%;
        border-radius: 17px;
        left: 6%;
    }

    .btn-mobile-download {
        height: 40px;
        padding: 10px 12px;
        font-size: 13px;
        line-height: 20px;
    }

    .section-title-text {
        font-size: 20px;
        line-height: 24px;
    }

    .features-group {
        flex-direction: column;
    }

    .benefits-block {
        max-width: 100% !important;
    }

    .pagination-page-indicators .invisible {
        visibility: visible !important;
    }

    .features-img {
        margin-bottom: 32px;
    }

    .reviews-container {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        pointer-events: none;
    }

    .reviews-container::-webkit-scrollbar {
        display: none;
    }

    .reviews-row {
        display: flex;
        flex-wrap: nowrap;
        min-width: 100%;
        scroll-snap-align: start;
        gap: 16px;
    }

    .pagination-reviews {
        visibility: visible !important;
    }

    .try-for-free-row {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .try-for-free-row .col {
        justify-content: center !important;
    }

    .footer-row {
        display: flex;
        flex-direction: column;
    }

    .footer-image-container {
        overflow: visible;
    }

    .reviews-title {
        max-width: 70%;
    }

    .faq-subtitle {
        text-align: left;
    }

    .section-talking-about .container {
        padding: 0px;
    }

    .talking-about-video-box {
        width: 100%;
        height: 213px;
    }

    .talking-about-channel-subscribers {
        font-size: 11px;
    }

    .talking-about-video {
        width: 295px;
        height: 170px;
    }      
}