.cookies-infobar {
    position: fixed;
    right: 2px;
    bottom: 2px;
    z-index: 1000;
    width: 100%;
    max-width: 500px;
    padding: 32px 24px;
    border-radius: 20px;
    background: #0d0d0d
}

.cookies-infobar.cookies-infobar_accepted {
    display: none
}

.cookies-infobar_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.cookies-infobar_wrapper h3 {
    margin-bottom: 25px;
    color: #fff;
    font-family: Cinzel, serif;
    font-size: clamp(1.25rem, .989rem + 1.3vw, 2rem);
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase
}

.cookies-infobar_wrapper p {
    margin-bottom: 25px;
    color: #fff;
    font-size: clamp(.875rem, .832rem + .22vw, 1rem);
    font-weight: 400;
    line-height: 150%
}

.cookies-infobar_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px
}

.cookies-infobar_button {
    padding: 10px 2px;
    width: 60%
}

.cookies-infobar_button--decline {
    border: 1px solid #fff;
    background: 0 0
}

.cookies-infobar_button--decline .button__text {
    color: #fff;
    color: #fff;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    font-family: Cinzel, serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase
}

.jogosverificados-header-top {
    margin-bottom: 8px;
    padding-top: 8px
}

.jogosverificados-header-top__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px
}

.jogosverificados-header-top img {
    width: 20px;
    height: 20px
}

.jogosverificados-header-top p {
    color: #fff;
    font-size: clamp(.375rem, .223rem + .76vw, .813rem);
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase
}

.jogosverificados-header {
    position: relative;
    z-index: 5
}

.jogosverificados-header__body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px
}

.jogosverificados-header__logo {
    text-align: right;
    font-family: Cinzel, serif;
    font-size: clamp(1rem, .795rem + .91vw, 1.5rem);
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    background: -o-radial-gradient(50% 50%, 50% 50%, #862f94 0, #fff 100%);
    background: radial-gradient(50% 50% at 50% 50%, #862f94 0, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.jogosverificados-header__menu {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.jogosverificados-header__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px
}

.jogosverificados-header__link {
    position: relative;
    color: #fff;
    text-shadow: 0 1px 0 #381869;
    font-family: Cinzel, serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: all var(--transition);
    -o-transition: all var(--transition);
    transition: all var(--transition)
}

.jogosverificados-header__link:hover {
    color: #d4af36;
    font-weight: 400;
    line-height: 150%
}

.burger {
    position: relative;
    z-index: 1000;
    display: none;
    padding: 0;
    width: 24px;
    height: 20px;
    cursor: pointer
}

.burger__line {
    position: absolute;
    right: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.burger::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: top .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: top .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out, top .2s ease-in-out;
    transition: transform .2s ease-in-out, top .2s ease-in-out;
    transition: transform .2s ease-in-out, top .2s ease-in-out, -webkit-transform .2s ease-in-out
}

.burger::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: bottom .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: bottom .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out, bottom .2s ease-in-out;
    transition: transform .2s ease-in-out, bottom .2s ease-in-out;
    transition: transform .2s ease-in-out, bottom .2s ease-in-out, -webkit-transform .2s ease-in-out
}

.burger--active .burger__line {
    opacity: 0
}

.burger--active::before {
    top: 50%;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.burger--active::after {
    top: 50%;
    bottom: auto;
    width: 100%;
    background-color: #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.jogosverificados-date {
    margin-bottom: 16px;
    color: #989898;
    font-size: clamp(.75rem, .707rem + .22vw, .875rem);
    font-weight: 400;
    line-height: 130%;
    text-align: center
}

.jogosverificados-hero {
    position: relative;
    padding: 20px 0
}

.jogosverificados-hero__info {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    margin-left: 10%;
    max-width: 875px
}

.no-webp .jogosverificados-hero__info::before {
    background-image: url(../img/hero-before.png)
}

.jogosverificados-hero__info::before {
    content: "";
    position: absolute;
    left: -180px;
    top: -120px;
    z-index: 1;
    width: 491px;
    height: 438px
}

.no-webp .jogosverificados-hero__info::after {
    background-image: url(../img/hero-after.png)
}

.jogosverificados-hero__info::after {
    content: "";
    position: absolute;
    right: -300px;
    top: -120px;
    z-index: 1;
    width: 491px;
    height: 438px
}

.jogosverificados-hero__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px
}

.jogosverificados-hero__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    background: #fff
}

.jogosverificados-hero__list li img {
    width: 16px
}

.jogosverificados-hero__list li span {
    color: #510000;
    font-size: clamp(.375rem, .201rem + .87vw, .875rem);
    font-style: normal;
    font-weight: 600;
    line-height: 130%
}

.jogosverificados-hero__headline {
    color: #fff;
    font-family: Cinzel, serif;
    font-size: clamp(1.5rem, 1.239rem + 1.3vw, 2.25rem);
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase
}

.jogosverificados-hero__text {
    color: #fff;
    text-shadow: 0 0 4px rgba(0, 0, 0, .25);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%
}

.no-webp .guiadejogos-benefits {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .8)), to(rgba(0, 0, 0, .8))), url(../img/benefits.jpg) #d3d3d3 50%/cover no-repeat;
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, .8) 0, rgba(0, 0, 0, .8) 100%), url(../img/benefits.jpg) #d3d3d3 50%/cover no-repeat;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8) 0, rgba(0, 0, 0, .8) 100%), url(../img/benefits.jpg) #d3d3d3 50%/cover no-repeat
}

.guiadejogos-benefits {
    padding: 40px 0
}

.guiadejogos-benefits__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.guiadejogos-benefits__item {
    padding: 20px;
    border-radius: 10px;
    background: #0a0a0a;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.guiadejogos-benefits__item h3 {
    margin-bottom: 16px;
    color: #fcfcfc;
    text-align: center;
    font-size: clamp(.875rem, .658rem + 1.09vw, 1.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: 150%
}

.guiadejogos-benefits__item p {
    font-size: clamp(.875rem, .832rem + .22vw, 1rem);
    font-weight: 400;
    line-height: 150%
}

.guiadejogos-benefits__title {
    margin-bottom: 20px
}

.guiadejogos-benefits__text {
    margin-bottom: 24px
}

.jogosverificados-about {
    padding: 40px 0
}

.jogosverificados-about__title {
    margin-bottom: 24px
}

.jogosverificados-about__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
    gap: 24px
}

.jogosverificados-about p {
    color: #fff;
    font-size: clamp(.875rem, .832rem + .22vw, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.jogosverificados-about__pic {
    margin-top: 24px
}

.jogosverificados-about__pic img {
    border-radius: 20px;
    max-height: 560px;
    -o-object-fit: cover;
    object-fit: cover
}

.jogosverificados-contact {
    padding: 40px 0
}

.jogosverificados-contact__title {
    margin-bottom: 20px
}

.jogosverificados-contact__form {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
    margin: auto
}

.jogosverificados-contact__input {
    position: relative;
    z-index: 2;
    padding: 14px 16px;
    border-radius: 10px;
    border: none;
    outline: 0;
    color: #b8b8b8;
    font-family: Jost, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    background: rgba(255, 255, 255, .1)
}

.jogosverificados-contact__input::-webkit-input-placeholder {
    color: #b8b8b8;
    font-family: Jost, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.jogosverificados-contact__input::-moz-placeholder {
    color: #b8b8b8;
    font-family: Jost, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.jogosverificados-contact__input:-ms-input-placeholder {
    color: #b8b8b8;
    font-family: Jost, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.jogosverificados-contact__input::-ms-input-placeholder {
    color: #b8b8b8;
    font-family: Jost, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.jogosverificados-contact__input::placeholder {
    color: #b8b8b8;
    font-family: Jost, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.jogosverificados-contact__textarea {
    padding: 14px 16px;
    border-radius: 10px;
    resize: none;
    min-height: 100px;
    border: none;
    outline: 0;
    color: #b8b8b8;
    font-family: Jost, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    background: rgba(255, 255, 255, .1)
}

.jogosverificados-contact__textarea::-webkit-input-placeholder {
    color: #b8b8b8;
    font-family: Jost, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.jogosverificados-contact__textarea::-moz-placeholder {
    color: #b8b8b8;
    font-family: Jost, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.jogosverificados-contact__textarea:-ms-input-placeholder {
    color: #b8b8b8;
    font-family: Jost, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.jogosverificados-contact__textarea::-ms-input-placeholder {
    color: #b8b8b8;
    font-family: Jost, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.jogosverificados-contact__textarea::placeholder {
    color: #b8b8b8;
    font-family: Jost, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.jogosverificados-contact__btn {
    display: inline-block;
    width: 250px
}

.jogosverificados-contact--single {
    position: relative;
    z-index: 2
}

.no-webp .jogosverificados-contact--single::before {
    background-image: url(../img/hero-before.png)
}

.jogosverificados-contact--single::before {
    content: "";
    position: absolute;
    left: 120px;
    top: -50px;
    z-index: -1;
    width: 491px;
    height: 438px
}

.jogosverificados-faqs {
    padding: 40px 0
}

.jogosverificados-faqs__title {
    margin-bottom: 24px;
    text-align: center
}

.jogosverificados-faqs__grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.jogosverificados-faqs__item {
    padding: 24px;
    border-radius: 10px;
    background: #000c00;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px)
}

.jogosverificados-faqs__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px
}

.jogosverificados-faqs__top h3 {
    max-width: 203px
}

.jogosverificados-faqs__bottom p {
    color: #aaa;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.plus {
    position: relative;
    display: block;
    width: 20px;
    height: 20px
}

.plus::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #fff;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.jogosverificados-faqs__bottom {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .4s ease;
    -o-transition: max-height .4s ease;
    transition: max-height .4s ease
}

.jogosverificados-faqs__item.active .jogosverificados-faqs__bottom {
    max-height: 500px
}

.jogosverificados-faqs__item.active .plus::after {
    opacity: 0
}

.jogosverificados-list {
    position: relative;
    z-index: 2;
    padding: 20px 0 40px
}

.item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto;
    max-width: 900px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #fff;
    background: var(--h, radial-gradient(50% 50% at 50% 50%, #862f94 0, #06094e 100%));
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px)
}

.item__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 200px;
    height: 70px;
    padding: 8px;
    border-radius: 10px;
    margin-right: 16px;
    background: #000224
}

.item__logo img {
    max-width: 195px;
    max-height: 52px;
    -o-object-fit: contain;
    object-fit: contain
}

.item__btn {
    position: relative;
    display: block;
    width: 246px;
    padding: 10px 24px;
    border-radius: 2000px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .3);
    background: #fff
}

.no-webp .item__btn::before {
    background-image: url(../img/big-win.png)
}

.item__btn::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    width: 60px;
    height: 42px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    -webkit-animation: zoomBounce 1.5s infinite;
    animation: zoomBounce 1.5s infinite
}

.item__rate {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    max-width: 70px;
    width: 100%;
    margin-right: 16px
}

.item__rate img {
    width: 24px;
    height: 24px
}

.item__rate h3 {
    color: #fff;
    font-family: var(--title-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.item__benefits {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    padding: 0 0 0 15px;
    width: 100%;
    margin-right: 16px;
    max-width: 247px
}

.item__benefits li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px
}

.item__benefits li img {
    width: 16px;
    height: 16px
}

.item__nav {
    margin-left: auto;
    padding: 0 16px
}

.item__bonus {
    display: block;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 8px;
    padding: 16px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    font-size: clamp(.75rem, .576rem + .87vw, 1.25rem);
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
    border-radius: 10px;
    border: 2px solid #fff;
    background: rgba(235, 37, 27, .4);
    -webkit-box-shadow: 0 0 7.8px 0 #ffff01;
    box-shadow: 0 0 7.8px 0 #ffff01
}

.item:not(:last-child) {
    margin-bottom: 24px
}

.item .button__text {
    color: #321666;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #321666;
    font-family: Cinzel, serif;
    font-size: clamp(.625rem, .472rem + .68vw, 1rem);
    font-style: normal;
    font-weight: 700;
    line-height: 130%
}

.item-marquee {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    margin: 8px auto 0;
    max-width: 224px
}

@-webkit-keyframes zoomBounce {

    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

@keyframes zoomBounce {

    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

.jogosverificados-info {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background: #000001
}

.jogosverificados-info__title {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    color: #fff;
    text-align: center;
    font-family: Cinzel, serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase
}

.jogosverificados-info__text {
    position: relative;
    z-index: 2;
    margin-left: 5%;
    max-width: 850px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.jogosverificados-info__text:not(:last-child) {
    margin-bottom: 15px
}

.no-webp .jogosverificados-info::before {
    background-image: url(../img/info-before.png)
}

.jogosverificados-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 220px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.no-webp .jogosverificados-info::after {
    background-image: url(../img/info-after.png)
}

.jogosverificados-info::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 220px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.jogosverificados-single {
    padding: 40px 0
}

.jogosverificados-single__title {
    margin-bottom: 24px;
    text-align: left
}

.jogosverificados-single__row {
    gap: 40px
}

.jogosverificados-single__info {
    position: relative;
    z-index: 2;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0
}

.jogosverificados-single__info p {
    color: #fff;
    font-size: clamp(.875rem, .82rem + .23vw, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.jogosverificados-single__info p:not(:last-child) {
    margin-bottom: 20px
}

.jogosverificados-single__list {
    position: relative;
    width: 328px
}

.jogosverificados-single__list .item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 8px;
    max-width: 500px
}

.jogosverificados-single__list .item__logo {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-right: 0;
    margin-bottom: -7px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    height: 64px
}

.jogosverificados-single__list .item__bonus {
    margin-top: 0;
    padding: 8px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    font-size: 12px;
    width: 100%
}

.jogosverificados-single__list .item__rate {
    margin-right: 0;
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%
}

.jogosverificados-single__list .item__nav {
    margin-right: 0;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    width: 100%
}

.jogosverificados-single__list .item__benefits {
    display: none
}

.jogosverificados-single__list .item__btn {
    padding: 8px 0;
    width: 100%
}

.jogosverificados-single__list .item__btn::before {
    left: -24px;
    top: 0;
    width: 40px;
    height: 30px
}

.jogosverificados-single__list .item__btn .button__text {
    font-size: 10px
}

.no-webp .jogosverificados-single__list::before {
    background-image: url(../img/hero-before.png)
}

.jogosverificados-single__list::before {
    content: "";
    position: absolute;
    left: -250px;
    bottom: 0;
    width: 400px;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat
}

.jogosverificados__footer {
    padding: 40px 0;
    background: #0d0d0d;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px)
}

.jogosverificados__footer-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 24px
}

.jogosverificados__footer-disclaimer {
    position: relative;
    margin-bottom: 24px;
    padding: 24px;
    border-radius: 20px;
    background: #e1e2ff;
    color: #0d0d0d;
    font-size: clamp(.875rem, .832rem + .22vw, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.jogosverificados__footer-address {
    margin-bottom: 24px;
    font-style: normal
}

.jogosverificados__footer-address h3 {
    margin-bottom: 16px;
    font-size: clamp(1rem, .913rem + .43vw, 1.25rem);
    font-weight: 700;
    line-height: 130%
}

.jogosverificados__footer-address a {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: clamp(.875rem, .832rem + .22vw, 1rem);
    line-height: 150%;
    -webkit-transition: opacity var(--transition);
    -o-transition: opacity var(--transition);
    transition: opacity var(--transition)
}

.jogosverificados__footer-address a:hover {
    opacity: .7
}

.jogosverificados__footer-address p {
    color: #fff;
    font-size: clamp(.875rem, .832rem + .22vw, 1rem);
    line-height: 150%
}

.jogosverificados__footer-nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 24px
}

.jogosverificados__footer-nav a {
    color: var(--white-color);
    font-size: clamp(1rem, .913rem + .43vw, 1.25rem);
    line-height: 130%;
    font-weight: 400;
    text-decoration: underline;
    -webkit-transition: color var(--transition);
    -o-transition: color var(--transition);
    transition: color var(--transition)
}

.jogosverificados__footer-nav a:hover {
    color: #d4af36
}

@media screen and (max-width:1200px) {
    .no-webp .jogosverificados-contact--single::before {
        background-image: url(../img/hero-before.png)
    }

    .jogosverificados-contact--single::before {
        content: "";
        position: absolute;
        left: auto;
        right: -120px;
        top: 0;
        z-index: -1;
        width: 491px;
        height: 438px;
        -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
        transform: rotate(150deg)
    }
}

@media screen and (max-width:1023px) {
    .nav {
        position: fixed;
        right: 0;
        top: 0;
        z-index: 100;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow: hidden;
        padding: 150px 30px 50px;
        width: 100%;
        height: 100vh;
        background: #1b1900;
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: visibility .2s ease-in-out, -webkit-transform .2s ease-in-out;
        transition: visibility .2s ease-in-out, -webkit-transform .2s ease-in-out;
        -o-transition: transform .2s ease-in-out, visibility .2s ease-in-out;
        transition: transform .2s ease-in-out, visibility .2s ease-in-out;
        transition: transform .2s ease-in-out, visibility .2s ease-in-out, -webkit-transform .2s ease-in-out
    }

    .nav--visible {
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    .jogosverificados-header__body {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 2px
    }

    .jogosverificados-header__list {
        position: relative;
        z-index: 5;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        height: 100%;
        gap: 20px
    }

    .jogosverificados-header__item {
        width: 100%;
        text-align: left
    }

    .jogosverificados-header__link {
        padding-bottom: 0;
        color: var(--black-color);
        text-align: left
    }

    .jogosverificados-header__link::before {
        display: none;
        opacity: 0
    }

    .jogosverificados-header-top {
        padding-top: 4px;
        margin-bottom: 2px
    }

    .jogosverificados-date {
        margin-bottom: 4px;
        text-align: left
    }

    .burger {
        display: block
    }
}

@media screen and (max-width:1000px) {
    .jogosverificados-hero__info {
        margin-left: 0
    }

    .jogosverificados-hero__info::before {
        display: none
    }

    .jogosverificados-hero__info::after {
        z-index: -1;
        right: -250px;
        top: auto;
        bottom: -200px
    }

    .jogosverificados-faqs__grid {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:900px) {
    .item {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 8px;
        max-width: 500px
    }

    .item__logo {
        -ms-flex-item-align: end;
        align-self: flex-end;
        margin-right: 0;
        margin-bottom: -7px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        height: 64px
    }

    .item__bonus {
        margin-top: 0;
        padding: 8px;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 100%
    }

    .item__rate {
        margin-right: 0;
        margin: 0 auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        width: 100%
    }

    .item__nav {
        margin-right: 0;
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        width: 100%
    }

    .item__benefits {
        display: none
    }

    .item__btn {
        width: 100%;
        padding: 8px
    }

    .item__btn::before {
        left: -24px;
        top: 0;
        width: 40px;
        height: 30px
    }
}

@media screen and (max-width:800px) {
    .jogosverificados-faqs__grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width:767px) {
    .jogosverificados-hero__list {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .guiadejogos-benefits {
        padding: 20px 0
    }

    .guiadejogos-benefits__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }

    .guiadejogos-benefits__title {
        margin-bottom: 16px
    }

    .jogosverificados-about__pic img {
        max-height: 350px
    }

    .jogosverificados-about__title {
        margin-bottom: 16px
    }

    .jogosverificados-about__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 16px
    }

    .jogosverificados-contact {
        padding: 30px 0
    }

    .jogosverificados-contact__btn {
        width: 100%
    }

    .jogosverificados-faqs__grid {
        gap: 8px
    }

    .jogosverificados-faqs__top {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .jogosverificados-faqs__top h3 {
        max-width: 70px
    }

    .jogosverificados-info {
        padding: 20px 0
    }

    .jogosverificados-info__title {
        text-align: left
    }

    .jogosverificados-info__text {
        margin-left: 10%
    }

    .jogosverificados-info::before {
        left: -120px;
        background-size: contain
    }

    .jogosverificados-info::after {
        right: -120px;
        background-size: contain
    }

    .jogosverificados-single__row {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .jogosverificados__footer {
        padding: 30px 0
    }

    .jogosverificados__footer-list {
        margin-bottom: 16px;
        gap: 10px
    }

    .jogosverificados__footer-disclaimer {
        padding: 16px;
        margin-bottom: 16px
    }

    .jogosverificados__footer-address {
        margin-bottom: 16px
    }

    .jogosverificados__footer-nav {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media screen and (max-width:600px) {
    .jogosverificados-single {
        padding: 20px 0
    }

    .jogosverificados-single__list {
        width: 100%
    }

    .jogosverificados-single__title {
        margin-bottom: 16px
    }
}

@media screen and (max-width:500px) {
    .jogosverificados-hero__info::after {
        z-index: -1;
        right: -150px;
        top: auto;
        bottom: -100px
    }
}

@media screen and (max-width:450px) {
    .jogosverificados-about__pic img {
        max-height: 150px
    }
}

@media (max-width:400px) {
    .item__btn {
        padding: 8px 0
    }
}

@media screen and (width <=767px) {
    .cookies-infobar_buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 5px
    }

    .cookies-infobar_button {
        width: 100%
    }

    .cookies-infobar {
        left: 2px;
        right: 2px;
        margin: auto;
        padding: 16px;
        max-width: 99%
    }
}

@media screen and (width <=600px) {
    .nav {
        width: 100%
    }

    .jogosverificados-header {
        padding: 4px 0
    }

    .jogosverificados-header__alert {
        max-width: 130px
    }
}

.webp .jogosverificados-hero__info::before {
    background-image: url(../img/hero-before.webp)
}

.webp .jogosverificados-hero__info::after {
    background-image: url(../img/hero-after.webp)
}

.webp .guiadejogos-benefits {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .8)), to(rgba(0, 0, 0, .8))), url(../img/benefits.webp) #d3d3d3 50%/cover no-repeat;
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, .8) 0, rgba(0, 0, 0, .8) 100%), url(../img/benefits.webp) #d3d3d3 50%/cover no-repeat;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8) 0, rgba(0, 0, 0, .8) 100%), url(../img/benefits.webp) #d3d3d3 50%/cover no-repeat
}

.webp .jogosverificados-contact--single::before {
    background-image: url(../img/hero-before.webp)
}

.webp .item__btn::before {
    background-image: url(../img/big-win.webp)
}

.webp .jogosverificados-info::before {
    background-image: url(../img/info-before.webp)
}

.webp .jogosverificados-info::after {
    background-image: url(../img/info-after.webp)
}

.webp .jogosverificados-single__list::before {
    background-image: url(../img/hero-before.webp)
}

@media screen and (max-width:1200px) {
    .webp .jogosverificados-contact--single::before {
        background-image: url(../img/hero-before.webp)
    }
}