@font-face {
    font-family: 'Gotham Bold Italic';
    src: url('../fonts/GothamBoldItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --carro-shift: -65vw;
}



html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: auto;
}

.hidden {
    display: none !important;
}



.header {
    position: relative;
    height: 200px;
    background: yellow;
    overflow: hidden;
}


.navbar {
    background-color: rgba(255, 240, 30, 0.7);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.6px);
    -webkit-backdrop-filter: blur(6.6px);
    border: 1px solid rgba(255, 255, 255, 0.3);

}


.logo {
    margin-right: 70px;
    margin-left: 150px;
    width: 150px;
    height: 45px;
}


.navbar .menu-item {
    margin: 0 20px;
    color: #164493;
    font-weight: bold;
    text-decoration: none;
}


.navbar .menu-item:hover {
    color: white;
}


.menu-items {
    display: flex;
    align-items: center;
}


.menu-item {
    margin: 0 20px;
    color: #164493;
    font-weight: bold;
    text-decoration: none;
}


.menu-item:hover {
    color: white;
    opacity: 0.8;
}


.hover-95 {
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 5px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 0;
}


.hover-95::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, #ffcf00, #0038ff, #ff611c, #ff3d00, #0824dd, #fff900);
    background-size: 600%;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s;
    animation: gradient-95 5s infinite linear;
}


.hover-95:hover::after {
    opacity: 1;
}


@keyframes gradient-95 {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.social-container {
    text-align: center;
}


ul {
    display: inline-block;
    justify-content: center;
    /* Center the list items horizontally */
    list-style: none;
}


ul li {
    display: inline-block;
    margin: 0 10px;
}


ul li a {
    width: 35px;
    height: 35px;
    background-color: #17418c;
    text-align: center;
    line-height: 35px;
    font-size: 20px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 1px solid #fff;
    z-index: 1;
}


ul li a .icon {
    position: relative;
    color: #ffda00;
    transition: .5s;
    z-index: 3;
}


ul li a:hover .icon {
    color: #fff;
    transform: rotateY(360deg);
}


ul li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: .5s;
    z-index: 2;
}


ul li a:hover:before {
    top: 0;
}


ul li:nth-child(1) a:before {
    background: #E1306C;
}


ul li:nth-child(2) a:before {
    background: #1877F2;
}


ul li:nth-child(3) a:before {
    background: #000000;
}


ul li:nth-child(4) a:before {
    background: #0e76a8;
}



@media (max-width: 768px) {

    .logo {
        margin-left: 10px;
    }

    .menu-items {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff01e;
        text-align: center;
        z-index: 1000;
    }

    .menu-items.show {
        display: flex;
    }

    .menu-item {
        margin: 10px 0;
    }


}

.hamburger {
    display: block;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hides menu hamburger icon when in Desktop */
@media (min-width: 768px) {
    .hamburger {
        visibility: hidden;
    }

}

@media screen and (min-width: 769px) and (max-width: 820px) {
    .menu-items {
        margin-right: 20%;
    }

}


@media screen and (min-width: 820px) and (max-width: 836px) {
    .menu-items {
        margin-right: 20%;
    }

}



.content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    position: relative;
    overflow-x: hidden;
}


.content::after {
    content: "";
    display: table;
    clear: both;
}


.image1,
.image2 {
    display: block;
    width: 100%;

}


.image2 {
    top: 100%;
}



.selectDisable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}




/* HEADER CONTENT */





.header-banner {
    width: 10vw;
    height: auto;
    object-fit: cover;
    max-width: 100%;
    overflow-y: hidden;
    z-index: 1;
}




.header-banner-container {
    position: relative;
}

.header-banner-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    /* altura do fade */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 0;
}



@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}




.hero-image {
    width: 100%;
    max-height: 100vh;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    top: 0;
    z-index: 0;
}

/* Remove possíveis margens extras de containers antigos */
.hero-container,
.hero-wrapper {
    margin: 0;
    padding: 0;
    position: relative;
}



/* BOTAO */

.botao-wrapper {
    position: relative;
    z-index: 10;
    height: 0;
}

.botao-link {
    position: absolute;
    left: 50%;
    top: -80px;
    /* posição vertical */
    transform: translateX(-50%);
}

.botao-link img {
    width: clamp(180px, 26vw, 200px);
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.botao-link:hover img {
    transform: scale(1.08);
}




/* RASPADINHA */

/* PRIZES SECTION (garante referência relativa) */
.prizes-section {
    position: relative;
    overflow: visible;
    width: 100%;
}

.raspe-label {
    position: absolute;
    left: 18%;
    top: 20%;
    transform: translateY(-50%);
    padding-left: 20px;
    z-index: 10;
}

.raspe-text {
    font-family: 'Gotham Black', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #2f3888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.raspe-arrow {
    display: inline-block;
    font-size: 1.4rem;
    /* reduzido para alinhar verticalmente */
    transform: translateY(2px);
    /* empurra levemente para baixo */
    animation: blinkArrow 1s infinite;
}

@keyframes blinkArrow {
    0% {
        transform: translateX(0) translateY(2px);
        opacity: 1;
    }

    50% {
        transform: translateX(5px) translateY(2px);
        opacity: 0.6;
    }

    100% {
        transform: translateX(0) translateY(2px);
        opacity: 1;
    }
}


.raspadinha-wrapper {
    position: absolute;
    top: 2.5rem;
    left: 52.5%;
    transform: translateX(-50%);
    width: clamp(300px, 50vw, 580px);
    z-index: 10;
    pointer-events: none;
}

.raspadinha-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6;
    pointer-events: auto;
}

.raspe-img {
    width: 70%;
    left: 10%;
    top: 30%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.raspadinha-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 2;
    pointer-events: auto;
    display: block;
}


.raspadinha-canvas.fade-out {
    transition: opacity 1s ease;
    opacity: 0;
}



/* PRIZES */

.prizes-section,
.mechanics-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}


.background-image {
    width: 100%;
    height: 1200px;
    display: block;
    object-fit: cover;
}



.carro-premio {
    position: absolute;
    bottom: 10%;
    right: -700px;
    /* começa fora da tela à direita */
    width: clamp(380px, 45vw, 620px);
    /* maior e mais responsivo */
    transition: transform 1.5s ease-in-out;
    transform: translateX(0);
}

/* estado: carro ativo (estacionado) */
.carro-ativo {
    transform: translateX(-65vw);
    /* empurra o carro até quase o centro */
}

/* estado: carro sai de ré (para a direita) */
.carro-saiu {
    transform: translateX(120vw);
    /* volta para fora da direita */
}



@keyframes futuristicFade {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        filter: drop-shadow(0 0 0px transparent);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-fade {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.animate-fade.visible {
    animation: futuristicFade 1s ease-out forwards;
}



.carro-premio {
    position: absolute;
    bottom: 10%;
    right: -700px;
    width: clamp(480px, 48vw, 780px);
    /* Antes: clamp(380px, 45vw, 620px) */
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateX(0);
    z-index: 5;
    pointer-events: auto;
    cursor: pointer;
}


.carro-ativo {
    transform: translateX(-65vw);
}





/* Em telas muito largas, limitamos o avanço para não invadir a esquerda */
@media (min-width: 1600px) {
    .carro-ativo {
        transform: translateX(-55vw);
        /* reduz o avanço */
    }
}

@media (min-width: 1920px) {
    .carro-ativo {
        transform: translateX(-50vw);
        /* limite máximo de avanço */
    }
}

.carro-saiu {
    transform: translateX(120vw);
}

.carro-ativo:hover {
    transform: scale(1.05) translateX(var(--carro-shift, -65vw));
    z-index: 6;
}


.celular-premio {
    width: clamp(280px, 32vw, 420px);
    /* Antes: clamp(240px, 30vw, 360px) */
    margin-top: 150px;
    opacity: 0;
    transform: rotate(-20deg) scale(0.9);
    transition: opacity 1s ease, transform 1s ease;
    z-index: 4;
    pointer-events: auto;
    cursor: pointer;
}


.celular-ativo {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.celular-saiu {
    opacity: 0;
    transform: rotate(-25deg) scale(0.85);
}

.celular-premio:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 6;
}


@media (min-width: 1600px) {
    :root {
        --carro-shift: -55vw;
    }
}

@media (min-width: 1920px) {
    :root {
        --carro-shift: -50vw;
    }
}





/* CAMPAIGN INFO SECTION */



.mechanics-section {
    position: relative;
}

.mechanics-section .info-fundo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overlay-images {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay-images-mobile {
    display: flex;
}

.overlay-images-desktop {
    display: none;
}

.overlay-text {
    color: #e6be37;
    font-family: 'Gotham Bold Italic', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin: 10px 20px;
    max-width: 90%;
}


/* Mobile devices (up to 949px) */
@media screen and (max-width: 950px) {
    .overlay-images-mobile {
        display: flex;
    }

    .overlay-images-desktop {
        display: none;
    }

}

/* Desktop devices (768px and above) */
@media screen and (min-width: 950px) {
    .overlay-images-mobile {
        display: none;
    }

    .overlay-images-desktop {
        display: flex;
    }
}


@media screen and (min-width: 1px) and (max-width: 349px) {

    .info-fundo {
        height: 550px !important;
    }

    .mecanica-mobile1 {
        width: 100% !important;
        margin-top: 10% !important;
    }

    .mecanica-mobile2 {
        width: 100% !important;
    }

    .overlay-text {
        font-size: 12px;
        margin: 8px 15px;
    }

}

@media screen and (min-width: 349px) and (max-width: 400px) {

    .info-fundo {
        height: 500px !important;
    }

    .mecanica-mobile1 {
        width: 100% !important;
        margin-top: 10% !important;
    }

    .mecanica-mobile2 {
        width: 100% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
    }

}

@media screen and (min-width: 400px) and (max-width: 420px) {

    .info-fundo {
        height: 500px !important;
    }

    .mecanica-mobile1 {
        width: 100% !important;
        margin-top: 7% !important;
    }

    .mecanica-mobile2 {
        width: 100% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: 2% !important;
    }

}

@media screen and (min-width: 420px) and (max-width: 450px) {

    .info-fundo {
        height: 500px !important;
    }

    .mecanica-mobile1 {
        width: 100% !important;
        margin-top: 7% !important;
    }

    .mecanica-mobile2 {
        width: 100% !important;
        margin-top: -5% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: 2% !important;
    }

}

@media screen and (min-width: 450px) and (max-width: 468px) {

    .info-fundo {
        height: 500px !important;
    }

    .mecanica-mobile1 {
        width: 100% !important;
        margin-top: 7% !important;
    }

    .mecanica-mobile2 {
        width: 100% !important;
        margin-top: -5% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -2% !important;
    }

}

@media screen and (min-width: 468px) and (max-width: 484px) {

    .info-fundo {
        height: 500px !important;
    }

    .mecanica-mobile1 {
        width: 100% !important;
        margin-top: 7% !important;
    }

    .mecanica-mobile2 {
        width: 100% !important;
        margin-top: -5% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -5% !important;
    }

}

@media screen and (min-width: 484px) and (max-width: 517px) {

    .info-fundo {
        height: 500px !important;
    }

    .mecanica-mobile1 {
        width: 100% !important;
        margin-top: 4% !important;
    }

    .mecanica-mobile2 {
        width: 100% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -5% !important;
    }

}

@media screen and (min-width: 517px) and (max-width: 529px) {

    .info-fundo {
        height: 500px !important;
    }

    .mecanica-mobile1 {
        width: 100% !important;
        margin-top: 2% !important;
    }

    .mecanica-mobile2 {
        width: 100% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -5% !important;
    }

}

@media screen and (min-width: 529px) and (max-width: 540px) {

    .info-fundo {
        height: 500px !important;
    }

    .mecanica-mobile1 {
        width: 90% !important;
        margin-top: 2% !important;
    }

    .mecanica-mobile2 {
        width: 90% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: 2% !important;
    }

}

@media screen and (min-width: 540px) and (max-width: 570px) {

    .info-fundo {
        height: 500px !important;
    }

    .mecanica-mobile1 {
        width: 90% !important;
        margin-top: 2% !important;
    }

    .mecanica-mobile2 {
        width: 90% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -2% !important;
    }

}

@media screen and (min-width: 570px) and (max-width: 595px) {

    .info-fundo {
        height: 500px !important;
    }

    .mecanica-mobile1 {
        width: 90% !important;
        margin-top: 2% !important;
    }

    .mecanica-mobile2 {
        width: 90% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -5% !important;
    }

}

@media screen and (min-width: 595px) and (max-width: 600px) {

    .info-fundo {
        height: 500px !important;
    }

    .mecanica-mobile1 {
        width: 90% !important;
        margin-top: 2% !important;
    }

    .mecanica-mobile2 {
        width: 90% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -5% !important;
    }

}

@media screen and (min-width: 600px) and (max-width: 620px) {

    .info-fundo {
        height: 500px !important;
    }

    .mecanica-mobile1 {
        width: 90% !important;
        margin-top: 2% !important;
    }

    .mecanica-mobile2 {
        width: 90% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -6% !important;
    }

}

@media screen and (min-width: 620px) and (max-width: 639px) {

    .info-fundo {
        height: 515px !important;
    }

    .mecanica-mobile1 {
        width: 90% !important;
        margin-top: 2% !important;
    }

    .mecanica-mobile2 {
        width: 90% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -6% !important;
    }



}

@media screen and (min-width: 639px) and (max-width: 662px) {

    .info-fundo {
        height: 515px !important;
    }

    .mecanica-mobile1 {
        width: 80% !important;
        margin-top: 2% !important;
    }

    .mecanica-mobile2 {
        width: 80% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: 1% !important;
    }



}

@media screen and (min-width: 662px) and (max-width: 700px) {

    .info-fundo {
        height: 515px !important;
    }

    .mecanica-mobile1 {
        width: 80% !important;
        margin-top: 2% !important;
    }

    .mecanica-mobile2 {
        width: 80% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -5% !important;
    }



}

@media screen and (min-width: 700px) and (max-width: 730px) {

    .info-fundo {
        height: 515px !important;
    }

    .mecanica-mobile1 {
        width: 80% !important;
        margin-top: 1% !important;
    }

    .mecanica-mobile2 {
        width: 80% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -5% !important;
    }



}

@media screen and (min-width: 730px) and (max-width: 769px) {

    .info-fundo {
        height: 515px !important;
    }

    .mecanica-mobile1 {
        width: 75% !important;
        margin-top: 1% !important;
    }

    .mecanica-mobile2 {
        width: 75% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -3% !important;
    }



}

@media screen and (min-width: 769px) and (max-width: 830px) {

    .info-fundo {
        height: 515px !important;
    }

    .mecanica-mobile1 {
        width: 70% !important;
        margin-top: 1% !important;
    }

    .mecanica-mobile2 {
        width: 70% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -3% !important;
    }



}

@media screen and (min-width: 830px) and (max-width: 910px) {

    .info-fundo {
        height: 515px !important;
    }

    .mecanica-mobile1 {
        width: 65% !important;
        margin-top: 1% !important;
    }

    .mecanica-mobile2 {
        width: 65% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -3% !important;
    }



}

@media screen and (min-width: 910px) and (max-width: 949px) {

    .info-fundo {
        height: 515px !important;
    }

    .mecanica-mobile1 {
        width: 60% !important;
        margin-top: 1% !important;
    }

    .mecanica-mobile2 {
        width: 60% !important;
        margin-top: -8% !important;
    }

    .overlay-text {
        font-size: 8px;
        margin: 8px 15px;
        margin-top: -3% !important;
    }



}

@media screen and (min-width: 949px) and (max-width: 980px) {

    .info-fundo {
        height: 300px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 7% !important;
    }


}


@media screen and (min-width: 980px) and (max-width: 1125px) {

    .info-fundo {
        height: 300px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 5% !important;
    }


}

@media screen and (min-width: 1125px) and (max-width: 1230px) {

    .info-fundo {
        height: 300px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 3% !important;
    }


}

@media screen and (min-width: 1230px) and (max-width: 1300px) {

    .info-fundo {
        height: 330px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 3% !important;
    }


}

@media screen and (min-width: 1300px) and (max-width: 1369px) {

    .info-fundo {
        height: 330px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 3% !important;
    }


}

@media screen and (min-width: 1369px) and (max-width: 1468px) {

    .info-fundo {
        height: 350px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 3% !important;
    }


}

@media screen and (min-width: 1468px) and (max-width: 1512px) {

    .info-fundo {
        height: 360px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 3% !important;
    }


}

@media screen and (min-width: 1512px) and (max-width: 1580px) {

    .info-fundo {
        height: 360px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 2% !important;
    }


}

@media screen and (min-width: 1580px) and (max-width: 1680px) {

    .info-fundo {
        height: 380px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 2% !important;
    }


}

@media screen and (min-width: 1680px) and (max-width: 1780px) {

    .info-fundo {
        height: 400px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 2% !important;
    }


}

@media screen and (min-width: 1780px) and (max-width: 1880px) {

    .info-fundo {
        height: 420px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 2% !important;
    }


}

@media screen and (min-width: 1880px) and (max-width: 2030px) {

    .info-fundo {
        height: 450px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 2% !important;
    }


}

@media screen and (min-width: 2030px) and (max-width: 2100px) {

    .info-fundo {
        height: 470px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 2% !important;
    }


}

@media screen and (min-width: 2100px) and (max-width: 2200px) {

    .info-fundo {
        height: 500px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 2% !important;
    }


}

@media screen and (min-width: 2200px) and (max-width: 2350px) {

    .info-fundo {
        height: 520px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 2% !important;
    }


}

@media screen and (min-width: 2350px) and (max-width: 9999px) {

    .info-fundo {
        height: 590px !important;
    }


    .mecanica-desktop {
        width: 90% !important;
        margin-top: 2% !important;
    }


}
























/* INFO SECTION */


.red-container {
    width: 100%;
    height: 5px;
    background-color: #ff3d00;
}

.red-container-overlay-image {
    position: absolute;
    z-index: 5;

}

.como-participar-one {
    z-index: 10;
}

.como-participar-desktop {
    visibility: hidden;


}



@media screen and (min-width: 1px) and (max-width: 349px) {
    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 14.1%;
        left: 18%;
        width: 65%;
        height: auto;
    }

    .como-participar-two {
        top: 18.3%;
        left: 18%;
        width: 65%;
        height: auto;
    }

    .linha-amarela {
        top: 15.7%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }




}



/* HEADER RESPONSIVITY */



@media screen and (min-width: 349px) and (max-width: 360px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 2.9%;
        left: 10%;
        width: 85%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 53%;
        width: 45%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 600px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.2%;
        left: -5.3%;
        width: 50%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8%;
        left: 54%;
        width: 50%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 6.5%;
        left: 55%;
        width: 40%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 6.4%;
        left: 8%;
        width: 35%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 40%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 45%;
        height: auto;
    }

    .compras-overlay {
        top: 9.6%;
        left: 3%;
        width: 40%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 11.9%;
        left: 15%;
        width: 70%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 14.1%;
        left: 18%;
        width: 65%;
        height: auto;
    }

    .como-participar-two {
        top: 18.3%;
        left: 18%;
        width: 65%;
        height: auto;
    }

    .linha-amarela {
        top: 15.7%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }


}


@media screen and (min-width: 360px) and (max-width: 370px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 2.8%;
        left: 10%;
        width: 85%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 53%;
        width: 45%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 600px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.2%;
        left: -5.3%;
        width: 50%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8%;
        left: 54%;
        width: 50%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 6.5%;
        left: 55%;
        width: 40%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 6.4%;
        left: 8%;
        width: 35%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 40%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 45%;
        height: auto;
    }

    .compras-overlay {
        top: 9.6%;
        left: 3%;
        width: 40%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 11.9%;
        left: 15%;
        width: 70%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 14%;
        left: 18%;
        width: 65%;
        height: auto;
    }

    .como-participar-two {
        top: 18.3%;
        left: 18%;
        width: 65%;
        height: auto;
    }

    .linha-amarela {
        top: 15.7%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }





}


@media screen and (min-width: 370px) and (max-width: 376px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 2.8%;
        left: 10%;
        width: 85%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 53%;
        width: 45%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 600px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.2%;
        left: -5.3%;
        width: 50%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8%;
        left: 54%;
        width: 50%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 6.5%;
        left: 55%;
        width: 40%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 6.4%;
        left: 8%;
        width: 35%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 40%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 45%;
        height: auto;
    }

    .compras-overlay {
        top: 9.6%;
        left: 3%;
        width: 40%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 11.9%;
        left: 15%;
        width: 70%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 14%;
        left: 21.4%;
        width: 60%;
        height: auto;
    }

    .como-participar-two {
        top: 18.3%;
        left: 21.4%;
        width: 60%;
        height: auto;
    }

    .linha-amarela {
        top: 15.7%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }





}


@media screen and (min-width: 376px) and (max-width: 390px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 2.6%;
        left: 10%;
        width: 85%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 53%;
        width: 45%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.2%;
        left: -5.3%;
        width: 50%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8%;
        left: 54%;
        width: 50%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 6.5%;
        left: 55%;
        width: 40%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 6.4%;
        left: 8%;
        width: 35%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 40%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 45%;
        height: auto;
    }

    .compras-overlay {
        top: 9.6%;
        left: 3%;
        width: 40%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 11.9%;
        left: 15%;
        width: 70%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 14.2%;
        left: 21.7%;
        width: 57%;
        height: auto;
    }

    .como-participar-two {
        top: 18.3%;
        left: 21.4%;
        width: 57%;
        height: auto;
    }

    .linha-amarela {
        top: 15.7%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }





}


@media screen and (min-width: 390px) and (max-width: 400px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 2.6%;
        left: 10%;
        width: 85%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 53%;
        width: 45%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.2%;
        left: -5.3%;
        width: 50%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8%;
        left: 54%;
        width: 50%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 6.5%;
        left: 55%;
        width: 40%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 6.4%;
        left: 8%;
        width: 35%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 40%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 45%;
        height: auto;
    }

    .compras-overlay {
        top: 9.6%;
        left: 3%;
        width: 40%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 11.9%;
        left: 15%;
        width: 70%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 14.2%;
        left: 21.7%;
        width: 57%;
        height: auto;
    }

    .como-participar-two {
        top: 18.3%;
        left: 21.4%;
        width: 57%;
        height: auto;
    }

    .linha-amarela {
        top: 15.7%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }





}


@media screen and (min-width: 400px) and (max-width: 420px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 2.5%;
        left: 10%;
        width: 85%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 53%;
        width: 45%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.2%;
        left: -5.3%;
        width: 50%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8%;
        left: 54%;
        width: 50%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 6.5%;
        left: 55%;
        width: 40%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 6.4%;
        left: 8%;
        width: 35%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 40%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 45%;
        height: auto;
    }

    .compras-overlay {
        top: 9.6%;
        left: 3%;
        width: 40%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 12.3%;
        left: 15%;
        width: 70%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 14.5%;
        left: 21.7%;
        width: 57%;
        height: auto;
    }

    .linha-amarela {
        top: 16.2%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 18.8%;
        left: 21.4%;
        width: 57%;
        height: auto;
    }



}


@media screen and (min-width: 420px) and (max-width: 435px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 2.3%;
        left: 10%;
        width: 85%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 53%;
        width: 40%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.2%;
        left: -5.3%;
        width: 50%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8%;
        left: 54%;
        width: 50%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 6.5%;
        left: 55%;
        width: 40%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 6.4%;
        left: 8%;
        width: 35%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 40%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 45%;
        height: auto;
    }

    .compras-overlay {
        top: 9.6%;
        left: 3%;
        width: 40%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 12.3%;
        left: 15%;
        width: 70%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 14.5%;
        left: 21.7%;
        width: 55%;
        height: auto;
    }

    .linha-amarela {
        top: 16.2%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 18.6%;
        left: 21.4%;
        width: 55%;
        height: auto;
    }



}


@media screen and (min-width: 435px) and (max-width: 450px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 2.2%;
        left: 10%;
        width: 85%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 53%;
        width: 38%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.2%;
        left: -5.3%;
        width: 50%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8%;
        left: 54%;
        width: 50%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 6.5%;
        left: 55%;
        width: 40%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 6.4%;
        left: 8%;
        width: 35%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 40%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 45%;
        height: auto;
    }

    .compras-overlay {
        top: 9.6%;
        left: 3%;
        width: 40%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 12.3%;
        left: 15%;
        width: 70%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 14.7%;
        left: 25.5%;
        width: 50%;
        height: auto;
    }

    .linha-amarela {
        top: 16.2%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 18.8%;
        left: 25.5%;
        width: 50%;
        height: auto;
    }



}


@media screen and (min-width: 450px) and (max-width: 470px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }



    .raspou-overlay {
        top: 0.5%;
        left: 53%;
        width: 35%;
        height: auto;
    }



    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.2%;
        left: -5.3%;
        width: 50%;
        height: auto;
    }



    .participe-text-overlay {
        top: 12.5%;
        left: 17.5%;
        width: 67%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 15.1%;
        left: 25.5%;
        width: 50%;
        height: auto;
    }

    .linha-amarela {
        top: 16.8%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 19.4%;
        left: 25.5%;
        width: 50%;
        height: auto;
    }



}


@media screen and (min-width: 470px) and (max-width: 490px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 2.05%;
        left: 10%;
        width: 83%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 53%;
        width: 35%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.2%;
        left: -5.3%;
        width: 50%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8%;
        left: 54%;
        width: 50%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 6.7%;
        left: 57%;
        width: 32%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 6.6%;
        left: 8%;
        width: 35%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 40%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 45%;
        height: auto;
    }

    .compras-overlay {
        top: 9.6%;
        left: 3%;
        width: 40%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 12.7%;
        left: 17.5%;
        width: 67%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 15.3%;
        left: 25.5%;
        width: 49%;
        height: auto;
    }

    .linha-amarela {
        top: 17%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 19.7%;
        left: 25.5%;
        width: 49%;
        height: auto;
    }



}


@media screen and (min-width: 490px) and (max-width: 510px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.89%;
        left: 10%;
        width: 83%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 55.5%;
        width: 35%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.2%;
        left: -5.3%;
        width: 50%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8.6%;
        left: 54%;
        width: 50%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 6.8%;
        left: 57%;
        width: 32%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 6.6%;
        left: 8%;
        width: 35%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 40%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 45%;
        height: auto;
    }

    .compras-overlay {
        top: 9.6%;
        left: 3%;
        width: 40%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 12.7%;
        left: 19%;
        width: 60%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 15.3%;
        left: 25.5%;
        width: 49%;
        height: auto;
    }

    .linha-amarela {
        top: 17.2%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 19.7%;
        left: 25.5%;
        width: 49%;
        height: auto;
    }



}


@media screen and (min-width: 510px) and (max-width: 530px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.89%;
        left: 10%;
        width: 80%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 55.5%;
        width: 35%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.2%;
        left: -5.3%;
        width: 50%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8.6%;
        left: 54%;
        width: 50%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7%;
        left: 64%;
        width: 25%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 6.6%;
        left: 8%;
        width: 35%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 37%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 10.5%;
        left: 3%;
        width: 30%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 12.9%;
        left: 20%;
        width: 58%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 15.3%;
        left: 27%;
        width: 45%;
        height: auto;
    }

    .linha-amarela {
        top: 17.2%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 19.7%;
        left: 27%;
        width: 45%;
        height: auto;
    }



}


@media screen and (min-width: 530px) and (max-width: 550px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.89%;
        left: 12%;
        width: 78%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 55.5%;
        width: 35%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 45%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8.6%;
        left: 54%;
        width: 50%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7%;
        left: 66%;
        width: 25%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 7%;
        left: 8%;
        width: 30%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 37%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 11%;
        left: 3%;
        width: 30%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 12.9%;
        left: 21%;
        width: 58%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 15.3%;
        left: 27%;
        width: 45%;
        height: auto;
    }

    .linha-amarela {
        top: 17.2%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 19.7%;
        left: 27%;
        width: 45%;
        height: auto;
    }



}


@media screen and (min-width: 550px) and (max-width: 580px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.95%;
        left: 15%;
        width: 72%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 62%;
        width: 33%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 40%;
        height: auto;
    }

    .frigideira-overlay {
        top: 8.6%;
        left: 64%;
        width: 40%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7%;
        left: 66%;
        width: 25%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 7%;
        left: 8%;
        width: 30%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 37%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 11%;
        left: 3%;
        width: 30%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 12.9%;
        left: 22%;
        width: 55%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 600px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 15.3%;
        left: 28.5%;
        width: 42%;
        height: auto;
    }

    .linha-amarela {
        top: 17.1%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 19.7%;
        left: 28.5%;
        width: 42%;
        height: auto;
    }



}


@media screen and (min-width: 580px) and (max-width: 600px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.85%;
        left: 15%;
        width: 72%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 62%;
        width: 33%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 40%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9%;
        left: 64%;
        width: 40%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7%;
        left: 66%;
        width: 25%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 7%;
        left: 8%;
        width: 30%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 37%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 11%;
        left: 3%;
        width: 30%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 13.5%;
        left: 26%;
        width: 50%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 650px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 15.9%;
        left: 28.5%;
        width: 42%;
        height: auto;
    }

    .linha-amarela {
        top: 18%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 20.95%;
        left: 28.5%;
        width: 42%;
        height: auto;
    }



}


@media screen and (min-width: 600px) and (max-width: 620px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.85%;
        left: 17%;
        width: 68%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 62%;
        width: 33%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 40%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9%;
        left: 66%;
        width: 35%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7%;
        left: 66%;
        width: 25%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 7%;
        left: 8%;
        width: 30%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 37%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 11%;
        left: 3%;
        width: 30%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 13.5%;
        left: 26%;
        width: 50%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 650px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 15.9%;
        left: 31.3%;
        width: 38%;
        height: auto;
    }

    .linha-amarela {
        top: 18%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 20.95%;
        left: 31.3%;
        width: 38%;
        height: auto;
    }



}


@media screen and (min-width: 620px) and (max-width: 640px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.80%;
        left: 17%;
        width: 68%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 62%;
        width: 33%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 640px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 40%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9%;
        left: 66%;
        width: 35%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7%;
        left: 66%;
        width: 25%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 7%;
        left: 8%;
        width: 30%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 37%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 11%;
        left: 3%;
        width: 30%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 13.5%;
        left: 26%;
        width: 50%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 650px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 15.9%;
        left: 31.3%;
        width: 38%;
        height: auto;
    }

    .linha-amarela {
        top: 18%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 20.95%;
        left: 31.3%;
        width: 38%;
        height: auto;
    }



}


@media screen and (min-width: 640px) and (max-width: 651px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.80%;
        left: 17%;
        width: 68%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 62%;
        width: 33%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 690px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 40%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9.7%;
        left: 65%;
        width: 37%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.5%;
        left: 68%;
        width: 25%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 7%;
        left: 8%;
        width: 30%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 37%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 11%;
        left: 3%;
        width: 30%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 13.8%;
        left: 26%;
        width: 50%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 650px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 16.5%;
        left: 31.3%;
        width: 38%;
        height: auto;
    }

    .linha-amarela {
        top: 18.7%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 21.5%;
        left: 31.3%;
        width: 38%;
        height: auto;
    }



}


@media screen and (min-width: 651px) and (max-width: 680px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.66%;
        left: 17.4%;
        width: 65%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 62%;
        width: 33%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 690px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 43%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9.7%;
        left: 65%;
        width: 37%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.5%;
        left: 68%;
        width: 25%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 7%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 37%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 11.5%;
        left: 3%;
        width: 30%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 14.2%;
        left: 27.5%;
        width: 45%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 650px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 17%;
        left: 31.3%;
        width: 38%;
        height: auto;
    }

    .linha-amarela {
        top: 19.4%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 22.4%;
        left: 31.3%;
        width: 38%;
        height: auto;
    }



}


@media screen and (min-width: 680px) and (max-width: 710px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.66%;
        left: 17.4%;
        width: 65%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 62%;
        width: 33%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 690px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 43%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9.7%;
        left: 65%;
        width: 37%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.5%;
        left: 68%;
        width: 25%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 7%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 37%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 11.5%;
        left: 3%;
        width: 30%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 14.5%;
        left: 27.5%;
        width: 45%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 650px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 17%;
        left: 31.3%;
        width: 38%;
        height: auto;
    }

    .linha-amarela {
        top: 19.4%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 22.4%;
        left: 31.3%;
        width: 38%;
        height: auto;
    }



}


@media screen and (min-width: 710px) and (max-width: 720px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.66%;
        left: 20%;
        width: 62%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 62%;
        width: 33%;
        height: auto;
    }




    /* HEADER 2 */


    .como-participar-fundo {
        height: 690px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 43%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9.7%;
        left: 65%;
        width: 37%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.5%;
        left: 68%;
        width: 25%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 7%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 37%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 11.5%;
        left: 3%;
        width: 30%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 14.5%;
        left: 29.5%;
        width: 42%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 650px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 17%;
        left: 31.3%;
        width: 38%;
        height: auto;
    }

    .linha-amarela {
        top: 19.6%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 22.4%;
        left: 31.3%;
        width: 38%;
        height: auto;
    }



}


@media screen and (min-width: 720px) and (max-width: 745px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.66%;
        left: 20%;
        width: 62%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 62%;
        width: 33%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 690px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 43%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9.7%;
        left: 65%;
        width: 37%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.5%;
        left: 68%;
        width: 25%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 7%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 37%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 11.5%;
        left: 3%;
        width: 30%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 14.5%;
        left: 29.5%;
        width: 42%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 650px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 17%;
        left: 35%;
        width: 33%;
        height: auto;
    }

    .linha-amarela {
        top: 19.4%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 22.4%;
        left: 35%;
        width: 33%;
        height: auto;
    }



}


@media screen and (min-width: 745px) and (max-width: 769px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.52%;
        left: 20%;
        width: 62%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 62%;
        width: 33%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 690px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 43%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9.7%;
        left: 65%;
        width: 37%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.5%;
        left: 68%;
        width: 25%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 7%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8%;
        left: 4%;
        width: 37%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 12.2%;
        left: 3%;
        width: 30%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 14.5%;
        left: 29.5%;
        width: 42%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 650px;
        object-fit: cover;
    }


    .como-participar-one {
        top: 17.5%;
        left: 35%;
        width: 33%;
        height: auto;
    }

    .linha-amarela {
        top: 19.75%;
        left: 50%;
        transform: rotate(90deg);
        height: auto;
    }

    .como-participar-two {
        top: 22.8%;
        left: 35%;
        width: 33%;
        height: auto;
    }



}


@media screen and (min-width: 769px) and (max-width: 800px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1.40%;
        left: 20%;
        width: 62%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 62%;
        width: 33%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 690px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 43%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9.7%;
        left: 65%;
        width: 37%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.8%;
        left: 70%;
        width: 23%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 12.5%;
        left: 3%;
        width: 26%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 15.2%;
        left: 29.5%;
        width: 42%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 18.3%;
        width: 83%;
        height: auto;
    }






}


@media screen and (min-width: 800px) and (max-width: 840px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 1%;
        left: 21%;
        width: 62%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 68%;
        width: 28%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 690px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 43%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9.7%;
        left: 65%;
        width: 37%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.8%;
        left: 70%;
        width: 23%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 12.5%;
        left: 3%;
        width: 26%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 15.2%;
        left: 29.5%;
        width: 42%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 18.3%;
        width: 83%;
        height: auto;
    }






}


@media screen and (min-width: 840px) and (max-width: 851px) {


    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.65%;
        left: 21%;
        width: 62%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 68%;
        width: 28%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 690px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 43%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9.7%;
        left: 65%;
        width: 37%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.8%;
        left: 70%;
        width: 23%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 13.5%;
        left: 3%;
        width: 26%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 15.2%;
        left: 33%;
        width: 38%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 18.15%;
        width: 80%;
        height: auto;
    }






}


@media screen and (min-width: 851px) and (max-width: 890px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.65%;
        left: 21%;
        width: 62%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 68%;
        width: 28%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 690px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 7.8%;
        left: -5.3%;
        width: 43%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9.7%;
        left: 65%;
        width: 37%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.8%;
        left: 70%;
        width: 23%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 13.5%;
        left: 3%;
        width: 26%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 10.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 15.8%;
        left: 33%;
        width: 38%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 19%;
        width: 70%;
        height: auto;
    }


}


@media screen and (min-width: 890px) and (max-width: 900px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.65%;
        left: 21%;
        width: 62%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 68%;
        width: 28%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 690px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 8.5%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 9.7%;
        left: 65%;
        width: 37%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.8%;
        left: 70%;
        width: 23%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 13.5%;
        left: 3%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 11.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 15.8%;
        left: 33%;
        width: 38%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 19%;
        width: 70%;
        height: auto;
    }


}


@media screen and (min-width: 900px) and (max-width: 920px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.45%;
        left: 21%;
        width: 62%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 68%;
        width: 28%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 690px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 8.5%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 10%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.8%;
        left: 70%;
        width: 23%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 13.5%;
        left: 3%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 11.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 15.8%;
        left: 33%;
        width: 34%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 19%;
        width: 70%;
        height: auto;
    }


}


@media screen and (min-width: 920px) and (max-width: 950px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.80%;
        left: 24%;
        width: 55%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 68%;
        width: 28%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 800px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 8.5%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 67%;
        width: 26%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 13%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 11.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 17%;
        left: 32%;
        width: 38%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 20.3%;
        width: 70%;
        height: auto;
    }


}


@media screen and (min-width: 950px) and (max-width: 970px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.80%;
        left: 24%;
        width: 55%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 24%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 800px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 8.5%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 67%;
        width: 26%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 13%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 9.4%;
        left: 42%;
        width: 20%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 11.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 17%;
        left: 32%;
        width: 38%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 20%;
        width: 70%;
        height: auto;
    }


}


@media screen and (min-width: 970px) and (max-width: 990px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.80%;
        left: 23.5%;
        width: 55%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 24%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 800px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 8.5%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 67%;
        width: 26%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 13%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 17%;
        left: 35%;
        width: 32%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 20%;
        width: 70%;
        height: auto;
    }


}


@media screen and (min-width: 990px) and (max-width: 1000px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.55%;
        left: 23.7%;
        width: 55%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 24%;
        height: auto;
    }




    /* HEADER 2 */


    .como-participar-fundo {
        height: 1000px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 9%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 67%;
        width: 26%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 19%;
        left: 31.5%;
        width: 40%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 22.50%;
        width: 65%;
        height: auto;
    }


}


@media screen and (min-width: 1000px) and (max-width: 1150px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.55%;
        left: 23.7%;
        width: 55%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 24%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1000px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 9%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 67%;
        width: 26%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 14%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 19%;
        left: 30.5%;
        width: 43%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 22.50%;
        width: 65%;
        height: auto;
    }


}


@media screen and (min-width: 1030px) and (max-width: 1060px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.25%;
        left: 23.7%;
        width: 55%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 24%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1000px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 9%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 67%;
        width: 26%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 14%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 19%;
        left: 30.5%;
        width: 43%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 22.50%;
        width: 65%;
        height: auto;
    }


}


@media screen and (min-width: 1060px) and (max-width: 1080px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.70%;
        left: 27%;
        width: 48%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 24%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1000px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 9%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 67%;
        width: 26%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 14%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 19%;
        left: 30.5%;
        width: 43%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 370px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 22.2%;
        width: 65%;
        height: auto;
    }


}


@media screen and (min-width: 1080px) and (max-width: 1120px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.70%;
        left: 27%;
        width: 48%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 24%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1000px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 9%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 67%;
        width: 23.5%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 14%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 18.8%;
        left: 30.5%;
        width: 40%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 450px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 22.8%;
        width: 65%;
        height: auto;
    }



}


@media screen and (min-width: 1120px) and (max-width: 1150px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.60%;
        left: 27%;
        width: 48%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 24%;
        height: auto;
    }




    /* HEADER 2 */


    .como-participar-fundo {
        height: 1000px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 9%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 67%;
        width: 23.5%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 14%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 18.4%;
        left: 30.5%;
        width: 40%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 450px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 22.6%;
        width: 65%;
        height: auto;
    }



}


@media screen and (min-width: 1150px) and (max-width: 1250px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.60%;
        left: 27%;
        width: 48%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 24%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 1000px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 9%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 67%;
        width: 23.5%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 14%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 18.4%;
        left: 30.5%;
        width: 40%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 450px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 22.6%;
        width: 65%;
        height: auto;
    }



}


@media screen and (min-width: 1190px) and (max-width: 1200px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.25%;
        left: 27%;
        width: 48%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 22%;
        height: auto;
    }




    /* HEADER 2 */


    .como-participar-fundo {
        height: 1000px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 9%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 67%;
        width: 23.5%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 14%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 18.4%;
        left: 30.5%;
        width: 40%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 450px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 22.4%;
        width: 65%;
        height: auto;
    }



}


@media screen and (min-width: 1200px) and (max-width: 1250px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: 0.18%;
        left: 27%;
        width: 48%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 22%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1000px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 9%;
        left: -5.3%;
        width: 39%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 67%;
        width: 20.5%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 14%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 18.4%;
        left: 33.7%;
        width: 35%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 450px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 21.7%;
        width: 65%;
        height: auto;
    }



}


@media screen and (min-width: 1250px) and (max-width: 1330px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.3%;
        left: 27%;
        width: 48%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 20%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 1000px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 32%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 14%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 18.4%;
        left: 33.7%;
        width: 31%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 450px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 21.7%;
        width: 60%;
        height: auto;
    }



}


@media screen and (min-width: 1330px) and (max-width: 1390px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.55%;
        left: 27%;
        width: 48%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 20%;
        height: auto;
    }




    /* HEADER 2 */


    .como-participar-fundo {
        height: 1200px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 32%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 14%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 19.3%;
        left: 32.2%;
        width: 40%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 450px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 24%;
        width: 55%;
        height: auto;
    }



}


@media screen and (min-width: 1390px) and (max-width: 1480px) {

    /* HEADER 1 */

    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.75%;
        left: 27%;
        width: 48%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 20%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 1200px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 19.3%;
        left: 32.2%;
        width: 40%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 450px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 23.6%;
        width: 55%;
        height: auto;
    }



}


@media screen and (min-width: 1480px) and (max-width: 1510px) {

    /* HEADER 1 */

    .header-banner {

        height: 530px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.44%;
        left: 27%;
        width: 48%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 20%;
        height: auto;
    }




    /* HEADER 2 */


    .como-participar-fundo {
        height: 1200px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 32%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 19.3%;
        left: 32.2%;
        width: 40%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 450px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 24.1%;
        width: 55%;
        height: auto;
    }



}


@media screen and (min-width: 1510px) and (max-width: 1550px) {

    /* HEADER 1 */

    .header-banner {

        height: 530px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.44%;
        left: 27%;
        width: 48%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 20%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 1200px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 26%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 20.5%;
        left: 36.2%;
        width: 30%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 450px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 23.8%;
        width: 55%;
        height: auto;
    }



}


@media screen and (min-width: 1550px) and (max-width: 1650px) {

    /* HEADER 1 */

    .header-banner {

        height: 530px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.55%;
        left: 27%;
        width: 48%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 20%;
        height: auto;
    }




    /* HEADER 2 */


    .como-participar-fundo {
        height: 1200px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 26%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 20.5%;
        left: 36.2%;
        width: 30%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 475px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 23.8%;
        width: 55%;
        height: auto;
    }



}


@media screen and (min-width: 1650px) and (max-width: 1700px) {


    /* HEADER 1 */

    .header-banner {

        height: 530px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.55%;
        left: 27%;
        width: 45%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 20%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1300px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 26%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 21%;
        left: 36.2%;
        width: 30%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 490px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 24.70%;
        width: 53%;
        height: auto;
    }



}


@media screen and (min-width: 1700px) and (max-width: 1750px) {


    /* HEADER 1 */

    .header-banner {

        height: 530px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.65%;
        left: 27%;
        width: 45%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 20%;
        height: auto;
    }






    /* HEADER 2 */


    .como-participar-fundo {
        height: 1500px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 26%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 21%;
        left: 34.2%;
        width: 34%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 490px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 25.2%;
        width: 53%;
        height: auto;
    }



}


@media screen and (min-width: 1750px) and (max-width: 1800px) {


    /* HEADER 1 */

    .header-banner {

        height: 530px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.85%;
        left: 27%;
        width: 45%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 20%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1500px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 26%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 21%;
        left: 34.2%;
        width: 34%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 490px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 25.2%;
        width: 53%;
        height: auto;
    }



}


@media screen and (min-width: 1800px) and (max-width: 1850px) {


    /* HEADER 1 */

    .header-banner {

        height: 530px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.4%;
        left: 31%;
        width: 40%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 16.5%;
        height: auto;
    }




    /* HEADER 2 */


    .como-participar-fundo {
        height: 1500px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 26%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 21%;
        left: 34.2%;
        width: 34%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 490px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 25.5%;
        width: 47%;
        height: auto;
    }



}


@media screen and (min-width: 1850px) and (max-width: 1900px) {


    /* HEADER 1 */

    .header-banner {

        height: 530px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.4%;
        left: 31%;
        width: 40%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 16.5%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1500px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 26%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 21%;
        left: 34.2%;
        width: 34%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 490px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 24.9%;
        width: 47%;
        height: auto;
    }



}


@media screen and (min-width: 1900px) and (max-width: 2000px) {


    /* HEADER 1 */

    .header-banner {

        height: 530px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.8%;
        left: 31%;
        width: 40%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 16.5%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1500px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 8.3%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 25%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 26%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 10%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 21%;
        left: 34.2%;
        width: 34%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 490px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 24.88%;
        width: 47%;
        height: auto;
    }



}


@media screen and (min-width: 2000px) and (max-width: 2100px) {


    /* HEADER 1 */

    .header-banner {

        height: 530px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.6%;
        left: 33%;
        width: 37%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 16.5%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1700px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.6%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 22%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 26%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 22%;
        left: 34.2%;
        width: 34%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 490px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 26%;
        width: 47%;
        height: auto;
    }



}


@media screen and (min-width: 2100px) and (max-width: 2200px) {


    /* HEADER 1 */

    .header-banner {

        height: 530px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.6%;
        left: 33%;
        width: 37%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 16.5%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1700px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.6%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 22%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 26%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 21%;
        left: 34.2%;
        width: 34%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 680px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 26%;
        width: 47%;
        height: auto;
    }



}


@media screen and (min-width: 2200px) and (max-width: 2400px) {


    /* HEADER 1 */

    .header-banner {

        height: 590px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.6%;
        left: 33%;
        width: 37%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 16.5%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1800px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.6%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 22%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 26%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 21%;
        left: 34.2%;
        width: 34%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 680px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 26%;
        width: 47%;
        height: auto;
    }



}


@media screen and (min-width: 2400px) and (max-width: 2500px) {


    /* HEADER 1 */

    .header-banner {

        height: 590px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.6%;
        left: 33%;
        width: 35%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 16.5%;
        height: auto;
    }





    /* HEADER 2 */


    .como-participar-fundo {
        height: 1800px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.6%;
        left: 69%;
        width: 19%;
        height: auto;
    }


    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .participe-text-overlay {
        top: 21%;
        left: 34.2%;
        width: 34%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 680px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 26%;
        width: 47%;
        height: auto;
    }



}


@media screen and (min-width: 2500px) {


    /* HEADER 1 */

    .header-banner {

        height: 590px !important;

    }

    .bolo-overlay {
        position: absolute;
        top: -0.6%;
        left: 33%;
        width: 35%;
        height: auto;
        position: absolute;
        z-index: 2;
    }


    .raspou-overlay {
        top: 1%;
        left: 66%;
        width: 16.5%;
        height: auto;
    }




    /* HEADER 2 */


    .como-participar-fundo {
        height: 1800px;
        object-fit: cover;
    }

    .raspadinha-overlay {
        top: 10.5%;
        left: -5.3%;
        width: 34%;
        height: auto;
    }

    .frigideira-overlay {
        top: 11.5%;
        left: 68%;
        width: 33%;
        height: auto;
    }

    .muitos-premios-overlay {
        top: 7.6%;
        left: 69%;
        width: 19%;
        height: auto;
    }

    .presente-rosa-overlay {
        top: 8%;
        left: 8%;
        width: 22%;
        height: auto;
        z-index: 0;
    }

    .faca-laranja-overlay {
        top: 8.8%;
        left: 4%;
        width: 26%;
        height: auto;
    }

    .pote-azul-overlay {
        top: 8%;
        left: 30%;
        width: 35%;
        height: auto;
    }

    .compras-overlay {
        top: 15.8%;
        left: 13%;
        width: 24%;
        height: auto;
    }

    .faca-rosa-overlay {
        top: 11%;
        left: 42%;
        width: 18.5%;
        height: auto;
    }

    .pote-roxo-overlay {
        top: 13.5%;
        left: 47%;
        width: 30%;
        height: auto;
    }

    .participe-text-overlay {
        top: 23%;
        left: 34.2%;
        width: 34%;
        height: auto;
    }



    /* HEADER 3 */


    .info-fundo {
        height: 680px;
        object-fit: cover;
    }


    .como-participar-one {
        visibility: hidden;
    }

    .linha-amarela {
        visibility: hidden;
    }

    .como-participar-two {
        visibility: hidden;
    }


    .como-participar-desktop {
        visibility: visible;
        top: 28.5%;
        width: 47%;
        height: auto;
    }



}





/* SPONSOR BRANDS */



.image-container {
    position: relative;
    display: flex;
    width: 100%;
}

.white-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 75%;
    background-color: white;
    border-radius: 20px 20px 0 0;
}


.header-text {
    text-align: center;
    color: #6a6a6a;
    font-size: 31px;
    font-family: 'Gotham Black', sans-serif;
    font-weight: bold;
    padding-top: 20px;
}

.container-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    align-content: space-around;
}


.row {
    display: contents;
}

.grey-container {
    width: 50px;
    height: 50px;
    margin: 5px;
    transition: transform 0.7s ease-in-out;
}

@keyframes bounce {

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

    50% {
        transform: scale(1.3) translateY(-10%);
    }
}

.grey-container:hover {
    transform: scale(1.1) translateY(-10%);
    animation: bounce 0.7s ease-in-out;
}


.produtos-participantes-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    width: 50%;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;

}


.produtos-participantes-image:hover {
    opacity: 0.10;
}



/* BRANDS SECTION */


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

    .white-container {
        bottom: 0;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        text-align: center;
        color: #6a6a6a;
        font-size: 15px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        padding-top: 20px;
    }

    .marcas-fundo {
        height: 1350px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 20%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;

    }

    .final-grid-item.vr {
        grid-column: 1 / span 1;
    }


    .final-grid-item.wickbold {
        grid-column: 2 / span 1;
    }


    .final-grid-item.yoki {
        grid-column: 3 / span 1;
    }


    .final-grid-item.ype {
        grid-column: 2 / span 1;
    }

    .produtos-participantes-image {
        margin-top: 35px;
    }
}

@media screen and (min-width: 374px) and (max-width: 450px) {

    .white-container {
        bottom: 0;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        text-align: center;
        color: #6a6a6a;
        font-size: 15px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        padding-top: 20px;
    }

    .marcas-fundo {
        height: 1350px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 15%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;

    }

    .final-grid-item.vr {
        grid-column: 1 / span 1;
    }


    .final-grid-item.wickbold {
        grid-column: 2 / span 1;
    }


    .final-grid-item.yoki {
        grid-column: 3 / span 1;
    }


    .final-grid-item.ype {
        grid-column: 2 / span 1;
    }

    .produtos-participantes-image {
        margin-top: 35px;
    }
}

@media screen and (min-width: 451px) and (max-width: 470px) {

    .white-container {
        bottom: 0;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        text-align: center;
        color: #6a6a6a;
        font-size: 15px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        padding-top: 15px;
    }

    .marcas-fundo {
        height: 1350px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 15%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;

    }

    .final-grid-item.vr {
        grid-column: 1 / span 1;
    }


    .final-grid-item.wickbold {
        grid-column: 2 / span 1;
    }


    .final-grid-item.yoki {
        grid-column: 3 / span 1;
    }


    .final-grid-item.ype {
        grid-column: 2 / span 1;
    }

    .produtos-participantes-image {
        margin-top: 35px;
    }
}

@media screen and (min-width: 471px) and (max-width: 510px) {

    .white-container {
        bottom: 0;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        text-align: center;
        color: #6a6a6a;
        font-size: 15px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
    }

    .marcas-fundo {
        height: 1350px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 12%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;

    }

    .final-grid-item.vr {
        grid-column: 1 / span 1;
    }


    .final-grid-item.wickbold {
        grid-column: 2 / span 1;
    }


    .final-grid-item.yoki {
        grid-column: 3 / span 1;
    }


    .final-grid-item.ype {
        grid-column: 2 / span 1;
    }

    .produtos-participantes-image {
        margin-top: 35px;
    }

}

@media screen and (min-width: 511px) and (max-width: 580px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        text-align: center;
        color: #6a6a6a;
        font-size: 15px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
    }

    .marcas-fundo {
        height: 1350px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 12%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;

    }

    .final-grid-item.vr {
        grid-column: 1 / span 1;
    }


    .final-grid-item.wickbold {
        grid-column: 2 / span 1;
    }


    .final-grid-item.yoki {
        grid-column: 3 / span 1;
    }


    .final-grid-item.ype {
        grid-column: 2 / span 1;
    }

    .produtos-participantes-image {
        margin-top: 35px;
    }
}

@media screen and (min-width: 581px) and (max-width: 650px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        text-align: center;
        color: #6a6a6a;
        font-size: 19px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
    }

    .marcas-fundo {
        height: 1600px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 12%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.vr {
        grid-column: 1 / span 1;
    }


    .final-grid-item.wickbold {
        grid-column: 2 / span 1;
    }


    .final-grid-item.yoki {
        grid-column: 3 / span 1;
    }


    .final-grid-item.ype {
        grid-column: 2 / span 1;
    }

    .produtos-participantes-image {
        margin-top: 35px;
    }

}

@media screen and (min-width: 651px) and (max-width: 710px) {


    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        text-align: center;
        color: #6a6a6a;
        font-size: 19px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
    }

    .marcas-fundo {
        height: 1650px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 12%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.vr {
        grid-column: 1 / span 1;
    }


    .final-grid-item.wickbold {
        grid-column: 2 / span 1;
    }


    .final-grid-item.yoki {
        grid-column: 3 / span 1;
    }


    .final-grid-item.ype {
        grid-column: 2 / span 1;
    }

    .produtos-participantes-image {
        margin-top: 35px;
    }

}

@media screen and (min-width: 711px) and (max-width: 738px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        text-align: center;
        color: #6a6a6a;
        font-size: 19px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
    }

    .marcas-fundo {
        height: 1670px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 12%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.vr {
        grid-column: 1 / span 1;
    }


    .final-grid-item.wickbold {
        grid-column: 2 / span 1;
    }


    .final-grid-item.yoki {
        grid-column: 3 / span 1;
    }


    .final-grid-item.ype {
        grid-column: 2 / span 1;
    }

    .produtos-participantes-image {
        margin-top: 70px;
    }

}

@media screen and (min-width: 739px) and (max-width: 790px) {


    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        text-align: center;
        color: #6a6a6a;
        font-size: 19px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
    }

    .marcas-fundo {
        height: 1670px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 12%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.vr {
        grid-column: 1 / span 1;
    }


    .final-grid-item.wickbold {
        grid-column: 2 / span 1;
    }


    .final-grid-item.yoki {
        grid-column: 3 / span 1;
    }


    .final-grid-item.ype {
        grid-column: 2 / span 1;
    }

    .produtos-participantes-image {
        margin-top: 70px;
    }

}

@media screen and (min-width: 791px) and (max-width: 850px) {


    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 19px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
    }

    .marcas-fundo {
        height: 1670px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 12%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.vr {
        grid-column: 1 / span 1;
    }


    .final-grid-item.wickbold {
        grid-column: 2 / span 1;
    }


    .final-grid-item.yoki {
        grid-column: 3 / span 1;
    }


    .final-grid-item.ype {
        grid-column: 2 / span 1;
    }

    .produtos-participantes-image {
        width: 35% !important;
        margin-top: 70px;
    }

}

@media screen and (min-width: 851px) and (max-width: 940px) {



    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 19px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1670px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 12%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.vr {
        grid-column: 1 / span 1;
    }


    .final-grid-item.wickbold {
        grid-column: 2 / span 1;
    }


    .final-grid-item.yoki {
        grid-column: 3 / span 1;
    }


    .final-grid-item.ype {
        grid-column: 2 / span 1;
    }

    .produtos-participantes-image {
        width: 35% !important;
        margin-top: 70px;
    }

}

@media screen and (min-width: 941px) and (max-width: 1050px) {


    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 22px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1670px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 12%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.vr {
        grid-column: 1 / span 1;
    }


    .final-grid-item.wickbold {
        grid-column: 2 / span 1;
    }


    .final-grid-item.yoki {
        grid-column: 3 / span 1;
    }


    .final-grid-item.ype {
        grid-column: 2 / span 1;
    }


    .produtos-participantes-image {
        width: 35% !important;
        margin-top: 70px;
    }
}

@media screen and (min-width: 1051px) and (max-width: 1180px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 24px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1500px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 12%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }

    /* .marca-tial {
    margin-top: 13px !important;
}

.marca-tirolez {
    margin-top: 10px !important;
} */

    .produtos-participantes-image {
        width: 35% !important;
        margin-top: 20% !important;
    }
}

@media screen and (min-width: 1180px) and (max-width: 1199px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 24px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1500px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 12%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }

    /* .marca-tial {
    margin-top: 13px !important;
}

.marca-tirolez {
    margin-top: 10px !important;
} */

    .produtos-participantes-image {
        width: 30% !important;
        margin-top: 15% !important;
    }
}

@media screen and (min-width: 1199px) and (max-width: 1350px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 24px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1500px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 12%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }

    /* .marca-tial {
    margin-top: 13px !important;
}

.marca-tirolez {
    margin-top: 10px !important;
} */

    .produtos-participantes-image {
        width: 30% !important;
        margin-top: 15% !important;
    }
}

@media screen and (min-width: 1351px) and (max-width: 1400px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 24px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1500px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 10%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }

    /* .marca-tial {
    margin-top: 13px !important;
}

.marca-tirolez {
    margin-top: 10px !important;
} */

    .produtos-participantes-image {
        width: 30% !important;
        margin-top: 12% !important;
    }
}

@media screen and (min-width: 1401px) and (max-width: 1469px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 26px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1500px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 10%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }

    /* .marca-tial {
    margin-top: 13px !important;
}

.marca-tirolez {
    margin-top: 10px !important;
} */

    .produtos-participantes-image {
        width: 30% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 1469px) and (max-width: 1479px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1300px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 26px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1500px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 10%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }

    /* .marca-tial {
    margin-top: 13px !important;
}

.marca-tirolez {
    margin-top: 10px !important;
} */

    .produtos-participantes-image {
        width: 30% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 1479px) and (max-width: 1509px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 26px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1750px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 10%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 30% !important;
        margin-top: 10% !important;
    }

}

@media screen and (min-width: 1509px) and (max-width: 1580px) {


    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 26px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1750px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 10%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 27% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 1581px) and (max-width: 1699px) {


    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 26px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1750px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 10%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 27% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 1699px) and (max-width: 1801px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 30px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1850px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 10%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 27% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 1801px) and (max-width: 1850px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 33px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 5%;
    }

    .marcas-fundo {
        height: 1850px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 10%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 27% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 1851px) and (max-width: 1900px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 33px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 7%;
    }

    .marcas-fundo {
        height: 1850px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 10%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 27% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 1901px) and (max-width: 1999px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 35px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 7%;
    }

    .marcas-fundo {
        height: 1850px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 7%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 27% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 1999px) and (max-width: 2106px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 35px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 7%;
    }

    .marcas-fundo {
        height: 1850px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 7%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 19% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 2106px) and (max-width: 2170px) {


    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 35px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 7%;
    }

    .marcas-fundo {
        height: 1850px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 7%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 19% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 2171px) and (max-width: 2199px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 35px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 7%;
    }

    .marcas-fundo {
        height: 1850px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 7%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 19% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 2199px) and (max-width: 2201px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 35px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 7%;
    }

    .marcas-fundo {
        height: 1850px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 7%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 19% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 2201px) and (max-width: 2303px) {

    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 35px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 7%;
    }

    .marcas-fundo {
        height: 1850px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 7%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 19% !important;
        margin-top: 10% !important;
    }
}

@media screen and (min-width: 2303px) and (max-width: 2405px) {


    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 35px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 7%;
    }

    .marcas-fundo {
        height: 1850px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 7%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 19% !important;
        margin-top: 7% !important;
    }
}

@media screen and (min-width: 2405px) and (max-width: 2499px) {


    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 35px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 7%;
    }

    .marcas-fundo {
        height: 1850px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 7%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 19% !important;
        margin-top: 7% !important;
    }
}

@media screen and (min-width: 2499px) {


    .white-container {
        bottom: 0;
        top: 1%;
        height: 1400px;
        z-index: 0;
    }

    .header-text {
        left: 15%;
        text-align: center;
        color: #6a6a6a;
        font-size: 35px;
        font-family: 'Gotham Black', sans-serif;
        font-weight: bold;
        margin-top: 7%;
    }

    .marcas-fundo {
        height: 1850px;
        object-fit: cover;
    }

    .container-grid {
        margin-top: 7%;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 30px !important;

    }

    .grey-container {
        width: 65px;
        height: auto;
    }

    .final-grid-item.trevo {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vigor {
        grid-column: 2 / span 1;
        grid-row: auto;
    }

    .final-grid-item.vr {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .final-grid-item.wickbold {
        grid-column: 4 / span 1;
        grid-row: auto;
    }


    .final-grid-item.yoki {
        grid-column: 2 / span 1;
        grid-row: auto;
    }


    .final-grid-item.ype {
        grid-column: 3 / span 1;
        grid-row: auto;
    }


    .produtos-participantes-image {
        width: 19% !important;
        margin-top: 7% !important;
    }
}








/* CAROUSEL */



.carousel-container {
    position: relative;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;

}

.carousel-container img.background {
    width: 100%;
    height: auto;
}

.carousel-container .overlay-text {
    text-align: center;
    font-family: 'Gotham Black', sans-serif;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 31px;
    font-weight: bold;
    color: #164493;
    z-index: 2;
}

.carousel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    /* Align items to the start */
    align-items: center;
    overflow: hidden;
    /* Hide the images that are not in view */
    z-index: 1;
    width: 100%;
    /* Adjust this to control the visible area of the carousel */
    padding: 10px;
    /* Add some padding to create space for the box-shadow */
}


.carousel .carousel-image-container {
    transition: transform 0.5s ease;
    opacity: 1;
    /* Make the images fully visible */
    transform: scale(0.9);
    /* Slightly reduce the size of the non-active images */
}

.carousel .carousel-image-container img {
    width: 150px;
    height: auto;
    display: block;
}

.carousel .carousel-image-container.active {
    transform: scale(1);
    /* Increase the size of the active image */
}


.carousel .carousel-image-container.active img {
    width: 300px;
    /* Large size for center image */
}

.arrow {
    position: absolute;
    top: 50%;
    padding: 10px;
    font-size: 2em;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 2;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

.carousel .carousel-image-container {
    transition: transform 0.5s ease;
}

.carousel .carousel-image-container img {
    width: 150px;
    /* Small size for side images */
    height: auto;
    display: block;
}

.carousel-image-container,
.carousel-image-container.active {
    background-color: white;
    padding: 20px;
    /* Add some padding to create space around the image */
    margin: 0 10px;
    /* Add some margin to separate the containers */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    /* Optional: add a subtle shadow for depth */
    border-radius: 10px;
    /* Optional: round the corners of the container */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-image-container.active {
    padding: 20px;
    /* Add more padding for the active container to make it larger */
}


.bottom-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    top: 80%;
    width: 15%;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}


.bottom-image:hover {
    opacity: 0.10;
    transition: opacity 0.5s ease-in-out;
}



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

    .fundo-amarelo {
        height: 300px;
        object-fit: cover;
    }

    .carousel-container .overlay-text {
        font-size: 15px;
        top: 8%;
    }

    .bottom-image {
        width: 38%;
    }
}


@media screen and (min-width: 376px) and (max-width: 400px) {

    .fundo-amarelo {
        height: 400px;
        object-fit: cover;
    }

    .carousel-container .overlay-text {
        font-size: 18px;
        top: 8%;
    }

    .bottom-image {
        width: 38%;
    }
}


@media screen and (min-width: 401px) and (max-width: 580px) {
    .fundo-amarelo {
        height: 470px;
        object-fit: cover;
    }

    .carousel-container .overlay-text {
        font-size: 23px;
        top: 8%;
    }

    .bottom-image {
        width: 38%;
    }
}


@media screen and (min-width: 581px) and (max-width: 940px) {

    .fundo-amarelo {
        height: 470px;
        object-fit: cover;
    }

    .carousel-container .overlay-text {
        font-size: 24px;
        top: 8%;
    }

    .bottom-image {
        width: 38%;
    }
}


@media screen and (min-width: 941px) and (max-width: 1080px) {
    .fundo-amarelo {
        height: 550px;
        object-fit: cover;
    }

    .carousel-container .overlay-text {
        font-size: 30px;
        top: 8%;
    }

    .bottom-image {
        width: 38%;
    }
}


@media screen and (min-width: 1081px) and (max-width: 1200px) {

    .fundo-amarelo {
        height: 590px;
        object-fit: cover;
    }

    .carousel-container .overlay-text {
        font-size: 30px;
        top: 8%;
    }

    .bottom-image {
        width: 38%;
    }
}


@media screen and (min-width: 1201px) and (max-width: 1280px) {
    .fundo-amarelo {
        height: 590px;
        object-fit: cover;
    }

    .carousel-container .overlay-text {
        font-size: 30px;
        top: 8%;
    }

    .bottom-image {
        width: 22%;
    }
}


@media screen and (min-width: 1281px) and (max-width: 1700px) {
    .fundo-amarelo {
        height: 590px;
        object-fit: cover;
    }

    .carousel-container .overlay-text {
        font-size: 35px;
        top: 8%;
    }

    .bottom-image {
        width: 22%;
    }
}


@media screen and (min-width: 1701px) and (max-width: 1850px) {
    .fundo-amarelo {
        height: 670px;
        object-fit: cover;
    }

    .carousel-container .overlay-text {
        font-size: 45px;
        top: 8%;
    }

    .bottom-image {
        width: 24%;
    }
}


@media screen and (min-width: 1851px) and (max-width: 2000px) {
    .fundo-amarelo {
        height: 800px;
        object-fit: cover;
    }

    .carousel-container .overlay-text {
        font-size: 45px;
        top: 8%;
    }

    .bottom-image {
        width: 26%;
    }
}


@media screen and (min-width: 2001px) and (max-width: 2200px) {
    .fundo-amarelo {
        height: 800px;
        object-fit: cover;
    }

    .carousel-container .overlay-text {
        font-size: 45px;
        top: 8%;
    }

    .bottom-image {
        width: 23%;
    }
}


@media screen and (min-width: 2201px) and (max-width: 2500px) {
    .fundo-amarelo {
        height: 1000px;
        object-fit: cover;
    }

    .carousel-container .overlay-text {
        font-size: 45px;
        top: 8%;
    }

    .bottom-image {
        width: 23%;
    }

    .carousel .carousel-image-container img {
        width: 350px;
    }

    .carousel .carousel-image-container.active img {
        width: 650px;
        /* Large size for center image */
    }
}


@media (max-width: 768px) {


    .carousel .carousel-image-container img {
        width: 70px;
    }

    .carousel .carousel-image-container.active img {
        width: 190px;
        /* Large size for center image */
    }
}




/* #### FAQ ####  */



.ver-regulamento-image:hover {
    opacity: 0.10;

}


.faq-item {
    background-color: white;
    border-radius: 40px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.faq-question {
    font-weight: bold;
    font-style: italic;
    color: #666666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


.faq-answer {
    display: none;
    background-color: #6e6e6e;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    font-family: 'Gotham', sans-serif;
    font-style: italic;
    font-weight: 700;
    color: #f0f0f0;
    transition: max-height 0.2s ease-out;
}


.whatsapp-banner:hover {
    opacity: 0.60;
    transition: opacity 0.5s ease-in-out;
}



@media (max-width: 374px) {

    .marcas-fundo-faq {
        height: 3700px;
        object-fit: cover;
    }

}


@media (min-width: 375px) and (max-width: 400px) {

    .marcas-fundo-faq {
        height: 3700px;
        object-fit: cover;
    }

}


@media screen and (min-width: 401px) and (max-width: 414px) {

    .marcas-fundo-faq {
        height: 3500px;
        object-fit: cover;
    }

}


@media screen and (min-width: 415px) and (max-width: 430px) {
    .marcas-fundo-faq {
        height: 3500px;
        object-fit: cover;
    }

}


@media screen and (min-width: 431px) and (max-width: 450px) {
    .marcas-fundo-faq {
        height: 3400px;
        object-fit: cover;
    }

}


@media screen and (min-width: 451px) and (max-width: 470px) {
    .marcas-fundo-faq {
        height: 3200px;
        object-fit: cover;
    }

}


@media screen and (min-width: 471px) and (max-width: 510px) {
    .marcas-fundo-faq {
        height: 3100px;
        object-fit: cover;
    }

}


@media screen and (min-width: 511px) and (max-width: 580px) {
    .marcas-fundo-faq {
        height: 3100px;
        object-fit: cover;
    }

}


@media screen and (min-width: 581px) and (max-width: 650px) {
    .marcas-fundo-faq {
        height: 2800px;
        object-fit: cover;
    }

}


@media screen and (min-width: 651px) and (max-width: 710px) {
    .marcas-fundo-faq {
        height: 2540px;
        object-fit: cover;
    }

}


@media screen and (min-width: 711px) and (max-width: 738px) {
    .marcas-fundo-faq {
        height: 2520px;
        object-fit: cover;
    }

}


@media screen and (min-width: 739px) and (max-width: 790px) {
    .marcas-fundo-faq {
        height: 2450px;
        object-fit: cover;
    }

}


@media screen and (min-width: 791px) and (max-width: 850px) {
    .marcas-fundo-faq {
        height: 2400px;
        object-fit: cover;
    }

}


@media screen and (min-width: 851px) and (max-width: 940px) {
    .marcas-fundo-faq {
        height: 2250px;
        object-fit: cover;
    }

}


@media screen and (min-width: 941px) and (max-width: 1080px) {
    .marcas-fundo-faq {
        height: 2230px;
        object-fit: cover;
    }

}


@media screen and (min-width: 1081px) and (max-width: 1200px) {
    .marcas-fundo-faq {
        height: 2200px;
        object-fit: cover;
    }

}


@media screen and (min-width: 1201px) and (max-width: 1280px) {
    .marcas-fundo-faq {
        height: 2180px;
        object-fit: cover;
    }

}


@media screen and (min-width: 1281px) and (max-width: 1350px) {
    .marcas-fundo-faq {
        height: 2200px;
        object-fit: cover;
    }

}


@media screen and (min-width: 1351px) and (max-width: 1700px) {
    .marcas-fundo-faq {
        height: 2180px;
        object-fit: cover;
    }

}


@media screen and (min-width: 1701px) and (max-width: 1850px) {
    .marcas-fundo-faq {
        height: 2180px;
        object-fit: cover;
    }

}


@media screen and (min-width: 1851px) and (max-width: 2500px) {
    .marcas-fundo-faq {
        height: 2180px;
        object-fit: cover;
    }

}




/* #### CONTATO ####  */



.image-container3 {
    position: relative;
    display: inline-block;
    width: 100%;
}


.contact-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
}


.contact-form .form-group {
    margin-bottom: 15px;
}


.contact-form .form-group label {
    display: block;
}


.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}


.contact-form button {
    width: calc(100% + 2 * 10px);
    /* Add the twice of the left and right padding of the .contact-form */
    margin-left: -10px;
    /* Add negative margin that is equal to the left padding of the .contact-form */
    margin-right: -10px;
    /* Add negative margin that is equal to the right padding of the .contact-form */
    padding: 10px;
    border: none;
    background-color: white;
    color: #17418c;
    font-family: 'Gotham', sans-serif;
    font-style: italic;
    font-weight: 900;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}


.contact-form button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}


.form-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.rotated-text {
    position: absolute;
    top: 48%;
    left: 37%;
    transform: translate(-50%, -50%) rotate(-90deg);
    color: white;
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    font-size: 68px;
    text-align: left;
}


.label-text {
    color: #f0f0f0;
    font-style: italic;
    font-weight: bold;
}


#error-message {
    color: red;
    font-weight: bold;
    margin-top: 10px;
    z-index: 1;
}



@media screen and (max-width: 374px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(0deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 28px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;

    }

    .contact-form .form-group {
        width: 93%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;

    }

}


@media screen and (min-width: 375px) and (max-width: 380px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(0deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 28px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;

    }

    .contact-form .form-group {
        width: 93%;
    }

    .contact-form button {
        width: 50%;

    }
}


@media screen and (min-width: 381px) and (max-width: 738px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(0deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 28px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;

    }

    .contact-form .form-group {
        width: 93%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
    }
}


@media screen and (min-width: 739px) and (max-width: 790px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 19%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 68px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;

    }

    .contact-form .form-group {
        width: 93%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
    }
}


@media screen and (min-width: 791px) and (max-width: 850px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 21.5%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 68px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;

    }

    .contact-form .form-group {
        width: 93%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
    }
}


@media screen and (min-width: 851px) and (max-width: 940px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 23.7%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 68px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;

    }

    .contact-form .form-group {
        width: 93%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
    }
}


@media screen and (min-width: 941px) and (max-width: 1080px) {

    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 26%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 68px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;

    }

    .contact-form .form-group {
        width: 93%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
    }
}


@media screen and (min-width: 1081px) and (max-width: 1200px) {

    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 29.4%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 68px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;

    }

    .contact-form .form-group {
        width: 93%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
    }
}


@media screen and (min-width: 1201px) and (max-width: 1280px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 31.5%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 68px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;

    }

    .contact-form .form-group {
        width: 93%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
    }
}


@media screen and (min-width: 1281px) and (max-width: 1350px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 32%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 68px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;

    }

    .contact-form .form-group {
        width: 93%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
    }
}


@media screen and (min-width: 1351px) and (max-width: 1470px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 33.5%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 68px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;

    }

    .contact-form .form-group {
        width: 93%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
    }
}


@media screen and (min-width: 1471px) and (max-width: 1510px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 33.5%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 68px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;

    }

    .contact-form .form-group {
        width: 100%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
    }
}


@media screen and (min-width: 1511px) and (max-width: 1700px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 26.0%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 70px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;

    }

    .contact-form .form-group {
        width: 160%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
        height: 45px;
    }
}


@media screen and (min-width: 1701px) and (max-width: 1850px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 29.0%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 70px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;

    }

    .contact-form .form-group {
        width: 160%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
        height: 45px;
    }
}


@media screen and (min-width: 1851px) and (max-width: 2000px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 30.7%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 70px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;

    }

    .contact-form .form-group {
        width: 160%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
        height: 45px;
    }
}


@media screen and (min-width: 2001px) and (max-width: 2200px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 32.2%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 70px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;

    }

    .contact-form .form-group {
        width: 160%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
        height: 45px;
    }
}


@media screen and (min-width: 2201px) and (max-width: 2500px) {
    .contato-fundo-bg {
        height: 650px;
    }

    .rotated-text {
        position: absolute;
        top: 47%;
        left: 27.2%;
        transform: translate(-50%, -50%) rotate(-90deg);
        color: white;
        font-family: 'Gotham', sans-serif;
        font-weight: bold;
        font-size: 70px;
        text-align: left;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;

    }

    .contact-form .form-group {
        width: 230%;
    }

    .contact-form button {
        width: 50%;
        margin-left: 29%;
        height: 45px;
    }
}





/* #### FOOTER ####  */



.footer {
    background-image: url('../../assets/images/fundo_footer.png');
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 3.5);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}


.footer-text {
    color: #164493;
    font-size: 16px;
    margin-bottom: 20px;
}


.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}


.footer-logo {
    margin: 0 20px;
    height: 45px;
    transition: transform 0.3s ease-in-out;
}

.footer-logo:hover {
    transform: scale(1.1);
}



.star-mkt-logo {
    height: 15px;
    width: 100px;
}


.footer-socials {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}


.footer-socials a {
    margin: 0 10px;
}


.footer-socials img {
    width: 30px;
    height: 30px;
}



@media (max-width: 768px) {
    .footer-logos {
        flex-direction: column;
    }

    .footer-logo {
        margin: 10px 0;
    }

    .social-container {
        margin-right: 10%;
    }


    .footer-socials {
        flex-direction: row;

    }

    .footer-socials a {
        margin: 0 2px;
    }
}

/* =========  BLOCO ========= */
.image-container2 {
    /* imagem de fundo – corta se precisar */
    --bg: url("../images/marcas_fundo.png");
    background: var(--bg) center/cover no-repeat;

    /* layout */
    width: 100%;
    display: flex;
    /* faz o <section> abraçar o conteúdo */
    justify-content: center;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
    /* respiro lateral */

    /* evita sobras embaixo quando a img-fundo passa do limite */
    overflow: hidden;
}



/* =========  CONTEÚDO ========= */
.faq-inner {
    max-width: 1100px;
    /* limite de leitura */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding-block: clamp(2rem, 6vw, 4rem);
    /* top + bottom */
}

.faq-overlay-text {
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    font-size: 35px;
    color: #fff
}

/* imagens soltas */
.faq-overlay-text,
.ver-regulamento-image,
.whatsapp-banner {
    position: static;
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
}

/* FAQ em modo coluna única por padrão */
.faq-container {
    width: 100%;
}

/* =========  MELHORIA: duas colunas em telas largas ========= */
@media (min-width: 768px) {
    .faq-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        max-width: 100%;
    }
}


/* ===========================================
   HEADER SECTION – Ajuste de overlay fundo_header.png + hero.png
   =========================================== */

.header-banner {
    width: 100vw;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
    min-height: 550px;
}

.bolo-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90vw;
    width: clamp(300px, 60vw, 700px);
    z-index: 2;
    margin-top: clamp(2rem, 8vw, 5rem);
    animation: floatY 4s ease-in-out infinite alternate;
}

@keyframes floatY {
    0% {
        transform: translate(-50%, 0);
    }

    100% {
        transform: translate(-50%, -12px);
    }
}

@media (min-width: 450px) and (max-width: 768px) {
    .header-banner {
        min-height: 480px;
    }

    .bolo-overlay {
        margin-top: clamp(1.5rem, 6vw, 4rem) !important;
        width: clamp(280px, 80vw, 500px);
        animation: floatY 3.5s ease-in-out infinite alternate;
    }
}

@media (max-width: 768px) {
    .header-banner {
        min-height: 480px;
    }

    .bolo-overlay {
        margin-top: clamp(1.5rem, 6vw, 4rem);
        width: clamp(280px, 80vw, 500px);
        animation: floatY 3.5s ease-in-out infinite alternate;
    }
}

@media (min-width: 1200px) {
    .header-banner {
        min-height: 650px;
    }

    .bolo-overlay {
        margin-top: 3rem;
        width: 600px;
    }
}



/* ===== HEADER TICKETS: CHUVA COM VARIAÇÕES ===== */

.ticket {
    position: absolute;
    width: var(--size);
    top: calc(-1 * var(--size));
    animation: fall var(--duration) linear infinite;
    pointer-events: none;
}


/* Profundidade (z-index) controlada manualmente */
.ticket.behind {
    z-index: 2;
}

.ticket.front {
    z-index: 10;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    80% {
        opacity: 1;
        /* Visível até 80% da descida */
    }

    100% {
        transform: translateY(800px) rotate(var(--rotation));
        opacity: 0;
        /* Desaparece suavemente no fim */
    }
}

/* Tickets: LEFT, SIZE, ROTATE, SPEED */


.ticket1 {
    left: 5%;
    --size: 40px;
    --rotation: 180deg;
    --duration: 6s;
}

.ticket2 {
    left: 20%;
    --size: 60px;
    --rotation: 360deg;
    --duration: 8s;
}

.ticket3 {
    left: 40%;
    --size: 35px;
    --rotation: -270deg;
    --duration: 7s;
}

.ticket4 {
    left: 60%;
    --size: 50px;
    --rotation: 90deg;
    --duration: 9s;
}

.ticket5 {
    left: 75%;
    --size: 45px;
    --rotation: -180deg;
    --duration: 6.5s;
}

.ticket6 {
    left: 90%;
    --size: 55px;
    --rotation: 360deg;
    --duration: 7.5s;
}

.ticket7 {
    left: 15%;
    --size: 38px;
    --rotation: 144deg;
    --duration: 6.8s;
}

.ticket8 {
    left: 33%;
    --size: 52px;
    --rotation: -225deg;
    --duration: 7.2s;
}

.ticket9 {
    left: 50%;
    --size: 47px;
    --rotation: 160deg;
    --duration: 8.1s;
}

.ticket10 {
    left: 67%;
    --size: 42px;
    --rotation: -190deg;
    --duration: 9.3s;
}

.ticket11 {
    left: 82%;
    --size: 50px;
    --rotation: 130deg;
    --duration: 6.7s;
}

.ticket12 {
    left: 95%;
    --size: 58px;
    --rotation: -145deg;
    --duration: 7.8s;
}

/* === TICKETS GRANDES (efeito de proximidade nas bordas) === */


.ticket13 {
    left: -5%;
    --size: 110px;
    --rotation: 240deg;
    --duration: 10s;
    z-index: 12;
}

.ticket14 {
    left: 98%;
    --size: 90px;
    --rotation: -180deg;
    --duration: 11s;
    z-index: 11;
}

.ticket15 {
    left: -3%;
    --size: 120px;
    --rotation: 360deg;
    --duration: 9.5s;
    z-index: 10;
}

.ticket16 {
    left: 95%;
    --size: 100px;
    --rotation: -300deg;
    --duration: 10.5s;
    z-index: 12;
}


/* === TICKETS ULTRA PRÓXIMOS (somente nas laterais) === */


.ticket-big1 {
    left: 3%;
    --size: 200px;
    --rotation: 90deg;
    --duration: 12s;
    animation-delay: 0s;
    z-index: 20;
}

.ticket-big2 {
    left: 85%;
    --size: 180px;
    --rotation: -220deg;
    --duration: 14s;
    animation-delay: 6s;
    z-index: 20;
}

.ticket-big3 {
    left: 7%;
    --size: 220px;
    --rotation: 360deg;
    --duration: 16s;
    animation-delay: 10s;
    z-index: 21;
}

.ticket-big4 {
    left: 90%;
    --size: 190px;
    --rotation: -160deg;
    --duration: 13s;
    animation-delay: 4s;
    z-index: 21;
}



.ticket-dynamic {
  position: absolute;
  top: -100px;
  width: var(--size);
  height: auto;
  animation: ticket-fall var(--duration) linear forwards;
  transform: rotate(0deg);
  will-change: transform, top;
}

@keyframes ticket-fall {
  to {
    top: 100vh;
    transform: rotate(var(--rotation));
  }
}








.faq-item {
    overflow: hidden;
}

/* evita “jump” de conteúdo */
.faq-answer {
    display: none;
}

/* fechado por padrão    */
.faq-item.open .faq-answer {
    display: block;
}

/* ==========================================================
   FAQ – responsividade
   ========================================================== */

@media (min-width:768px) {
    .faq-container {
        display: flex;
        /* flex > wrap evita que o item vizinho cresça */
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .faq-item {
        flex: 1 1 calc(50% - 1.5rem);
        /* 50 % menos o gap – mantem 2 colunas */
    }
}


@media (max-width: 767.98px) {

    /* margem de 1 rem (≈16 px) em cada lado de TODOS os cartões */
    .faq-item {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .whatsapp-banner {
        display: block;
        width: calc(100% - 2rem);
        /* ocupa toda a largura abatendo o respiro */
        max-width: 400px;
        /* opcional: evita exagero em tablets estreitos */
        margin: 1rem auto 0;
        /* respiro lateral (1 rem) + centralização */
    }

    /* mantém o espaçamento vertical que já existe */
    .faq-item+.faq-item {
        margin-top: 1rem;
    }
}



/* ==========================================================
   TICKETS — responsividade mobile
   ========================================================== */

@media screen and (max-width: 480px) {
  .ticket-big1,
  .ticket-big2,
  .ticket-big3,
  .ticket-big4 {
    box-shadow: none !important;
  }
}


@media screen and (max-width: 390px) {
    .ticket {
        width: 60px !important;
        height: auto !important;
        z-index: 10;
    }

    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 90px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
}


/* HEADER HERO — responsividade mobile */


/* Ajustes responsivos */
@media (max-width: 767px) {
    .hero-image {
        max-height: 80vh;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-image {
        max-height: 90vh;
    }
}

@media (min-width: 1024px) {
    .hero-image {
        max-height: 100vh;
    }
}




@media screen and (min-width: 1px) and (max-width: 349px) {


    .hero-wrapper {
        position: relative;
        top: -430px;
        left: 40% !important
    }


    .header-banner {

        height: 450px !important;

    }

    .bolo-overlay {
        position: absolute;

        left: 10%;
        width: 85%;
        height: auto;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 53%;
        width: 45%;
        height: auto;
    }

}

@media screen and (min-width: 349px) and (max-width: 450px) {
    .header-banner {

        height: 450px !important;

    }


    .hero-wrapper {
        position: relative;
        top: -430px !important;
        left: 40% !important
    }


    .bolo-overlay {
        position: absolute;

        left: 10%;
        width: 85%;
        height: auto;
        z-index: 2;
    }


    .raspou-overlay {
        top: 0.5%;
        left: 53%;
        width: 45%;
        height: auto;
    }

}

@media screen and (min-width: 450px) and (max-width: 500px) {

    .header-banner {

        height: 450px !important;

    }

    .hero-wrapper {
        position: relative;
        top: -430px !important;
    }

    .botao-link {
        top: -60px !important;
    }


}

@media screen and (min-width: 500px) and (max-width: 550px) {

    .header-banner {

        height: 450px !important;

    }

    .hero-wrapper {
        position: relative;
        top: -450px !important;
    }

    .botao-link {
        top: -50px !important;
    }

}

@media screen and (min-width: 550px) and (max-width: 600px) {

    .header-banner {

        height: 450px !important;

    }

    .hero-wrapper {
        position: relative;
        top: -450px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 70% !important;
    }

    .botao-link {
        top: -50px !important;
    }

}

@media screen and (min-width: 600px) and (max-width: 650px) {

    .header-banner {

        height: 450px !important;

    }

    .hero-wrapper {
        position: relative;
        top: -450px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 65% !important;
    }

    .botao-link {
        top: -50px !important;
    }

}

@media screen and (min-width: 650px) and (max-width: 700px) {

    .header-banner {

        height: 550px !important;

    }

    .hero-wrapper {
        position: relative;
        top: -500px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 65% !important;
    }

    .botao-link {
        top: -70px !important;
    }

}

@media screen and (min-width: 700px) and (max-width: 800px) {

    .header-banner {

        height: 550px !important;

    }

    .hero-wrapper {
        position: relative;
        top: -530px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 60% !important;
    }

    .botao-link {
        top: -70px !important;
    }

}

@media screen and (min-width: 800px) and (max-width: 830px) {

    .header-banner {

        height: 550px !important;

    }

    .hero-wrapper {
        position: relative;
        top: -550px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 60% !important;
    }

    .botao-link {
        top: -70px !important;
    }

}

@media screen and (min-width: 830px) and (max-width: 900px) {

    .header-banner {

        height: 700px !important;

    }

    .hero-wrapper {
        position: relative;
        top: -660px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 60% !important;
    }

    .botao-link {
        top: -120px !important;
    }

}

@media screen and (min-width: 900px) and (max-width: 1000px) {

    .header-banner {
        height: 700px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -680px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 60% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -30px !important;
    }

}

@media screen and (min-width: 1000px) and (max-width: 1050px) {

    .header-banner {
        height: 700px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -700px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 60% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -10px !important;
    }

}

@media screen and (min-width: 1050px) and (max-width: 1150px) {

    .header-banner {
        height: 700px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -700px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 55% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -10px !important;
    }

}

@media screen and (min-width: 1150px) and (max-width: 1250px) {

    .header-banner {
        height: 800px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -800px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 55% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -80px !important;
    }

}

@media screen and (min-width: 1250px) and (max-width: 1350px) {

    .header-banner {
        height: 800px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -750px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 45% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -80px !important;
    }

}

@media screen and (min-width: 1350px) and (max-width: 1500px) {

    .header-banner {
        height: 800px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -750px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 45% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -40px !important;
    }

}

@media screen and (min-width: 1500px) and (max-width: 1600px) {

    .header-banner {
        height: 800px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -750px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 45% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -15px !important;
    }

}

@media screen and (min-width: 1600px) and (max-width: 1800px) {

    .header-banner {
        height: 800px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -750px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 40% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -20px !important;
    }

}

@media screen and (min-width: 1800px) and (max-width: 1900px) {

    .header-banner {
        height: 800px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -750px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 35% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -50px !important;
    }

}

@media screen and (min-width: 1900px) and (max-width: 2000px) {

    .header-banner {
        height: 800px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -750px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 35% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -20px !important;
    }

}

@media screen and (min-width: 2000px) and (max-width: 2200px) {

    .header-banner {
        height: 800px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -700px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 30% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -20px !important;
    }

}

@media screen and (min-width: 2200px) and (max-width: 2300px) {

    .header-banner {
        height: 800px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -750px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 30% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -50px !important;
    }

}

@media screen and (min-width: 2300px) and (max-width: 2500px) {

    .header-banner {
        height: 800px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -700px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 25% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -50px !important;
    }

}

@media screen and (min-width: 2500px) and (max-width: 9999px) {

    .header-banner {
        height: 800px !important;
    }

    .hero-wrapper {
        position: relative;
        top: -780px !important;
        left: 1% !important;

    }

    .hero-wrapper img {
        width: 25% !important;
    }

    .botao-wrapper {
        left: 1% !important;
        top: -80px !important;
    }

}




@media screen and (min-width: 420px) and (max-width: 450px) {
    .botao-link {
        top: -50px !important;

    }

    .botao-link img {
        width: clamp(170px, 30vw, 220px);
        /* aumenta a largura para telas maiores */
    }

}


@media screen and (max-width: 450px) {
    .botao-link {
        top: -50px !important;
    }
}







/* ==========================================================
   PRIZES SECTION — Mobile responsivity
   ========================================================== */


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

    .carro-premio {
        width: 280px !important;
        bottom: 2% !important;
        right: -200px !important;
    }

    .celular-premio {
        width: 180px !important;
        top: 10% !important;
        left: 10% !important;
    }

    .prizes-section .background-image {
        height: 580px !important;
        object-fit: cover;
    }

    .ticket {
        width: 48px !important;
        height: auto !important;
        z-index: 10;
    }

    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
}



/* ==========================================================
   PRIZES SECTION — Mobile responsivity
   ========================================================== */

.raspe-container {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 6;
}

.raspe-premio {
    width: clamp(200px, 22vw, 340px);
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

/* Hover opcional para destaque */
.raspe-premio:hover {
    transform: scale(1.05);
}


/* PRIZE SECTION — Responsivity Rules */


@media screen and (max-width: 390px) {
    .raspe-container {
        top: 24%;
    }

    .raspe-premio {
        width: 200px !important;
    }
}


@media screen and (min-width: 1px) and (max-width: 349px) {


    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1150px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1150px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

  
    .raspadinha-wrapper {
        position: absolute;
        top: 14%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 35% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 70% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -40% !important;
        left: 10% !important;
        width: 200px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 95% !important;
        left: -8% !important;
        width: 95px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 70% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 20% !important;
        /* encosta na base do .car-inner */
        left: 50% !important;
        transform: translateX(-50%);
        width: 105% !important;
        height: auto;
        display: block;
    }


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 60% !important;
        width: 130px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 42% !important;
        width: 170px !important;
        left: 75% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }


}

@media screen and (min-width: 349px) and (max-width: 390px) {

    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1150px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1150px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 14%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

      .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }

    .sorteios-text {
        position: absolute;
        top: 35% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 70% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -40% !important;
        left: 10% !important;
        width: 200px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 95% !important;
        left: -8% !important;
        width: 95px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 70% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 20% !important;
        /* encosta na base do .car-inner */
        left: 50% !important;
        transform: translateX(-50%);
        width: 105% !important;
        height: auto;
        display: block;
    }


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 60% !important;
        width: 130px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 42% !important;
        width: 170px !important;
        left: 75% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }



}

@media screen and (min-width: 390px) and (max-width: 420px) {

 .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1150px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1150px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 14%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 35% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 70% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -40% !important;
        left: 10% !important;
        width: 200px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 80% !important;
        left: -8% !important;
        width: 115px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 70% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 20% !important;
        /* encosta na base do .car-inner */
        left: 50% !important;
        transform: translateX(-50%);
        width: 105% !important;
        height: auto;
        display: block;
    }


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 60% !important;
        width: 130px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 42% !important;
        width: 170px !important;
        left: 75% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

}

@media screen and (min-width: 420px) and (max-width: 450px) {

     .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
    .raspe-label {
        top: -20% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1050px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1050px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 3% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 8%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }


        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 32% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 70% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -50% !important;
        left: 10% !important;
        width: 200px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 65% !important;
        left: -19% !important;
        width: 110px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 55% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 20% !important;
        /* encosta na base do .car-inner */
        left: 50% !important;
        transform: translateX(-50%);
        width: 105% !important;
        height: auto;
        display: block;
    }


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 60% !important;
        width: 130px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 42% !important;
        width: 170px !important;
        left: 75% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }



}

@media screen and (min-width: 450px) and (max-width: 500px) {

       .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
 
    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1140px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1140px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 3% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 9%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    
        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 28% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 65% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -70% !important;
        left: 10% !important;
        width: 200px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 50% !important;
        left: -17% !important;
        width: 105px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 55% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 25% !important;
        /* encosta na base do .car-inner */
        left: 50% !important;
        transform: translateX(-50%);
        width: 105% !important;
        height: auto;
        display: block;
    }


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 60% !important;
        width: 130px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 38% !important;
        width: 170px !important;
        left: 75% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }



}

@media screen and (min-width: 500px) and (max-width: 550px) {
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
 
    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1140px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1140px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 1.8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

    
        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 24% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 65% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -95% !important;
        left: 10% !important;
        width: 200px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 40% !important;
        left: -37% !important;
        width: 105px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 45% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 25% !important;
        /* encosta na base do .car-inner */
        left: 51% !important;
        transform: translateX(-50%);
        width: 105% !important;
        height: auto;
        display: block;
    }


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 60% !important;
        width: 130px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 38% !important;
        width: 170px !important;
        left: 75% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

}

@media screen and (min-width: 550px) and (max-width: 560px) {
   .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
 
    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1190px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1190px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 1.8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

    
        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 24% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 65% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -95% !important;
        left: 10% !important;
        width: 200px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 34% !important;
        left: -44% !important;
        width: 105px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 45% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 25% !important;
        /* encosta na base do .car-inner */
        left: 51% !important;
        transform: translateX(-50%);
        width: 105% !important;
        height: auto;
        display: block;
    }


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 60% !important;
        width: 130px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 38% !important;
        width: 170px !important;
        left: 75% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }


}

@media screen and (min-width: 560px) and (max-width: 600px) {
 .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
 
    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1190px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1190px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 1.8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

    
        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 24% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 65% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -95% !important;
        left: 10% !important;
        width: 200px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 34% !important;
        left: -44% !important;
        width: 105px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 45% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 25% !important;
        /* encosta na base do .car-inner */
        left: 51% !important;
        transform: translateX(-50%);
        width: 105% !important;
        height: auto;
        display: block;
    }


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 60% !important;
        width: 130px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 38% !important;
        width: 170px !important;
        left: 75% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

}

@media screen and (min-width: 600px) and (max-width: 650px) {
   .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
 
    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1250px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1250px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 1.8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

    
        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 22% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 65% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -110% !important;
        left: 10% !important;
        width: 200px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 27% !important;
        left: -44% !important;
        width: 105px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 45% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 18% !important;
        /* encosta na base do .car-inner */
        left: 51% !important;
        transform: translateX(-50%);
        width: 105% !important;
        height: auto;
        display: block;
    }


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 55% !important;
        width: 150px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 34% !important;
        width: 190px !important;
        left: 80% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }



}

@media screen and (min-width: 650px) and (max-width: 700px) {
   .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
 
    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1350px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1350px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 1.8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

    
        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 22% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 65% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -110% !important;
        left: 10% !important;
        width: 200px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 27% !important;
        left: -44% !important;
        width: 105px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 45% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 18% !important;
        /* encosta na base do .car-inner */
        left: 51% !important;
        transform: translateX(-50%);
        width: 105% !important;
        height: auto;
        display: block;
    }


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 55% !important;
        width: 150px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 34% !important;
        width: 190px !important;
        left: 80% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }



}

@media screen and (min-width: 700px) and (max-width: 750px) {
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
 
    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1450px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1450px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;

        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 1.8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

    
        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 22% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 65% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -125% !important;
        left: 10% !important;
        width: 240px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 17% !important;
        left: -44% !important;
        width: 120px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 45% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 12% !important;
        /* encosta na base do .car-inner */
        left: 51% !important;
        transform: translateX(-50%);
        width: 105% !important;
        height: auto;
        display: block;
    }


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 52% !important;
        width: 190px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 32% !important;
        width: 210px !important;
        left: 82% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }





}

@media screen and (min-width: 750px) and (max-width: 790px) {

    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
 
    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1550px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1550px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 1.8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

    
        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 23.5% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 55% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -135% !important;
        left: 10% !important;
        width: 240px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 11.5% !important;
        left: -44% !important;
        width: 120px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 45% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 12% !important;
        /* encosta na base do .car-inner */
        left: 51% !important;
        transform: translateX(-50%);
        width: 105% !important;
        height: auto;
        display: block;
         transition: none !important;
    animation: none !important;
    pointer-events: auto !important;
    cursor: pointer; /* feedback visual */
    }

    /* Remove qualquer efeito de hover */
.carro-premio:hover {
    transform: translateX(-50%) !important;
    transition: none !important;
}


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 52% !important;
        width: 190px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 32% !important;
        width: 230px !important;
        left: 82% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }


}

@media screen and (min-width: 790px) and (max-width: 850px) {
  
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
 
    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1580px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1580px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 1.8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

    
        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 23.5% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 55% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -135% !important;
        left: 10% !important;
        width: 255px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 11.5% !important;
        left: -44% !important;
        width: 150px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 51% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 80% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 12% !important;
        /* encosta na base do .car-inner */
        left: 51% !important;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        display: block;
         transition: none !important;
    animation: none !important;
    pointer-events: auto !important;
    cursor: pointer; /* feedback visual */
    }

    /* Remove qualquer efeito de hover */
.carro-premio:hover {
    transform: translateX(-50%) !important;
    transition: none !important;
}


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 52% !important;
        width: 190px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 32% !important;
        width: 230px !important;
        left: 82% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }



}


@media screen and (min-width: 850px) and (max-width: 900px) {
  
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
 
    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1580px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1580px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 1.8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

    
        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 24.5% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 50% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -135% !important;
        left: 10% !important;
        width: 255px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 11.5% !important;
        left: -44% !important;
        width: 150px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 51% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 80% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 12% !important;
        /* encosta na base do .car-inner */
        left: 51% !important;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        display: block;
         transition: none !important;
    animation: none !important;
    pointer-events: auto !important;
    cursor: pointer; /* feedback visual */
    }

    /* Remove qualquer efeito de hover */
.carro-premio:hover {
    transform: translateX(-50%) !important;
    transition: none !important;
}


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 52% !important;
        width: 210px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 32% !important;
        width: 230px !important;
        left: 82% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }




}

@media screen and (min-width: 900px) and (max-width: 950px) {
  
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
 
    .raspe-label {
        top: 2% !important;
        left: 25% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1580px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1580px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 1.8% !important;
        left: 45% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

    
        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 26.5% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 40% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -135% !important;
        left: 10% !important;
        width: 275px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 11.5% !important;
        left: -48% !important;
        width: 150px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 51% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 80% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 12% !important;
        /* encosta na base do .car-inner */
        left: 51% !important;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        display: block;
         transition: none !important;
    animation: none !important;
    pointer-events: auto !important;
    cursor: pointer; /* feedback visual */
    }

    /* Remove qualquer efeito de hover */
.carro-premio:hover {
    transform: translateX(-50%) !important;
    transition: none !important;
}


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 52% !important;
        width: 210px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 32% !important;
        width: 230px !important;
        left: 82% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }



}

@media screen and (min-width: 950px) and (max-width: 1000px) {
   
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }
 
 
    
    .raspe-text {
        left: 40% !important
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1600px !important;
        /* altura suficiente para conter tudo no mobile */
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1600px !important;
        /* OU 600px conforme desejado */
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 15% !important;
        left: 16% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 15% !important;
    }

    
        .raspadinha-canvas {
        visibility: hidden !important;
    }

       .raspe-label {
        visibility: hidden !important;
    }


    .sorteios-text {
        position: absolute;
        top: 26.5% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 40% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        /* altura visível para permitir que os filhos posicionem-se dentro */
        z-index: 5;
    }

    .celular-premio {
        position: absolute !important;
        top: -135% !important;
        left: 10% !important;
        width: 300px !important;
        height: auto;
    }

    .premios38-img {
        position: absolute !important;
        top: 11.5% !important;
        left: -48% !important;
        width: 150px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        /* 👈 altura definida para permitir 'top' absoluto */
    }

    /* Texto sobreposto ao carro */
    .carro-text-img {
        position: absolute !important;
        top: 63% !important;
        /* agora vai funcionar corretamente */
        left: 50%;
        transform: translateX(-50%);
        width: 70% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    /* Imagem do carro */
    .carro-premio {
        position: absolute !important;
        bottom: 2% !important;
        /* encosta na base do .car-inner */
        left: 51% !important;
        transform: translateX(-50%);
        width: 90% !important;
        height: auto;
        display: block;
         transition: none !important;
    animation: none !important;
    pointer-events: auto !important;
    cursor: pointer; /* feedback visual */
    }

    /* Remove qualquer efeito de hover */
.carro-premio:hover {
    transform: translateX(-50%) !important;
    transition: none !important;
}


    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 52% !important;
        width: 210px !important;
        left: -10%;
        z-index: 30 !important;
    }

    .balao-deco.direita {
        top: 32% !important;
        width: 250px !important;
        left: 85% !important;
        right: -10%;
        z-index: 30 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {

        0%,
        100% {
            transform: translateY(0) rotate(-12deg);
        }

        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }


}

@media screen and (min-width: 1000px) and (max-width: 1040px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 40% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 15% !important;
        left: 23% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 3% !important;
        left: 50%;
        width: 40% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 28.5% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 40% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 150px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 25%;
        transform: translateX(-50%);
        width: 45% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 35% !important;
        transform: translateX(-50%);
        width: 70% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 270px !important;
        left: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 270px !important;
        left: 85% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1040px) and (max-width: 1100px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 40% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12% !important;
        left: 23% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: -1% !important;
        left: 50%;
        width: 40% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 26.5% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 36% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 150px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 25%;
        transform: translateX(-50%);
        width: 45% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 35% !important;
        transform: translateX(-50%);
        width: 70% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 270px !important;
        left: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 270px !important;
        left: 85% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1100px) and (max-width: 1150px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 80px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 40% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12% !important;
        left: 23% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 2% !important;
        left: 50%;
        width: 30% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 25.5% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 30% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 150px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 25%;
        transform: translateX(-50%);
        width: 45% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 35% !important;
        transform: translateX(-50%);
        width: 70% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 270px !important;
        left: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 270px !important;
        left: 85% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1150px) and (max-width: 1170px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 170px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 40% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12% !important;
        left: 23% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 2% !important;
        left: 50%;
        width: 30% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 25.5% !important;
        left: 50%;
        transform: translateX(-50%);
        width: 30% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 150px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 25%;
        transform: translateX(-50%);
        width: 45% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 35% !important;
        transform: translateX(-50%);
        width: 70% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 270px !important;
        left: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 270px !important;
        left: 85% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1170px) and (max-width: 1200px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
         width: 170px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 40% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12% !important;
        left: 23% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 2% !important;
        left: 50%;
        width: 30% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 27.5% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 30% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 150px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 38% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 38% !important;
        transform: translateX(-50%);
        width: 60% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 290px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 290px !important;
        left: 84.5% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1200px) and (max-width: 1250px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 170px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12% !important;
        left: 28% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 2% !important;
        left: 50%;
        width: 30% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 27.5% !important;
        left: 51.3%;
        transform: translateX(-50%);
        width: 30% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 150px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 38% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 38% !important;
        transform: translateX(-50%);
        width: 60% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 290px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 290px !important;
        left: 84.5% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1250px) and (max-width: 1300px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 195px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12% !important;
        left: 28% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 2% !important;
        left: 50%;
        width: 30% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 27.5% !important;
        left: 51.3%;
        transform: translateX(-50%);
        width: 26% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 135px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 34% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 55% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 290px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 290px !important;
        left: 84.5% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1300px) and (max-width: 1370px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 195px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12% !important;
        left: 28% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 2% !important;
        left: 50%;
        width: 30% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 27.5% !important;
        left: 51.3%;
        transform: translateX(-50%);
        width: 26% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 135px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 34% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 55% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 290px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 290px !important;
        left: 86.5% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1370px) and (max-width: 1400px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 200px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12% !important;
        left: 28% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 2% !important;
        left: 50%;
        width: 30% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 28.5% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 20% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 135px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 34% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 55% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 295px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 295px !important;
        left: 87.5% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1400px) and (max-width: 1430px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
         width: 210px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12% !important;
        left: 28% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 2% !important;
        left: 50%;
        width: 30% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 28.5% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 20% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 135px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 34% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 55% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 295px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 295px !important;
        left: 87.5% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1430px) and (max-width: 1470px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
         width: 210px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12.5% !important;
        left: 31% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 3% !important;
        left: 50%;
        width: 25% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 26.5% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 20% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 135px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 34% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 55% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 310px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 310px !important;
        left: 87.5% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1470px) and (max-width: 1530px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 210px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12.5% !important;
        left: 31% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 1.5% !important;
        left: 50%;
        width: 25% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 25.5% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 18% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 135px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 34% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 55% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 310px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 310px !important;
        left: 87.5% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1530px) and (max-width: 1600px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 210px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12.5% !important;
        left: 31% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 1.5% !important;
        left: 50%;
        width: 25% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 27.5% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 18% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 125% !important;
        width: 300px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 30% !important;
        width: 135px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 30% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 50% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 350px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 350px !important;
        left: 86.5% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1600px) and (max-width: 1670px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 210px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1100px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1100px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12.5% !important;
        left: 31% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 1.5% !important;
        left: 50%;
        width: 25% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 26.8% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 15% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 15% !important;
        left: 115% !important;
        width: 340px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 30.5% !important;
        left: 26% !important;
        width: 140px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 30% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 30% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 30% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 50% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 350px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 350px !important;
        left: 86.5% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1670px) and (max-width: 1700px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 210px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1150px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1150px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12.5% !important;
        left: 31% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 1.5% !important;
        left: 50%;
        width: 25% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 27.8% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 15% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 28% !important;
        left: 115% !important;
        width: 340px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 38.5% !important;
        left: 26% !important;
        width: 160px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 35% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 30% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 22% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 50% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 350px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 350px !important;
        left: 86.5% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1700px) and (max-width: 1800px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 210px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1200px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1200px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12.5% !important;
        left: 31% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 1.5% !important;
        left: 50%;
        width: 25% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 27.8% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 15% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 28% !important;
        left: 115% !important;
        width: 340px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 38.5% !important;
        left: 26% !important;
        width: 160px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 35% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 30% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 22% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 50% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 350px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 350px !important;
        left: 88% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1800px) and (max-width: 1850px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 250px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1250px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1250px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12.5% !important;
        left: 31% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 1.5% !important;
        left: 50%;
        width: 25% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 27.8% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 15% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 28% !important;
        left: 115% !important;
        width: 360px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 38.5% !important;
        left: 26% !important;
        width: 160px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 35% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 30% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 22% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 50% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 350px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 350px !important;
        left: 88% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1850px) and (max-width: 1900px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 250px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1250px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1250px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12.5% !important;
        left: 31% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 1.5% !important;
        left: 50%;
        width: 25% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 28.8% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 15% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 28% !important;
        left: 115% !important;
        width: 360px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 38.5% !important;
        left: 26% !important;
        width: 160px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 35% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 30% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 14% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 48% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 350px !important;
        left: -8%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 350px !important;
        left: 88% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 1900px) and (max-width: 2050px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 250px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1250px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1250px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12.5% !important;
        left: 31% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 1.5% !important;
        left: 50%;
        width: 25% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 28.8% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 15% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 28% !important;
        left: 115% !important;
        width: 360px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 38.5% !important;
        left: 26% !important;
        width: 160px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 35% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 30% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 14% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 45% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 350px !important;
        left: -7% !important;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 350px !important;
        left: 89% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}

@media screen and (min-width: 2050px) and (max-width: 2200px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 250px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1250px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1250px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12.5% !important;
        left: 31% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 1.5% !important;
        left: 50%;
        width: 25% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 30.8% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 15% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 28% !important;
        left: 115% !important;
        width: 360px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 38.5% !important;
        left: 26% !important;
        width: 160px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 35% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 30% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 14% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 40% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 350px !important;
        left: -7% !important;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 350px !important;
        left: 89% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}


@media screen and (min-width: 2200px) and (max-width: 2350px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 250px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1300px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1300px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12.5% !important;
        left: 31% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 1.5% !important;
        left: 50%;
        width: 25% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 32.8% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 15% !important;
        z-index: 4;
    }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 28% !important;
        left: 115% !important;
        width: 380px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 38.5% !important;
        left: 26% !important;
        width: 160px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 35% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 25% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 10% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 38% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 400px !important;
        left: -7% !important;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 400px !important;
        left: 90% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}



@media screen and (min-width: 2350px) and (max-width: 9999px) {
    
    .ticket-big1,
    .ticket-big2,
    .ticket-big3,
    .ticket-big4 {
        width: 250px !important;
        height: auto !important;
    }

    .ticket1,
    .ticket2,
    .ticket3,
    .ticket4,
    .ticket5,
    .ticket6,
    .ticket7,
    .ticket8,
    .ticket9,
    .ticket10,
    .ticket11,
    .ticket13,
    .ticket14,
    .ticket15,
    .ticket16 {
        transform: scale(0.8);
    }

    .raspe-text {
        left: 35% !important;
    }

    .prizes-section {
        position: relative;
        width: 100%;
        height: 1400px !important;
        overflow: hidden;
    }

    .prizes-section .background-image {
        height: 1400px !important;
        object-fit: cover;
    }

    .prizes-section img {
        display: block;
    }

    .prizes-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
    }

    .raspe-label {
        position: absolute;
        top: 12.5% !important;
        left: 31% !important;
        transform: translateX(-50%);
        z-index: 2;
    }

    .raspadinha-wrapper {
        position: absolute;
        top: 1.5% !important;
        left: 50%;
        width: 25% !important;
        transform: translateX(-50%);
        z-index: 3;
    }

    .raspe-img,
    .raspadinha-canvas {
        width: 140px;
        height: auto;
        display: block;
    }

    .raspe-img {
        width: 70% !important;
        left: 18% !important;
    }

    .sorteios-text {
        position: absolute;
        top: 30.8% !important;
        left: 50.3%;
        transform: translateX(-50%);
        width: 15% !important;
        z-index: 4;
     }

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

    .premios-container {
        position: relative !important;
        width: 100%;
        height: 200px;
        z-index: 90 !important;
    }

    .celular-premio {
        position: absolute !important;
        top: 28% !important;
        left: 115% !important;
        width: 380px !important;
        height: auto;
        pointer-events: auto !important;
         z-index: 90 !important;
    }

    .premios38-img {
        position: absolute !important;
        top: 38.5% !important;
        left: 26% !important;
        width: 160px !important;
        height: auto;
    }

    .car-wrapper {
        position: absolute !important;
        top: 72%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 5;
    }

    .car-inner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
    }

    .carro-text-img {
        position: absolute !important;
        top: 35% !important;
        left: 28%;
        transform: translateX(-50%);
        width: 25% !important;
        height: auto;
        z-index: 6;
        pointer-events: none;
    }

    .carro-premio {
        position: absolute !important;
        bottom: 10% !important;
        left: 40% !important;
        transform: translateX(-50%);
        width: 38% !important;
        height: auto;
        display: block;
        transition: none !important;
        animation: none !important;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 6 !important;
    }

    .carro-premio:hover {
        transform: translateX(-50%) !important;
        transition: none !important;
    }

    .balao-deco {
        position: absolute;
        top: 30%;
        width: 80px;
        height: auto;
        z-index: 2;
        opacity: 0.8;
        animation: flutuar 2.5s ease-in-out infinite;
    }

    .balao-deco.esquerda {
        top: 15% !important;
        width: 400px !important;
        left: -7% !important;
        z-index: 99 !important;
        animation: flutuar-com-rotacao-esquerda 2.5s ease-in-out infinite;
    }

    .balao-deco.direita {
        top: 15% !important;
        width: 400px !important;
        left: 90% !important;
        right: -10%;
        z-index: 99 !important;
        animation: flutuar-com-rotacao 2.5s ease-in-out infinite;
    }

    @keyframes flutuar {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes flutuar-com-rotacao {
        0%, 100% {
            transform: translateY(0) rotate(-12deg);
        }
        50% {
            transform: translateY(-10px) rotate(-12deg);
        }
    }

    @keyframes flutuar-com-rotacao-esquerda {
        0%, 100% {
            transform: translateY(0) rotate(12deg);
        }
        50% {
            transform: translateY(-10px) rotate(12deg);
        }
    }
}



















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



    .raspe-arrow::before {
        content: "↓" !important;
    }

    .raspe-arrow {
        animation-name: blinkArrowDown;
    }

    @keyframes blinkArrowDown {
        0% {
            transform: translateY(0);
            opacity: 1;
        }

        50% {
            transform: translateY(5px);
            opacity: 0.6;
        }

        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
}


/* Seta padrão em telas maiores */
@media screen and (min-width: 948px) {
    .raspe-arrow::before {
        content: "→";
    }

    .raspe-arrow {
        animation-name: blinkArrow;
    }
}




/* ==========================================================
   CONFETTI ANIMATION
   ========================================================== */


.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    pointer-events: none;
    z-index: 20;
    overflow: visible;
}

.confetti {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    animation: confetti-fall 2.2s ease-out forwards;
    opacity: 1;
    font-family: system-ui, sans-serif;
    user-select: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}


@keyframes confetti-fall {
    to {
        transform: translate(var(--x), var(--y)) rotate(1080deg);
        opacity: 0;
    }
}