﻿:root {
    --c-red1: #CC092F;
    --c-red2: #810101;
    --c-red3: #44010E;
    --c-redshadow: rgba(140, 8, 34, .8);
    --c-redhover: #b2082a;
    --c-grayred: #fee2e7;
    --c-black1: #000000;
    --c-black2: #161616;
    /*    --c-blue1: #06113b;*/
    --c-blue1: #051139;
    --c-blue2: #02d1f5;
    --c-violet1: #cb20f9;
    --c-white: #ffffff;
    --c-grey1: #eeeeee;
    --c-grey2: #f5f6fa;
    --c-form: #6a6c72;
    --c-error: #CC092F;
}

/*
    BradescoSans [Light-300]
    BradescoSans [Regular-400]
    BradescoSans [Medium-500]
    BradescoSans [SemiBold-600]
    BradescoSans [Bold-700]
    BradescoSans [XBold-800]

    BradescoSans [LightItalic-300]
    BradescoSans [Italic-400]
    BradescoSans [MediumItalic-500]
    BradescoSans [SemiBoldItalic-600]
    BradescoSans [BoldItalic-700]
    BradescoSans [XBoldItalic-800]
*/

body {
    /* Ajuste do menu para ficar abaixo da barra */
    padding-top: 120px;
    /*padding-top: 160px;*/
    transition: opacity 1s ease-in-out;
    opacity: 1 !important;
    letter-spacing: 0;
    height: 100%;
    font-size: 1.3rem;
    line-height: 1.2;
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    color: var(--c-black1);
    background-color: var(--c-red2)!important;
    -webkit-font-smoothing: antialiased !important;
    appearance: none !important;
    text-rendering: optimizelegibility;
}

body.body-aguarde,
body.body-erro {
    margin-top: 0px !important;
    padding-top: 0px !important;
}

body.index {
    /* background-color: #051139; */
}

body.ganhadores {
    /* background-color: var(--c-blue1); */
}

@media (max-width: 991px) {
    body {
        /* Ajuste do menu para ficar abaixo da barra */
        padding-top: 6.4rem;
        /*padding-top: 14.4rem;*/
        background-color: var(--c-red2);
    }
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
    /*10px*/
}

@media (max-width: 991px) {
    html {
        font-size: 62.5%;
        /*10px*/
    }
}

/* Logo menu oculto */
.logos-container.logos-container-index img{
    opacity: 1!important;
}

.logos-container img {
    /* opacity: 0 !important; */
    opacity: 1 !important;
}


/*Animação*/
@keyframes pulseSmall {
    0% {
        -webkit-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }

    50% {
        -webkit-transform: scale(0.98) rotate(0deg);
        -ms-transform: scale(0.98) rotate(0deg);
        transform: scale(0.98) rotate(0deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
}

.pulseSmall {
    -webkit-animation-name: pulseSmall;
    animation-name: pulseSmall;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    transition: all 0.3s ease-in-out !important;
}

@keyframes pulseFast {
    0% {
        -webkit-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }

    50% {
        -webkit-transform: scale(0.95) rotate(0deg);
        -ms-transform: scale(0.95) rotate(0deg);
        transform: scale(0.95) rotate(0deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
}

.pulseFast {
    -webkit-animation-name: pulseFast;
    animation-name: pulseFast;
    animation-duration: 2s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    transition: all 0.3s ease-in-out !important;
}


/* LINK */
a {
    color: var(--c-black1);
    text-decoration: none;
}

a:hover {
    color: var(--c-black1);
    text-decoration: none;
}

a.decoration-none {
    text-decoration: none !important;
}


/* TEXT */
p {
    font-family: 'BradescoSans', Arial, sans-serif !important;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: left;
    margin-bottom: 5px;
}

p.title {
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: left;
    font-weight: 700;
}

p.description_small {
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: left;
    font-weight: 400;
}

p.description_big1 {
    font-size: 2.4rem;
    line-height: 1.2;
    text-align: left;
    font-weight: 400;
}

@media (max-width: 991px) {
    p.title {
        font-size: 1.5rem;
    }
}


/* BUTTONS */
.btn {
    position: relative;
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    color: var(--c-white);
    background: var(--c-red1);
    font-size: 1.6rem;
    line-height: 1;
    padding: 1.2rem 2.5rem 1.2rem 2.5rem;
    border-radius: 10rem;
    border: 0rem solid;
    border-color: var(--c-red1);
    transition: all 0.3s ease-in-out;
    text-transform: none !important;
    letter-spacing: 0px;
    min-height: 4rem;
}

.btn:focus,
.btn:hover,
.btn.active {
    color: var(--c-white);
    background: var(--c-red1);
    filter: saturate(1.2);
}

.btn.btn-white {
    color: var(--c-red1) !important;
    background: var(--c-white);
}

.btn.btn-white:focus,
.btn.btn-white:hover,
.btn.btn-white.active {
    color: var(--c-redhover) !important;
    background: var(--c-white) !important;
}

.btn.btn-black {
    color: var(--c-white) !important;
    background: var(--c-black1);
}

.btn.btn-black:focus,
.btn.btn-black:hover,
.btn.btn-black.active {
    color: var(--c-white) !important;
    background: var(--c-black1) !important;
}

.btn.btn-gray-light {
    color: var(--c-black1) !important;
    background: var(--c-gray1);
}

.btn.btn-gradient {
    color: var(--c-white) !important;
    /* background: transparent linear-gradient(77deg, #CC092F 0%, #CC092F 61%, #b41a83 100%) 0% 0% !important; */
    background: var(--c-red1);
    transition: all 0.3s ease-in-out;
}

.btn.btn-gradient:focus,
.btn.btn-gradient:hover,
.btn.btn-gradient.active {
    color: var(--c-white) !important;
    /* background: transparent linear-gradient(77deg, #CC092F 0%, #CC092F 61%, #b41a83 100%) 0% 0% !important; */
    background: var(--c-red1);
    transition: all 0.3s ease-in-out;
    transform: scale(1.05);
    filter: saturate(1.2);
}

@media (max-width: 991px) {
    .btn {
        /*        padding: 1.3rem 1.5rem 1.3rem 1.5rem;*/
    }
}


/* FAIXA DE COOKIE */
.cookies {}

.popup.cookies {
    z-index: 999999 !important;
}

.popup.cookies .cookies {
    color: var(--c-black1);
    background: var(--c-grey2);
}

.cookies .padding {
    max-width: 1340px;
}

.cookies .padding .description {
    margin: 0 0 0 0;
    text-align: left;
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.4rem;
    text-align: center;
}

@media (max-width: 991px) {
    .cookies .padding .description {
        font-size: 13px;
        line-height: 1.8rem;
        margin: 0px 0 5px 0;
        text-align: center;
    }
}

.cookies a {
    color: var(--c-white);
    text-decoration: underline;
}

.cookies a:hover {
    color: var(--c-white);
    text-decoration: none;
}

.cookies .padding .buttons-allow {
    display: flex;
    justify-content: center;
    gap: 12px;
    text-align: center;
    margin-top: 10px !important;
}

.cookies .padding .buttons-allow .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    max-width: 50%;
    justify-content: center;
    text-decoration: none;
}

.cookies .padding .buttons-allow .btn:focus,
.cookies .padding .buttons-allow .btn:hover,
.cookies .padding .buttons-allow .btn.active {
    /* position: relative;
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    color: var(--c-white);
    background: var(--c-black1);
    font-size: 1.6rem;
    line-height: 1;
    padding: 1rem 2rem;
    border-radius: 0rem;
    border: 0.1rem solid;
    border-color: var(--c-black1);
    transition: all 0.3s ease-in-out;
    text-transform: none;
    text-decoration: none; */
    text-decoration: none;
}

.cookies .padding .buttons-allow {
    margin: 0 0 0 0;
}

/* .cookies .padding .buttons-allow .btn.btn-outline-preto {
    position: relative;
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    color: var(--c-white);
    background: var(--c-black1);
    font-size: 1.6rem;
    line-height: 1;
    padding: 1rem 2rem;
    border-radius: 0rem;
    border: 0.1rem solid;
    border-color: var(--c-black1);
    transition: all 0.3s ease-in-out;
    text-transform: none;
    text-decoration: none;
    color: var(--c-black1);
    background: transparent;
    border-color: var(--c-black1);
}

.cookies .padding .buttons-allow .btn.btn-outline-preto:hover {
    color: var(--c-blue1);
    border-color: var(--c-blue1);
}

@media (max-width: 991px) {
    .cookies .padding .buttons-allow .btn {
        font-size: 14px;
        padding: 10px 20px 13px 20px;
        margin-top: 5px;
        margin-bottom: 5px;
        width: 100%;
    }
} */


/* POPUP COOKIES */
#popup-cookiesgeral .modal-dialog {
    max-width: 1000px;
}

.popup-cookiesgeral .modal-content {
    /*background: var(--c-grey1)!important;*/
}

#popup-cookiesgeral .center-popup .content {
    max-width: 850px;
}

#popup-cookiesgeral.ocultar {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: animateCookies;
    animation-name: animateCookies;
}

#popup-cookiesgeral .padding {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 20px 1.5rem;
    margin: 0 auto;
}

#popup-cookiesgeral .title {
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 10px 0;
}

@media (max-width: 991px) {
    .cookies .padding .buttons-allow {
        align-items: center;
        flex-direction: column;
        gap: 0;
    }

    #popup-cookiesgeral .title {
        margin: 0 0 5px 0;
    }
}

#popup-cookiesgeral .description {
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    margin: 0;
}

@media (max-width: 991px) {
    #popup-cookiesgeral .title {
        font-size: 14px;
    }

    #popup-cookiesgeral .description {
        font-size: 12px;
        line-height: 120%;
        margin: 20px 0 10px 0;
        text-align: center;
    }
}

#popup-cookiesgeral .buttons-allow {
    margin: 0 0 10px 0;
    text-align: right;
}

#popup-cookiesgeral .buttons-allow .btn {
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 5px 10px;
    color: var(--c-white);
    background: #00cc00;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    user-select: none;
    border: 1px solid transparent;
    vertical-align: middle;
    white-space: inherit;
    cursor: pointer;
    border-radius: 4px;
}

@media (max-width: 991px) {
    #popup-cookiesgeral .buttons-allow .btn {
        font-size: 12px;
        padding: 2px 8px;
    }
}

#popup-cookiesgeral .options {
    margin: 0 0 10px 0;
    border: 1px solid #ced4da;
    border-radius: 5px;
    height: 45px;
}

@media (max-width: 991px) {
    #popup-cookiesgeral .options {
        height: auto;
    }
}

#popup-cookiesgeral .options .options-checkbox {
    padding: 10px;
}

@media (max-width: 991px) {
    #popup-cookiesgeral .options .options-checkbox {
        padding-right: 0;
    }
}

#popup-cookiesgeral .options .custom-checkbox {
    display: inline-block;
    margin: 0 10px 0 0;
}

@media (max-width: 991px) {
    #popup-cookiesgeral .options .custom-checkbox {
        margin: 0 5px 0 0;
    }
}

#popup-cookiesgeral .options .custom-checkbox .custom-control-label {
    padding: 0 0 0 5px;
    font-size: 13px;
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
}

@media (max-width: 991px) {
    #popup-cookiesgeral .options .custom-checkbox .custom-control-label {
        padding: 0 0 0 0;
        font-size: 11px;
    }
}

#popup-cookiesgeral .options .custom-checkbox .custom-control-label::before {
    width: 20px;
    height: 20px;
    line-height: 20px;
}

@media (max-width: 991px) {
    #popup-cookiesgeral .options .custom-checkbox .custom-control-label::before {
        width: 1.8rem;
        height: 1.8rem;
        line-height: 1.8rem;
    }
}

#popup-cookiesgeral .options .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    color: #00cc00;
    font-size: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

@media (max-width: 991px) {
    #popup-cookiesgeral .options .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
        width: 1.8rem;
        height: 1.8rem;
        line-height: 1.8rem;
    }
}

#popup-cookiesgeral .options .custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background: #e2e2e2;
}

#popup-cookiesgeral .options .custom-control-input:disabled~.custom-control-label {
    color: #343a40;
}

#popup-cookiesgeral .custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
    height: 1.3rem;
}

#popup-cookiesgeral .btn-mostrar-detalhes {
    position: relative;
    height: 43px;
    line-height: 30px;
    font-size: 13px;
    color: #343a40;
    border-radius: 0;
    border-left: 1px solid #ced4da;
    background: #f6f6f9;
    text-align: left;
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 30px;
    text-transform: none;
    padding: .375rem .75rem;
}

@media (max-width: 991px) {
    #popup-cookiesgeral .btn-mostrar-detalhes {
        height: 100%;
        line-height: 1.5rem;
        font-size: 11px;
    }
}

#popup-cookiesgeral .btn-mostrar-detalhes i {
    font-size: 22px;
    transition: all 0.3s ease-in-out;
}

#popup-cookiesgeral .btn-mostrar-detalhes.collapsed i {
    transform: rotate(180deg);
}

#popup-cookiesgeral #cookies-details {
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    width: 100%;
    font-size: 14px;
    /*overflow: auto;*/
}

#popup-cookiesgeral .tabs-vertical {
    padding-top: 20px;
    border: 1px solid #e4e4ea;
    border-top: 0;
}

#popup-cookiesgeral .content-cookies {
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 20px;
    border: 1px solid #e4e4ea;
    border-top: 0;
}

@media (max-width: 991px) {
    #popup-cookiesgeral .content-cookies {
        font-size: 11px;
        line-height: 120%;
        padding: 10px;
    }
}

#popup-cookiesgeral .content-cookies a {
    color: #00cc00;
    text-decoration: underline;
}

#popup-cookiesgeral .content-cookies a:hover {
    text-decoration: none;
}

#popup-cookiesgeral .tab-content {
    width: 100%;
    text-align: left;
}

#popup-cookiesgeral .tab-pane .description {
    padding: 10px 1.5rem;
    color: var(--c-white);
}

@media (max-width: 991px) {
    #popup-cookiesgeral .tab-pane .description {
        padding: 10px 0;
    }
}

#popup-cookiesgeral .nav-tabs .nav-link {
    font-size: 14px !important;
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    color: #343a40 !important;
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important;
    background-color: var(--c-white);
    text-transform: none !important;
    border: 1px solid transparent;
    border-bottom: 1px solid #e4e4ea !important;
}

#popup-cookiesgeral.nav-tabs .nav-link:focus,
#popup-cookiesgeral .nav-tabs .nav-link:hover {
    /*border-color: inherit;*/
    border: 1px solid transparent !important;
    border-bottom: 1px solid #e4e4ea !important;
}


@media (max-width: 991px) {
    #popup-cookiesgeral .nav-tabs .nav-link {
        font-size: 12px;
    }
}

#popup-cookiesgeral .nav-tabs .nav-item.show .nav-link,
#popup-cookiesgeral .nav-tabs .nav-link.active {
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    border: 1px solid transparent !important;
    border-color: #dee2e6 #dee2e6 #fff !important;
}

#popup-cookiesgeral .nav-tabs .nav-item {
    margin-bottom: -1px;
}

#popup-cookiesgeral .nav-pills .nav-link {
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    padding: 10px 10px 10px 10px;
    border: 1px solid #cccccc;
    border-bottom: 0;
    border-radius: 0;
    text-align: left;
    line-height: 120%;
    color: #161616;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
}

#popup-cookiesgeral .nav-pills .nav-link:hover {
    background-color: #e9e9e9 !important;
}

#popup-cookiesgeral .nav-pills .nav-link:last-child {
    border-bottom: 1px solid #cccccc;
}

#popup-cookiesgeral .nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
#popup-cookiesgeral .nav-pills .nav-link.active,
.nav-pills .show>.nav-link:hover {
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    color: var(--c-red1);
    background: var(--c-grey1);
}

@media (max-width: 991px) {
    #popup-cookiesgeral .nav-pills .nav-link {
        text-align: center;
        font-size: 16px;
        padding-top: 7px !important;
        padding-bottom: 5px !important;
    }
}

#popup-cookiesgeral .title-cookies {
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    margin: 0 0 10px 0;
    color: var(--c-white);
}

@media (max-width: 991px) {
    #popup-cookiesgeral .title-cookies {
        text-align: center;
    }
}

#popup-cookiesgeral .subtitle-cookies {
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #c12d22;
    /*text-transform: uppercase;*/
    margin: 10px 0;
}

#popup-cookiesgeral .controle {
    float: right;
}

@media (max-width: 991px) {
    #popup-cookiesgeral .controle {
        display: inline-block;
        float: none;
        margin: 10px 0 0 0;
    }
}

#popup-cookiesgeral .custom-switch {
    padding-right: 2.25rem;
    padding-left: 0;
}

#popup-cookiesgeral .custom-switch .custom-control-label {
    position: relative;
    padding-left: 0;
    font-size: 13px;
    line-height: 200%;
    color: var(--c-white);
}

#popup-cookiesgeral .custom-switch .custom-control-label::before {
    left: inherit;
    right: -2.25rem;
    border-color: var(--c-black1);
    background-color: var(--c-grey1);
    height: 1.3rem;
}

#popup-cookiesgeral .custom-switch .custom-control-input:checked~.custom-control-label::before {
    background: var(--c-red1);
    border-color: var(--c-grey1);
}

#popup-cookiesgeral .custom-switch .custom-control-label::after {
    right: calc(-1.55rem + 2px);
    left: inherit;
    background: var(--c-red1);
    border-color: #000000;
}

#popup-cookiesgeral .custom-switch .custom-control-input:checked~.custom-control-label::after {
    transform: translateX(.65rem);
    background: var(--c-white);
    border-color: #000000;
    z-index: 1;
}

#popup-cookiesgeral .custom-control-label::before {
    width: 1.85rem !important;
}


#popup-cookiesgeral .accordion .card {
    border-color: #cccccc;
    border-radius: 0px;
}

#popup-cookiesgeral .accordion .card-header {
    padding: 0;
    /*border-color: transparent;*/
}

#popup-cookiesgeral .accordion .card-body {
    color: #000000;
}

#popup-cookiesgeral .accordion .btn {
    color: #c12d22 !important;
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    font-size: 16px !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 10px 10px !important;
    background: #ffffff !important;
    box-shadow: none;
}

#popup-cookiesgeral .accordion .btn:hover {
    background-color: #e3e3e3 !important;
    transform: scale(1);
}

#popup-cookiesgeral .accordion .btn:focus,
#popup-cookiesgeral .accordion .btn:active {
    color: var(--c-white);
    background-color: #000000 !important;
    transform: scale(1);
}

#popup-cookiesgeral .accordion .btn:before {
    animation-name: none;
    background-color: transparent;
}

#popup-cookiesgeral .accordion .btn:hover:before {
    opacity: 0;
}

@-webkit-keyframes animateCookies {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
    }
}

@keyframes animateCookies {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(1000px);
        -ms-transform: translateY(1000px);
        transform: translateY(1000px);
    }
}

.animateCookies {
    -webkit-animation-name: animateCookies;
    animation-name: animateCookies;
}


/* MODAL GERAL */
.modal {
    background: rgb(31 31 31 / 40%);
}

.popup {
    z-index: 999999999;
}

.modal [class*="vld-"]+.error {
    color: var(--c-white)!important;
}

.modal .float-placeholder {
    color: var(--c-white)!important;
}

.modal-body {
    margin: auto !important;
    flex: inherit;
    width: 100%;
    text-align: center;
    padding: 0px;
    z-index: 1;
}

.modal-adjust {
    max-width: 600px;
}

.modal-content {
    border-radius: 12px;
    min-height: 300px;
    min-width: 580px;
    padding: 5rem 3rem;
    overflow: inherit;
    border: 0;
    background: var(--c-red1);
    /* background: transparent linear-gradient(77deg, #CC092F 0%, #CC092F 61%, #b41a83 100%) 0% 0% !important; */
}

.modal-content::before {
    position: absolute;
    z-index: -1;
    left: 0px;
    top: 0px;
    content: "";
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
    background: var(--c-blue1);
}

.modal-content .header {
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
}

.modal-content .header img {
    width: 100%;
    max-width: 250px;
}

.modal .content {
    padding: 30px 30px 80px 30px;
}

.modal-header,
.modal-footer {
    border: none;
}

.modal .btn-fechar {
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 100%;
    cursor: pointer;
    border: 0;
    margin: 10px 10px 0 0;
    padding: 0;
    line-height: 0px;
}

.modal .btn-fechar i {
    color: var(--c-white);
    font-size: 30px;
    line-height: 30px;
    transition: all 0.3s ease-in-out;
}

.modal .btn-fechar i:hover {
    color: var(--c-white);
    transform: scale(1.3);
}

.modal .btn-fechar svg {
    width: 25px;
    height: 25px;
}

.modal .titulo {
    padding: 0px;
    margin-bottom: 10px;
    text-transform: none;
    font-size: 2.7rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--c-white) !important;
}

.modal .descricao {
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: left;
    text-align: center;
    color: var(--c-white) !important;
}

.modal .descricao a {
    color: var(--c-white) !important;
    text-decoration: underline;
}

.modal .descricao a:hover {
    color: var(--c-white) !important;
    text-decoration: none;
}

.modal-dialog {
    max-width: 550px;
}

.modal .custom-control-label {
    font-size: 1.6rem;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .modal-content {
        min-height: inherit !important;
        min-width: inherit !important;
        border-radius: 0px !important;
    }

    .modal-content::before {
        min-height: inherit !important;
        min-width: inherit !important;
        border-radius: 10px !important;
    }

    .modal .titulo {
        font-size: 22px;
    }

    .modal .descricao {
        padding: 0px;
        text-align: center !important;
    }

    .modal-body .box {
        padding: 50px 20px;
        border-radius: 30px;
    }

    .modal.popup-consentimentos {
        padding: 20px 0px;
    }

    .modal.popup-consentimentos .modal-body {
        padding: 20px 0px;
    }

    .modal-body .titulo-img img {
        width: 85%;
    }

    .modal .btn-fechar {
        margin: 10px 10px 0 0;
    }
}


/*MODAL MINHA CONTA*/
.modal.popup-minhaconta {
    /*background: rgb(231 67 94 / 40%);*/
}

.modal.popup-minhaconta .modal-body {
    border: 0;
    padding: 0;
}

.modal.popup-minhaconta .modal-dialog {
    /*max-width: 450px;*/
}

.modal.popup-minhaconta .modal-content {
    padding: 50px 80px 50px 80px !important;
}

.modal.popup-minhaconta .modal-adjust {
    max-width: 550px;
}

.modal.popup-minhaconta .btn-minhaconta {
    color: var(--c-white);
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    padding: 14px 25px 11px 25px;
    text-decoration: none;
    background: var(--c-blue1);
    margin: 3px 0px;
    border-radius: 100px;
}

.modal.popup-minhaconta .btn-minhaconta:hover {
    color: var(--c-white);
    background: var(--c-blue1);
}

.modal.popup-minhaconta .btn-minhaconta-sair {
    color: var(--c-white);
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    padding: 14px 25px 11px 25px;
    text-decoration: none;
    background: var(--c-blue1);
    border-radius: 100px;
    margin: 3px 0px;
    transition: all 0.3s ease-in-out;
}

.modal.popup-minhaconta .btn-minhaconta-sair:hover {
    background: var(--c-blue1);
    color: var(--c-white);
    transform: scale(1.02);
}

.modal.popup-minhaconta .navbar-nav .nav-link {
    color: var(--c-white);
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    padding: 10px 10px 10px 10px;
    text-decoration: none;
}

.modal.popup-minhaconta .navbar-nav .nav-link:hover {
    color: #696969;
}

.modal.popup-minhaconta .logo-marca {
    position: relative;
    text-align: center;
    margin-top: 20px
}

.modal.popup-minhaconta .logo-marca img {
    width: 100%;
    max-width: 100px;
}

@media (max-width: 991px) {
    .modal.popup-minhaconta .btn-minhaconta {
        font-size: 20px;
        line-height: 20px;
    }

    .modal.popup-minhaconta .modal-content {
        padding: 40px 40px !important;
    }
}


/*MODAL - LATERAL - CONTATO*/
.modal.popup-lateral {
    padding-right: 0px !important;
}

.modal.popup-lateral .modal-content {
    background: var(--c-white);
    border-radius: 0rem;
}

.modal.popup-lateral .modal-body {
    margin-top: 5% !important;
    /*margin-top: 10%!important;*/
}

.modal.popup-lateral .titulo,
.modal.popup-lateral .descricao,
.modal.popup-lateral .descricao a {
    color: var(--c-black1) !important;
}

.modal.popup-lateral .modal-dialog-centered {
    display: flex;
    align-items: stretch;
    float: right;
}

.modal.popup-lateral .float-placeholder {
    font-size: 1.2rem;
    line-height: 1;
    text-align: left;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    /*color: var(--c-back1)!important;*/
}

.modal.popup-lateral .custom-control-label {
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--c-black1) !important;
}

.modal.popup-lateral .custom-control-label a {
    color: var(--c-black1) !important;
}

.modal.popup-lateral .custom-control-label a:hover {
    color: var(--c-black1) !important;
}

.modal.popup-lateral .custom-control-input:checked~.custom-control-label::before {
    color: var(--c-blue1);
    border-color: var(--c-blue1);
    background: var(--c-blue1);
}

.modal.popup-lateral .custom-checkbox .custom-control-label::before {
    background: var(--c-grey2);
    color: var(--c-grey2);
    /*border-color: var(--c-grey2);*/
    border: 1px solid #6a6c72;
}

@media (max-width: 991px) {
    .modal.popup-lateral .modal-content {
        border-radius: 0rem !important;
    }
}

@media (min-width: 576px) {
    .modal.popup-lateral .modal-dialog-centered {
        min-height: calc(100% - 0rem);
    }

    .modal.popup-lateral .modal-dialog {
        margin: 0rem auto;
    }
}


/* LOADER */
#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999999;
}

#loader>div {
    padding: 40px;
    background: var(--c-black1);
    color: var(--c-white);
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    text-align: center;
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    /*text-transform: uppercase;*/
    font-size: 1.8rem;
    line-height: 120%;
}

#loader span {
    font-weight: 700;
    color: var(--c-white);
}

#loader i {
    font-size: 25px;
    margin-bottom: 10px;
    color: var(--c-white);
}

.grecaptcha-badge {
    display: none;
}


/* Voltar para o topo */
#back-to-top {
    position: fixed;
    display: none;
    bottom: 10px;
    right: 1.5rem;
    z-index: 99999999 !important;
    background: #ffffff;
    border-radius: 0;
    cursor: pointer;
    height: 45px;
    width: 45px;
    -webkit-box-shadow: 0 5px 5px 0px rgb(0 0 0 / 10%);
    box-shadow: 0 5px 5px 0px rgb(0 0 0 / 10%);
    opacity: 0.8;
    opacity: 1;
    border: 5px solid #ffffff;
    transition: all 0.5s ease-in-out;
}

#back-to-top::before {
    content: "\f077";
    font-family: 'FontAwesome', Arial, sans-serif;
    color: var(--c-black1);
    font-size: 1.8rem;
    line-height: 35px;
    position: relative;
    top: -2px;
    left: 9px;
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

#back-to-top:hover {
    transform: scale(1.05);
    color: #000000;
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

body.scrolled #back-to-top {
    display: block;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
    #back-to-top {
        right: 1rem;
    }
}

/* Compartilhar no WhatsApp */
#back-to-top2 {
    position: fixed;
    display: none;
    bottom: 80px;
    right: 1.5rem;
    z-index: 99999999 !important;
    background: var(--c-blue1);
    border-radius: 100%;
    cursor: pointer;
    height: 60px;
    width: 60px;
    -webkit-box-shadow: 0 5px 5px 0px rgb(0 0 0 / 10%);
    box-shadow: 0 5px 5px 0px rgb(0 0 0 / 10%);
    opacity: 0.8;
    opacity: 1;
    border: 5px solid #f2f2f2;
    transition: all 0.5s ease-in-out;
}

#back-to-top2::before {
    content: "\f232";
    font-family: 'FontAwesome', Arial, sans-serif;
    color: var(--c-white);
    font-size: 35px;
    line-height: 35px;
    position: relative;
    top: 7px;
    left: 10px;
    opacity: 1;
    /*display: none;*/
    transition: all 0.5s ease-in-out;
}

#back-to-top2:hover {
    transform: scale(1.1);
    color: var(--c-white);
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

body.scrolled #back-to-top2 {
    display: block;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
    #back-to-top2 {
        right: 30px;
    }
}


/* NAVBAR */
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 1.3rem;
    position: relative;
    cursor: pointer;
/*    */
/*    padding: 0px 5rem 0 0rem;*/
}
/*@media (max-width: 991px){
    .nav-item {
        padding: inherit;
    }
}*/

#menu {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background: #ffffff;
    transition: all 0.5s ease;
}

#menu nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-transform: uppercase;
    width: 100%;
    margin: auto;
    border-radius: 0px;
    transition: all 0.7s;
    height: 120px;
    padding: 0 16px !important;
    background: var(--c-black1);
    /* Ajuste do menu para ficar abaixo da barra */
    /*top: 0rem!important;*/
}

.navbar-logo-cta {
    display: flex !important;
    width: 100%;
    justify-content: space-between;
    padding: 10px 0 10px 0;
    /*    padding: 24px 0 16px 0;*/
    /*    max-width: 1296px;*/
    max-width: 1318px;
    margin: 0 auto;
}

.navbar-logo-cta .cta-botao .btn {
    font-weight: 700 !important;
}

.navbar-logo-cta .cta-botao .btn {
    color: var(--c-white) !important;
    background-color: var(--c-red1) !important;
}

.navbar-logo-cta .cta-botao .btn.btn-outline {
    color: var(--c-black1)!important;
    background-color: var(--c-white)!important;
    height: 40px;
}

.logos-container {
    display: flex;
}

.logos-container .logo-mastercard {
    padding-right: 24px;
}

.logos-container .logo-bradesco,
.logos-container .logo-mastercard {
    display: block;
    height: 60px !important;
    align-content: end;
    /*    height: 32px !important;*/
}

.logos-container .logo-bradesco img,
.logos-container .logo-mastercard img {
    width: auto !important;
    height: 70% !important;
    /* height: 100% !important; */
}

.navbar-brand {
    margin-right: 5rem;
}

.navbar-light .navbar-brand a:hover {
    background: transparent !important;
}

.navbar-expand-lg .navbar-collapse {
    width: 100%;
    max-width: 1338px;
    margin: 0 auto;
    background-color: var(--c-black1);
}

#menu .cta-botao .navbar-nav {
    padding: 0px;
}

#menu .navbar-nav {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    padding: 0 1rem;
    align-items: flex-end;
    font-size: 1.2rem;
    line-height: 1;
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    text-transform: uppercase;

    justify-content: space-between!important;
/*    justify-content: flex-start;*/
}

#menu .navbar-nav a:not(.btn) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 500;
    padding: 0;
    color: var(--c-white);
    border-bottom: 4px solid transparent;
    transition: all .3s ease;
}

#menu .navbar-nav a:hover {
    color: var(--c-white);
    background: transparent;
}

#menu .navbar-nav a.active {
    font-weight: 500;
    color: var(--c-white);
    background: transparent;
    border-bottom: 4px solid var(--c-red1);
}

#menu .navbar-nav a.active:hover {
    font-weight: 500;
    color: var(--c-white);
    background: transparent;
    border-bottom: 4px solid var(--c-red1);
}

@media (min-width: 992px) and (max-width: 1038px) {
    #menu .navbar-nav {
        font-size: 1.2rem;
    }

    #menu .navbar-nav a:not(.btn) {
        padding: 0;
    }

    #menu .user a.btn {
        font-size: 1.2rem;
        line-height: 1;
        border-radius: 0rem;
        padding: 1.6rem 1.6rem !important;
    }

    #menu .navbar-brand img {
        max-width: 180px !important;
    }
}

@media (min-width: 1039px) and (max-width: 1089px) {
    .navbar-brand {
        /*display: none;*/
    }

    #menu .navbar-nav {
        font-size: 1.3rem;
    }

    #menu .navbar-nav a:not(.btn) {
        padding: 0;
    }

    #menu .user a.btn {
        font-size: 1.3rem;
        line-height: 1;
        padding: 1.6rem 1.6rem !important;
    }
}

@media (min-width: 1090px) and (max-width: 1290px) {
    #menu .navbar-nav {
        font-size: 1.4rem;
    }

    #menu .navbar-nav a:not(.btn) {
        padding: 0;
    }

    #menu .navbar-brand img {
        max-width: 180px !important;
    }

    .navbar-brand {
        margin-right: 1rem;
    }
}

@media (min-width: 1281px) and (max-width: 1460px) {
    #menu .navbar-nav {
        font-size: 1.4rem;
    }

    #menu .navbar-nav a:not(.btn) {
        padding: 0;
    }
}

@media (min-width: 1461px) and (max-width: 1920px) {
    #menu .navbar-nav {
        font-size: 1.6rem;
    }

    #menu .navbar-nav a:not(.btn) {
        padding: 0;
    }
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.7rem;
    padding-left: 0.7rem;
    padding-bottom: 0.5rem;
    padding-top: 0.7rem;
}

.navbar-light .navbar-toggler {
    border-color: transparent;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--c-white);
}

.navbar-nav .nav-link {
    color: var(--c-white);
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: #f6ddab;
}

#menu .user a.cta-header {
    margin-left: 0.5rem;
}

#menu .navbar-nav a.btn {
    font-weight: 700 !important;
}

#menu .navbar-nav a.btn {
    color: var(--c-white) !important;
    /* background: transparent linear-gradient(77deg, #CC092F 0%, #CC092F 61%, #b41a83 100%) 0% 0% !important; */
    background: var(--c-red1);
    /* background-color: var(--c-red1) !important; */
}

#menu .navbar-nav a.btn.btn-outline {
    color: var(--c-black1) !important;
    background: var(--c-white) !important;
    height: 40px;
}

#menu .navbar-toggler {
    color: #161616;
    font-size: 30px;
    padding: 10px 24px 10px 24px;
}

#menu .navbar-toggler:focus {
    border: none;
    outline: 0;
}

.navbar-brand {
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.navbar-brand .nav-link {
    padding: 0.1rem;
}

#menu .navbar-brand img {
    width: 100%;
    max-width: 210px;
    transition: all 0.5s ease-in-out;
}

@media (max-width: 991px) {

    #menu .navbar-nav a.active:hover,
    #menu .navbar-nav a.active:focus,
    #menu .navbar-nav a.active,
    #menu .navbar-nav a:hover,
    #menu .navbar-nav a:focus {
        color: var(--c-white) !important;
        border-color: transparent !important;
        font-weight: 700;
    }

    .logos-container .logo-mastercard {
        padding-right: 16px;
    }

    .logos-container .logo-bradesco,
    .logos-container .logo-mastercard {
        height: 50px !important;
        align-content: center;
    }

    .navbar-logo-cta {
        display: none !important;
    }

    .navbar-brand {
        margin-top: inherit;
        margin-left: 0rem !important;
        margin: auto;
    }

    #menu .navbar-toggler {
        color: var(--c-white);
        padding: 0 !important;
        margin: auto 0;
        margin-left: auto;
    }

    .nav-link {
        padding: 0px 24px 0px 24px !important;
    }

    #menu .navbar-nav a.btn {
        color: var(--c-grey1);
    }

    .navbar-brand.logo a {
        padding: 0px 1.5rem 0px 1.5rem !important;
        font-size: inherit;
    }

    #menu .user a.btn {
        font-size: 1.8rem;
        line-height: 100%;
        border-radius: 0px;
        width: 100%;
    }
}


/*Ajustes de responsivo*/
@media (min-width: 992px) and (max-width: 1080px) {
    /**/
}

@media (min-width: 1081px) and (max-width: 1200px) {
    /**/
}

@media (min-width: 1201px) and (max-width: 1280px) {
    /**/
}

@media (min-width: 1281px) and (max-width: 1350px) {
    /**/
}

@media (min-width: 1501px) and (max-width: 4000px) {
    /**/
}


#menu .menu {
    display: inline-block;
}

@media (max-width: 991px) {
    .menu-mobile {
        display: flex !important;
        width: 100%;
        justify-content: space-between;
        padding: 0 12px;
    }

    #menu .navbar-collapse a.active {
        color: var(--c-white);
        background: transparent;
    }

    .cta-header .icone {
        display: inline-block;
    }

    #menu nav .user {
        position: relative;
        display: block;
        text-align: right;
        padding: 10px 1.5rem 10px 1.5rem;
    }

    #menu nav .user .cta-header {
        width: 100%;
        margin-top: 5px;
    }

    #menu {
        position: relative;
    }

    #menu nav {
        display: inline-block !important;
        color: var(--c-white);
        text-transform: none !important;
        width: 100% !important;
        margin: 0px !important;
        border-radius: 0px !important;
        box-shadow: 0 0 20px rgb(0 0 0 / 10%) !important;
        transition: all 0.3s !important;
        height: 64px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        /* Ajuste do menu para ficar abaixo da barra */
        top: 0px !important;
        /*top: 80px !important;*/
    }

    #menu .cta-participe a {
        margin-left: auto;
    }

    #menu .btn {
        /* font-size: 2rem; */
        /* line-height: 100%; */

    }

    #menu .cta-participe .btn.active {
        color: var(--c-white);
    }

    .user #btn-header {
        font-size: 14px;
        line-height: 16px;
        display: block;
        margin: 5px 0px;
        padding: 8px 30px 7px 30px;
    }

    #menu .navbar-nav {
        text-align: center;
        margin: 0px !important;
        /*height: 100vh!important;*/
        font-size: inherit;
        line-height: inherit;
        font-family: inherit;
        text-transform: inherit;
        padding: 20px 0;
    }

    .navbar-collapse {
        margin-top: 9px !important;
        background: var(--c-black1);
    }

    .navbar-collapse ul {
        flex-direction: column !important;
        align-items: center !important;
        margin-top: -12px !important;
        /* background: var(--c-red1); */
    }

    #menu .navbar-brand img {
        width: 100%;
        max-width: 130px;
        /*max-width: 150px;*/
        transition: all 0.5s ease-in-out;
        border-radius: 5px;
        padding: 0px 0px 0px 0px;
        background: transparent !important;
    }

    #menu .item-menu {
        font-size: 1.8rem;
        padding: 1.5rem 1.5rem 1rem 2.5rem !important;
        border-bottom: none;
        line-height: 100% !important;
        text-transform: uppercase;
    }

    .nav-item,
    .nav-item a {
        max-width: 320px;
        width: 100%;
    }
}


/* SCROLL */
::-webkit-scrollbar {
    width: 7px;
    height: 11.5rem;
    border-radius: 100px;
}

::-webkit-scrollbar-track {
    background: #FFFFFF;
    border-radius: 100px;
}

::-webkit-scrollbar-thumb {
    background: #bababa;
    border-radius: 100px;
}

.section.rtp ::-webkit-scrollbar-thumb {
    background: var(--c-blue2);
    border-radius: 100px;
}

.section.ganhadores ::-webkit-scrollbar-thumb {
    background: var(--c-blue2);
    border-radius: 100px;
}

.scroll-container {
    border: none;
    margin: 20px 0;
    max-height: 307px;
    overflow-y: scroll;
}

@media (max-width: 991px) {
    ::-webkit-scrollbar {
        width: 5px;
        height: 6px;
    }
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--c-form) !important;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--c-form) !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--c-form) !important;
}


/* GERAL */
strong,
.strong {
    font-weight: 700;
}

.text-regular {
    font-weight: 400;
}

.text-uppercase {
    text-transform: uppercase;
}

hr {
    border-color: var(--c-black1);
}

.text-black {
    color: var(--c-black1) !important;
}

.text-white {
    color: var(--c-white) !important;
}

.text-gray {
    color: var(--c-grey1) !important;
}

.text-blue1 {
    color: var(--c-blue1) !important;
}

.text-blue2 {
    color: var(--c-blue2) !important;
}

.text-red1 {
    color: var(--c-red1) !important;
}

.text-red2 {
    color: var(--c-red2) !important;
}

.text-red3 {
    color: var(--c-red3) !important;
}

.bkg-black {
    background: var(--c-black1) !important;
}

.bkg-white {
    background: var(--c-white) !important;
}

.bkg-gray {
    background: var(--c-grey1) !important;
}

.bkg-blue1 {
    background: var(--c-blue1) !important;
}

.bkg-blue2 {
    background: var(--c-blue2) !important;
}

.bkg-red1 {
    background: var(--c-red1) !important;
}

.bkg-red2 {
    background: var(--c-red2) !important;
}

.bkg-red3 {
    background: var(--c-red3) !important;
}

.text-gradient {
    background: linear-gradient(to right, #F36279 0%, #CC092F 10%, #B41A83 70%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

.bkg-gradient {
    /* background: transparent linear-gradient(77deg, #CC092F 0%, #CC092F 61%, #b41a83 100%) 0% 0% !important; */
    background: var(--c-red1);
}

span.asterisco {
    position: relative;
    display: inline-block;
    font-size: 50%;
    line-height: 100%;
    top: -14px;
    left: 1px;
}

@media (max-width: 991px) {
    span.asterisco {
        top: -9px;
    }
}

/*Icones do MEMU (X) e (=)*/
#menu .navbar-toggler.icone-menu:before {
    /*content: "\f067";*/
    /*font-family: 'FontAwesome', Arial, sans-serif;*/
    /*font-size: 1.5rem;*/
    /*line-height: 1.5rem;*/
    color: var(--c-white);
    fill: #ffffff !important;
    position: relative;
    top: 0px;
    margin-right: 0px;
    float: right;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23ffffff' viewBox='0 0 21 20' class='sc-pzMyG gRERfq' color='currentColor' role='img'%3E%3Ctitle%3EAbrir Menu%3C/title%3E%3Cg%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.5 7H20.5V5H0.5V7ZM0.5 15H20.5V13H0.5V15Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

#menu .navbar-toggler[aria-expanded="true"].icone-menu:before {
    /*content: "\f068";*/
    color: var(--c-white);
    fill: #ffffff !important;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23ffffff' viewBox='0 0 21 20' class='sc-qQYBZ dyrgJG' color='currentColor' role='img'%3E%3Ctitle%3EFechar Menu%3C/title%3E%3Cg%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5001 11.4143L16.793 17.7072L18.2072 16.293L11.9143 10.0001L18.2072 3.70718L16.793 2.29297L10.5001 8.58587L4.20718 2.29297L2.79297 3.70718L9.08587 10.0001L2.79297 16.293L4.20718 17.7072L10.5001 11.4143Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

/* Divisória */
.divisoria {
    position: relative;
}

.divisoria:before {
    position: absolute;
    z-index: 1;
    right: 0%;
    top: 0px;
    content: "";
    width: 1px;
    height: 100%;
    border: 1px solid #000000;
}

@media (max-width: 991px) {
    .divisoria:before {
        left: 29%;
    }
}

/* Alinhamento */
.align-vertical {
    display: table;
    width: 100%;
    height: 100%;
}

.align-vertical .align-element {
    display: table-cell;
    vertical-align: middle;
}


/* GENERAL */
.main .section {
    position: relative;
    scroll-margin-top: 132px;
}

/*.main .section p {
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 5px;
}*/

.main .section .padding {
    padding: 7rem 3rem;
    max-width: 1366px;
    /*max-width: 1920px;*/
}

.main .section .header-section {
    margin: 0 0 2.4rem 0;
}

.main .section .header-section h2 {
    padding: 0px;
    margin-bottom: 0.5rem;
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--c-red1);
    letter-spacing: 0;
    text-transform: none;
}

.main .section .header-section h3 {
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    color: var(--c-white);
    font-size: 1.8rem;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .main .section .padding {
        padding: 5rem 2rem;
    }

    .main .section .header-section {
        margin: 0 0 3rem 0;
    }

    .main .section .header-section h2 {
        font-size: 2.7rem;
    }

    .main .section .header-section h3 {
        font-size: 1.6rem;
    }
}


/* SECTION - LOGIN */
.section.login {
    position: relative;
    background: url(../img/background/bkg6.webp) center bottom !important;
    background-size: cover !important;
    overflow: hidden;
    /* background: var(--c-grey1); */
}

.cta-cadastro-login {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.section.login .content-section {
    position: relative;
    width: 100%;
    margin: auto;
}

.section.login .logopromocao img {
    max-width: 100%;
}

.section.login .box-login {
    position: relative;
    background: var(--c-white);
    z-index: 1;
    padding: 4rem;
    width: 100%;
    border-radius: 1rem;
}

.section.login .box-login .esquecisenha {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center !important;
    margin-bottom: 5px;
    color: var(--c-black1);
    text-decoration: underline;
}

.section.login .box-login .header-section {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .section.login .content-section {
        position: relative;
        height: inherit;
        width: 100%;
    }

    .section.login .logopromocao {
        position: relative;
        top: inherit;
        left: inherit;
        width: 100%;
        margin: auto;
        margin-bottom: 30px;
    }

    .section.login .logopromocao img.logopromocao {
        width: 100%;
    }
}

.section.login .elemento1 {
    position: absolute;
    bottom: -28%;
    left: 3%;
    width: 11%;
    animation-name: efeitoSobeDesce;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
}

.section.login .elemento2 {
    position: absolute;
    top: -2%;
    left: 40%;
    width: 15%;
    animation-name: efeitoSobeDesceDois;
    animation-duration: 3s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
}

.section.login .elemento3 {
    position: absolute;
    top: -32%;
    right: -20%;
    width: 37%;
    animation-name: efeitoSobeDesce;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
}

.section.login .elemento4 {
    position: absolute;
    top: -18%;
    left: -12%;
    width: 25%;
    animation-name: efeitoSobeDesceDois;
    animation-duration: 3s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
}

.section.login .elemento5 {
    position: absolute;
    bottom: -7%;
    left: 24%;
    width: 10%;
    animation-name: efeitoSobeDesce;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
}

.section.login .elemento6 {
    position: absolute;
    bottom: -40%;
    left: 43%;
    width: 20%;
    animation-name: efeitoSobeDesceDois;
    animation-duration: 3s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
}

.section.login .elemento1 img,
.section.login .elemento2 img,
.section.login .elemento3 img,
.section.login .elemento4 img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}


/* SECTION - INÍCIO */
.section.inicio {
    position: relative;
    overflow: hidden;
    /* background: transparent linear-gradient(77deg, #CC092F 0%, #CC092F 61%, #b41a83 100%) 0% 0% !important; */
    background: var(--c-red1);
}

.section.inicio .padding {
    position: relative;
    width: 100%;
    max-width: 1920px;
    padding: 0rem;
}

.section.inicio .bkghome {
    position: relative;
}

.section.inicio .bkghome img {
    width: 100%;
    max-width: 1920px;
}

.section.inicio .logos {
    position: absolute;
    z-index: 1;
    width: 29%;
    max-width: 550px;
    right: 3.8%;
    top: 7.1%;
    transition: all 0.3s ease-in-out;
}

.section.inicio .logos img {
    transition: all 0.3s ease-in-out;
}

.section.inicio .logos img:hover {
    transform: scale(0.97);
    transition: all 0.3s ease-in-out;
}

.section.inicio .packgeral {
    position: absolute;
    z-index: 1;
    width: 34%;
    max-width: 650px;
    right: 0.5%;
    bottom: 27%;
}

.section.inicio .packgeral img {
    transition: all 0.3s ease-in-out;
}

.section.inicio .packgeral img:hover {
    transform: scale(0.97);
    transition: all 0.3s ease-in-out;
}

.section.inicio .cta {
    margin-top: 2rem;
}

.section.inicio .cta .btn {
    font-size: 2.5rem;
    text-transform: uppercase;
    /**/
    -webkit-animation-name: pulseFast;
    animation-name: pulseFast;
    animation-duration: 0.5s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    transition: all 0.3s ease-in-out !important;
}

.section.inicio .chamada {
    position: absolute;
    bottom: 11%;
    right: 2%;
    background: transparent;
    display: block;
    width: 33%;
}

.section.inicio .chamada p {
    font-size: 2.1rem;
    line-height: 1.3;
}

@media (min-width: 1367px) and (max-width: 1750px) {
    .section.inicio .chamada {
        position: absolute;
        bottom: 9%;
        right: 2%;
        background: transparent;
        display: block;
        width: 33%;
    }

    .section.inicio .chamada p {
        font-size: 1.6rem;
    }

    .section.inicio .cta {
        margin-top: 1rem;
    }

    .section.inicio .cta .btn {
        font-size: 2.5rem;
        text-transform: uppercase;
    }
}

@media (min-width: 992px) and (max-width: 1366px) {
    .section.inicio .chamada {
        position: absolute;
        bottom: 7%;
        right: 2%;
        background: transparent;
        display: block;
        width: 33%;
    }

    .section.inicio .chamada p {
        font-size: 1.5rem;
    }

    .section.inicio .cta {
        margin-top: 1rem;
    }

    .section.inicio .cta .btn {
        font-size: 2rem;
        text-transform: uppercase;
    }
}

@media (min-width: 100px) and (max-width: 600px) {
    .section.inicio .cta {
        margin-top: 1rem;
        /**/
        display: none;
    }

    .section.inicio .cta .btn {
        font-size: 2rem;
        text-transform: uppercase;
    }
}

.section.inicio .content-section {
    position: relative;
}


/* Section COMO PARTICIPAR */
.section.comoparticipar {
    position: relative;
    z-index: 1;
    background-color: var(--c-white);
}

.section.comoparticipar p {
    text-align: center;
}

.section.comoparticipar .header-section {
    margin: 0 0 4rem 0;
}

.section.comoparticipar .content-section {
    width: 85%;
    margin: auto;
}

.section.comoparticipar p.description {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.6rem;
    line-height: 1.2;
    color: var(--c-white);
    margin-top: 2rem;
}

.section.comoparticipar a {
    color: var(--c-red1);
    text-decoration: underline;
    font-weight: 700;
}

.section.comoparticipar a:hover {
    text-decoration: none;
}

.section.comoparticipar .steps-boxes .step .step-box {
    padding: 0rem 2rem;
    width: 100%;
    transition: all 0.3s ease-in-out;
    border-radius: 4rem;
}

.section.comoparticipar .steps-boxes .step .title {
    text-align: center;
    margin-top: 1rem;
    font-size: 2rem;
    line-height: 1;
    color: var(--c-white);
    margin-top: 2rem;
    text-transform: uppercase;
    font-style: italic;
}

.section.comoparticipar .steps-boxes .step .icone {
    position: relative;
    margin: auto;
    margin-top: 0rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease-in-out;
    width: 100%;
    max-width: 390px;
}

.section.comoparticipar .steps-boxes .step .icone img {
    width: 100%;
    max-width: 390px;
    /*    max-width: 270px;*/
    transition: all 0.3s ease-in-out;
}

.section.comoparticipar .steps-boxes .step .step-box:hover .icone img {
    transform: scale(0.98);
    transition: all 0.3s ease-in-out;
}

.section.comoparticipar .steps-boxes .step .icone.iconedestaque {
    position: relative;
    margin: auto;
    margin-top: -6rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease-in-out;
    width: 100%;
    max-width: 180px;
}

.section.comoparticipar .steps-boxes .step .icone.iconedestaque img {
    width: 100%;
    max-width: 170px;
    transition: all 0.3s ease-in-out;
}

.section.comoparticipar .steps-boxes .step .step-box:hover .icone.iconedestaque img {
    transform: scale(0.98);
    transition: all 0.3s ease-in-out;
}

.section.comoparticipar .steps-boxes .step .step-box a.btn {
    text-decoration: none;
    margin-top: 2rem;
    /**/
    -webkit-animation-name: pulseFast;
    animation-name: pulseFast;
    animation-duration: 0.5s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    transition: all 0.3s ease-in-out !important;
}

/* Novos estilos para a seção Como Participar */
.section.comoparticipar .step-box-new {
    background-color: var(--c-white);
    border: 1px solid var(--c-red1);
    border-radius: 0rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.section.comoparticipar .step-box-new:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 10px 30px rgba(204, 9, 47, 0.2); */
}

.section.comoparticipar .step-box-new .icone svg {
    transition: transform 0.3s ease-in-out;
}

.section.comoparticipar .step-box-new:hover .icone svg {
    transform: scale(1.1);
}

.section.comoparticipar .step-number {
    background-color: var(--c-red1);
    color: var(--c-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.section.comoparticipar .step-title {
    color: var(--c-red1);
    font-size: 2.4rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem 0;
    text-transform: none;
}

.section.comoparticipar .step-subtitle {
    color: var(--c-black1);
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section.comoparticipar .btn-step {
    color: var(--c-white);
    margin: 0 auto 1.5rem auto;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.section.comoparticipar .btn-step:hover {
    background-color: var(--c-redhover);
    color: var(--c-white);
    text-decoration: none;
    transform: scale(1.05);
}

.section.comoparticipar .step-description {
    color: var(--c-black1);
    font-size: 1.6rem;
    line-height: 1.2;
    margin-top: auto;
}

.section.comoparticipar .step-calculation {
    margin: 1rem 0;
}

.section.comoparticipar .calculation-text {
    color: var(--c-black1);
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section.comoparticipar .equals-sign {
    font-size: 3rem;
    color: var(--c-red1);
    font-weight: 700;
    margin: 1rem 0;
}

.section.comoparticipar .result-text {
    color: var(--c-red1);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section.comoparticipar .result-subtitle {
    color: var(--c-black1);
    font-size: 1.6rem;
}

.section.comoparticipar .bonus-section {
    margin-top: 1rem;
}

.section.comoparticipar .bonus-item {
    margin-bottom: 1.5rem;
}

.section.comoparticipar .bonus-item:last-child {
    margin-bottom: 0;
}

.section.comoparticipar .bonus-text {
    color: var(--c-black1);
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section.comoparticipar .bonus-result {
    color: var(--c-red1);
    font-size: 1.6rem;
    font-weight: 700;
}

.section.comoparticipar .bonus-divider {
    height: 2px;
    background-color: var(--c-red1);
    margin: 1rem 0;
    width: 100%;
}

@media (max-width: 991px) {
    .section.comoparticipar .header-section {
        margin-bottom: 2rem;
    }

    .section.comoparticipar .content-section {
        width: 100%;
    }

    .section.comoparticipar .steps-boxes .step {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }

    .section.comoparticipar p.description {
        font-size: 1.8rem;
    }

    .section.comoparticipar .steps-boxes .step .step-box {
        border-radius: 2.5rem;
    }

    .section.comoparticipar .step-box-new {
        margin-bottom: 2rem;
    }

    .section.comoparticipar .step-box-new .icone svg {
        transition: transform 0.3s ease-in-out;
    }

    .section.comoparticipar .step-box-new:hover .icone svg {
        transform: scale(1.1);
    }

    .section.comoparticipar .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.6rem;
    }
}


/* Section PRÊMIOS */
.section.premios {
    background-size: cover !important;
}
@media (max-width: 991px) {
    .section.premios {
        background-size: cover !important;
    }
}

.section.premios {
    position: relative;
    background: transparent;
    z-index: 0;
    overflow: hidden;
}

.section.premios .bkgpremios {
    position: absolute;
    bottom: 0%;
    left: 0%;
    right: 0%;
    opacity: 1;
}

.section.premios .bkgpremios img {
    width: 100%;
    max-width: 1920px;
}

.section.premios .padding {
    position: relative;
    width: 100%;
    max-width: 1700px;
    padding-bottom: 10rem;
}

@media (max-width: 991px) {
    .section.premios .padding {
        /* padding: 0rem 3rem; */
    }
}

.section.premios .btn {
    /**/
    -webkit-animation-name: pulseFast;
    animation-name: pulseFast;
    animation-duration: 0.5s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    transition: all 0.3s ease-in-out !important;
}

/* Novos estilos para a seção de Prêmios */
.section.premios .header-section h2 {
    color: var(--c-red1);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.section.premios .header-section h3 {
    color: var(--c-white);
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.section.premios .premios-left-panel {
    /* Replicando as características do painel da direita */
    border-radius: 0rem;
    padding: 4rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    min-height: 620px;
}

.section.premios .premios-left-panel .premios-icon {
    width: 50px;
    margin: 0rem auto 1rem auto;
}

.section.premios .premios-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    justify-content: center;
}

.section.premios .premios-header .premios-icon {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    margin-bottom: 2rem;
}

.section.premios .premios-header .premios-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section.premios .premios-header h3 {
    color: var(--c-white);
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: none;
}

.premios-main-text {
    border-bottom: 1px solid #ffffffc4;
    margin-bottom: 3rem;
}

.section.premios .premios-main-text h4 {
    color: var(--c-white);
    font-size: 3.7rem;
    font-weight: 700;
    margin-bottom: 0rem;
    line-height: 1.2;
    padding-bottom: 0rem;
}

.section.premios .premios-main-text p {
    color: var(--c-white);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
}

.section.premios .premios-main-text strong {
    color: var(--c-white);
    font-weight: 700;
}

.section.premios .premios-disclaimer {
    margin-bottom: 2.5rem;
}

.section.premios .premios-disclaimer p {
    color: var(--c-white);
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-align: center;
}

.section.premios .premios-disclaimer p:last-child {
    margin-bottom: 0;
}

.section.premios .btn-premios {
    background-color: var(--c-red1);
    color: var(--c-white);
    padding: 1.5rem 3rem 1.8rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border: none;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(204, 9, 47, 0.3);
    /* width: 100%; */
    text-align: center;
}

.section.premios .btn-premios:hover {
    background-color: var(--c-redhover);
    color: var(--c-white);
    text-decoration: none;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(204, 9, 47, 0.4);
}

.section.premios .premios-trophy {
    text-align: center;
    padding: 2rem 0;
}

.section.premios .img-trophy {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
    transform: scale(1.1);
}

.section.premios .premios-right-panel {
    /* background: rgba(0, 0, 0, 0.8); */
    border-radius: 0rem;
    padding: 4rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    min-height: 620px;
}

@media (max-width: 991px) {
    .section.premios .premios-right-panel,
    .section.premios .premios-left-panel {
        min-height: auto;
    }
}

.section.premios .premios-right-panel .premios-header h3 {
    color: var(--c-white);
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: none;
}

.section.premios .premios-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.section.premios .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
}

.section.premios .feature-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.section.premios .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Animação de pulso sequencial para os ícones */
@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.section.premios .feature-icon.pulse-animation {
    animation: pulseIcon 1.5s ease-in-out;
}

/* Delays sequenciais para cada ícone */
.section.premios .feature-item:nth-child(1) .feature-icon.pulse-animation {
    animation-delay: 0s;
}

.section.premios .feature-item:nth-child(2) .feature-icon.pulse-animation {
    animation-delay: 1.5s;
}

.section.premios .feature-item:nth-child(3) .feature-icon.pulse-animation {
    animation-delay: 3s;
}

.section.premios .feature-item:nth-child(4) .feature-icon.pulse-animation {
    animation-delay: 4.5s;
}

.section.premios .feature-item:nth-child(5) .feature-icon.pulse-animation {
    animation-delay: 6s;
}

.section.premios .feature-item:nth-child(6) .feature-icon.pulse-animation {
    animation-delay: 7.5s;
}

.section.premios .feature-content h4 {
    color: var(--c-white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0rem;
    line-height: 1.2;
    padding-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* Sublinhado animado para os títulos */
.section.premios .feature-content h4::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--c-red1);
    transition: width 0.3s ease-in-out;
}

/* Animação do sublinhado quando o ícone está pulsando */
.section.premios .feature-item:nth-child(1) .feature-content h4.pulse-animation::after {
    animation: underlineSlide 1.5s ease-in-out;
    animation-delay: 0s;
}

.section.premios .feature-item:nth-child(2) .feature-content h4.pulse-animation::after {
    animation: underlineSlide 1.5s ease-in-out;
    animation-delay: 1.5s;
}

.section.premios .feature-item:nth-child(3) .feature-content h4.pulse-animation::after {
    animation: underlineSlide 1.5s ease-in-out;
    animation-delay: 3s;
}

.section.premios .feature-item:nth-child(4) .feature-content h4.pulse-animation::after {
    animation: underlineSlide 1.5s ease-in-out;
    animation-delay: 4.5s;
}

.section.premios .feature-item:nth-child(5) .feature-content h4.pulse-animation::after {
    animation: underlineSlide 1.5s ease-in-out;
    animation-delay: 6s;
}

.section.premios .feature-item:nth-child(6) .feature-content h4.pulse-animation::after {
    animation: underlineSlide 1.5s ease-in-out;
    animation-delay: 7.5s;
}

/* Keyframes para a animação do sublinhado */
@keyframes underlineSlide {
    0% {
        width: 0;
    }
    30% {
        width: 100%;
    }
    70% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

.section.premios .feature-content p {
    color: var(--c-white);
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .section.premios .header-section h2 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .section.premios .header-section h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .section.premios .premios-left-panel,
    .section.premios .premios-right-panel {
        margin-bottom: 2rem;
        padding: 2.5rem;
    }

    .section.premios .premios-main-text h4 {
        font-size: 2.2rem;
    }

    .section.premios .premios-main-text p {
        font-size: 1.6rem;
    }

    .section.premios .premios-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section.premios .feature-item {
        gap: 1rem;
    }

    .section.premios .feature-icon {
        width: 40px;
        height: 40px;
    }

    .section.premios .feature-content h4 {
        position: relative;
        display: inline-block;
    }

    .section.premios .feature-content h4::after {
        bottom: 0.3rem;
    }

    .section.premios .feature-content h4 {
        font-size: 1.5rem;
    }

    .section.premios .feature-content p {
        font-size: 1.3rem;
    }

    .section.premios .img-trophy {
        max-width: 100px;
        transform: scale(1);
    }

    .section.premios .btn-premios {
        font-size: 1.6rem;
        padding: 1.3rem 2.5rem;
    }

    .section.premios .premios-header h3 {
        margin-bottom: 0rem;
    }

    .section.premios .premios-trophy {
        margin-bottom: 2rem;
    }

    .section.premios .premios-disclaimer p {
        font-size: 1.6rem;
    }
}

.section.premios .packpremios {
    position: relative;
    margin-top: 2rem;
}

.section.premios .packpremios img {
    width: 100%;
    max-width: 500px;
}

.section.premios .box-premio-sorteio {
    position: relative;
    text-transform: uppercase;
    padding: 3rem 2rem;
    margin-top: 0rem;
    border-radius: 0.7rem;
    background-color: #051139ba;
    color: var(--c-white);
}

.section.premios .box-premio-sorteio p {
    text-align: center;
    font-size: 1.6rem;
}

.section.premios .box-premio-vb {
    position: relative;
    text-transform: uppercase;
    padding: 3rem 2rem;
    margin-top: 1rem;
    border-radius: 0.7rem;
    background-color: rgb(206 16 53);
    color: var(--c-white);
}

.section.premios .box-premio-vb p {
    text-align: center;
    font-size: 1.6rem;
}

@media (max-width: 991px) {
    .section.premios .box p {
        text-align: center;
    }

    .section.premios .box p.title {
        margin-bottom: 0;
    }

    .section.premios .bkgpremios img {
        width: 100%;
        max-width: 991px;
    }
}

/* Section CARTÕES BRADESCO MASTERCARD */
.section.cartoesbradesco {
    position: relative;
    background: var(--c-white);
}

.section.cartoesbradesco .padding {
    padding-bottom: 10rem;
}

.section.cartoesbradesco .cartoes-bradesco-mastercard {
    position: relative;
    margin-top: 5rem;
}

.section.cartoesbradesco .btn {
    font-size: 2.5rem;
    padding: 1.6rem 2.9rem 1.6rem 2.9rem;
}


/* Section CALENDÁRIO */
.section.calendario {
    position: relative;
    border-radius: 46px 46px 0 0;
    margin-top: -45px;
    background: #f5f5f5;
    z-index: 1;
}

.section.calendario .header-section h3 {
    color: var(--c-black1);
}

.section.calendario .title {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-red1);
    letter-spacing: 0;
    text-transform: none;
    margin-top: 0rem;
}

.section.calendario .title img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.section.calendario table.table tbody td {
    padding: 0.6rem 2rem 2.4rem 2rem;
}

/*TOOLTIP */
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 1rem !important;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: 0.9;
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
    padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #000000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
    padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #000000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
    padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #000000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
    padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #000000;
}

.tooltip-inner {
    font-size: 1.4rem;
    line-height: 140%;
    max-width: 230px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000000;
    border-radius: 0.25rem;
    border: 1px solid #000000;
}


/* SECTION - CADASTRO PESSOAL; */
.section.cadastro {
    position: relative;
    background: url(../img/background/bkgestadio.webp) center bottom !important;
    background-size: cover !important;
}

.section.cadastro table.table tbody tr:nth-child(even) td {
    background: rgb(255 255 255);
}

.section.cadastro table.table .thead-dark th {
    font-weight: 800;
}

.section.cadastro table.table tbody td {
    color: var(--c-black1);
}

.section.cadastro .box-autopreenchimento .float-placeholder {
    display: none;
}

.cta-cadastro {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.section.cadastro .content-section {
    position: relative;
    width: 100%;
    margin: auto;
}

.section.cadastro .logopromocao img {
    max-width: 100%;
}

.section.cadastro .box-cadastro {
    position: relative;
    background: var(--c-white);
    z-index: 1;
    padding: 4rem;
    width: 100%;
    border-radius: 1rem;
}

.section.cadastro .box-cadastro .header-section {
    margin-bottom: 20px;
}

.section.cadastro .padding {
    position: relative;
}

.section.cadastro .content-section {
    position: relative;
}

.section.cadastro .mulher {
    position: relative;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease-in-out !important;
}

.section.cadastro .mulher img {
    max-width: 100%;
}

.section.cadastro .titulo {
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: var(--c-white);
    text-transform: uppercase;
}

.section.cadastro .custom-control-label {
    color: var(--c-black1)
}

.section.cadastro .custom-control-label a,
.section.cadastro .custom-control-label a :hover {
    color: var(--c-black1)
}

.section.cadastro .custom-control-input:checked~.custom-control-label::before {
    color: var(--c-redhover);
    border-color: var(--c-redhover);
    background-color: var(--c-redhover);
}

@media (max-width: 991px) {
    .section.cadastro .mulher {
        display: inline-block;
    }

}

/* SECTION - CADASTRO PESSOAL - SUCESSO */
.section.cadastrosucesso {
    position: relative;
    background: url(../img/background/bkg5.webp) bottom center !important;
    /* background: url(../img/bkg1.webp) bottom center !important; */
    background-size: cover !important;
}

.section.cadastrosucesso .header-section h2 {
    color: var(--c-white);
    font-size: 3.7rem;
    line-height: 1;
}

.section.cadastrosucesso .header-section h3 {
    color: var(--c-white);
}

.section.cadastrosucesso .content-section {
    width: 100%;
    margin: auto;
}

.section.cadastrosucesso .header-section h2 {
    color: var(--c-white);
}

.section.cadastrosucesso .premios-left-panel {
    /* Replicando as características do painel da direita */
    border-radius: 0rem;
    padding: 4rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.section.cadastrosucesso .premios-left-panel .premios-icon {
    width: 50px;
    margin: 0rem auto 1rem auto;
}

.section.cadastrosucesso .premios-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    justify-content: center;
}

.section.cadastrosucesso .premios-header .premios-icon {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    margin-bottom: 2rem;
}

.section.cadastrosucesso .premios-header .premios-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section.cadastrosucesso .premios-header h3 {
    color: var(--c-white);
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: none;
}

.section.cadastrosucesso .premios-main-text h4 {
    color: var(--c-white);
    font-size: 3.7rem;
    font-weight: 700;
    margin-bottom: 0rem;
    line-height: 1.2;
    padding-bottom: 0rem;
}

.section.cadastrosucesso .premios-main-text p {
    color: var(--c-white);
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
}

.section.cadastrosucesso .premios-main-text strong {
    color: var(--c-white);
    font-weight: 700;
}

.section.cadastrosucesso .premios-disclaimer {
    margin-bottom: 2.5rem;
}

.section.cadastrosucesso .premios-disclaimer p {
    color: var(--c-white);
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-align: center;
}

.section.cadastrosucesso .premios-disclaimer p:last-child {
    margin-bottom: 0;
}

.section.cadastrosucesso .btn-premios {
    background-color: var(--c-red1);
    color: var(--c-white);
    padding: 1.5rem 3rem 1.8rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border: none;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(204, 9, 47, 0.3);
    /* width: 100%; */
    text-align: center;
}

.section.cadastrosucesso .btn-premios:hover {
    background-color: var(--c-redhover);
    color: var(--c-white);
    text-decoration: none;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(204, 9, 47, 0.4);
}

@media (max-width: 991px) {
    .section.cadastrosucesso .logopromocao {
        z-index: -1 !important;
        margin-top: -6.7%;
    }
}

.section.cadastrosucesso table.table {
    margin-bottom: 0rem !important;
}

@media (max-width: 991px) {
    .section.cadastrosucesso {
        position: relative;
    }

    .section.cadastrosucesso#cadastrosucessocupom {
        position: relative;
        background-size: 120% auto;
    }
}


/* SECTION - CADASTRO CUPOM; */
.section.cadastro-cupom {
    position: relative;
    /*background-color: var(--c-black1);*/
}

.section.cadastro-cupom .content-section {
    width: 90%;
    margin: auto;
}

.section.cadastro-cupom .box {
    background: transparent;
    padding: 0px;
    border-radius: 20px;
    margin-bottom: 0px;
}

.section.cadastro-cupom .responsabilidade {
    background: #00000050;
    padding: 2rem;
    position: relative;
    border-radius: 1rem;
    color: var(--c-white);
    font-size: 1.5rem;
    line-height: 1.3;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.section.cadastro-cupom .titulo-step {
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 500;
    color: var(--c-white);
    font-size: 28px;
    line-height: 29px;
    text-align: left;
    text-transform: uppercase;
}

.section.cadastro-cupom a.icone {
    position: absolute;
    color: #0b6d3a;
    top: 27px;
    right: 25px;
    z-index: 1;
    font-size: 23px;
    cursor: pointer;
}

.section.cadastro-cupom .eye [data-togglepassword] {
    top: 30px;
}

.section.cadastro-cupom .enviar .vld-img.vld-error {
    font-size: 1.5rem;
    line-height: 23px;
    color: #e90a2a;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 500;
}

.section.cadastro-cupom .total {
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 26px;
    color: var(--c-white);
    letter-spacing: 0px;
    text-transform: inherit;
    text-align: center;
    margin-bottom: 20px;
}

.section.cadastro-cupom .total span {
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    color: var(--c-white);
}

.section .title-excluir a {
    color: var(--c-red1);
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.4rem;
    line-height: 100%;
}

.section.cadastro-cupom .title-excluir a {
    color: var(--c-error);
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.4rem;
    line-height: 100%;
}

.section.cadastro-cupom [class*="vld-"]+.error {
    color: var(--c-error);
}

.section.cadastro-cupom label#AceiteRegulamento-error,
.section.cadastro-cupom label#AceitePrivacidade-error,
.section.cadastro-cupom label#AceitePromo-error,
.section.cadastro-cupom label#AceitePolitica-error,
.section.cadastro-cupom label#AceiteComunicacao-error {
    color: var(--c-error2);
}

label#QtdProdutos-error {
    text-align: center;
}

.section.cadastro-cupom .float-placeholder {
    color: var(--c-white);
}

#frm-cadastrocupom table.table tbody td i {
    display: none !important;
}

#frm-cadastrocupom .custom-control-label {
    display: contents;
}

#frm-cadastrocupom .custom-control-label::before,
#frm-cadastrocupom .custom-control-label::after {
    opacity: 0;
}

#frm-cadastrocupom .custom-control-label {
    display: contents;
}

#frm-cadastrocupom .custom-control-label::before,
#frm-cadastrocupom .custom-control-label::after {
    opacity: 0;
}

.cadastro-cupom [data-tbitems="Produtos"][data-items="0"] thead {
    display: contents;
}


.cadastro-cupom table.table th {
    background-color: var(--c-white);
    color: var(--c-black);
}


@media (max-width: 991px) {
    .cadastro-cupom [data-tbitems="Produtos"][data-items="0"] thead {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .section.cadastro-cupom .content-section {
        width: 100%;
    }

    .section.cadastro-cupom .titulo {
        text-align: center;
    }

    .section.cadastro-cupom .total {
        margin-bottom: 15px;
    }

    .cadastro-cupom table.table .title-table-mobile {
        text-transform: uppercase !important;
    }

    .cadastro-cupom table.table tbody tr td:first-child {
        font-weight: 500 !important;
    }

    #frm-cadastrocupom table.table tbody td {
        padding: 10px 10px !important;
    }

    #frm-cadastrocupom table.table tbody td i {
        display: none !important;
    }
}


/*Imagem cupom fiscal*/
.vercupom {
    margin: auto;
    display: inherit;
}

.vercupom a {
    height: 35px;
    width: 35px;
    text-decoration: none !important;
    position: absolute;
    color: var(--c-black1);
    background: transparent;
    border-radius: 100px;
    top: 18px;
    right: 20px;
    z-index: 1;
    font-size: 21px;
    line-height: 40px;
    cursor: pointer;
}

.vercupom a:hover {
    color: var(--c-black1);
    background: transparent;
}

.popup-vercupom .cupomfiscal {
    position: relative;
}

.popup-vercupom .cupomfiscal img {
    width: 100%;
    max-width: 350px;
}

.popup-vercupom .carousel-item {
    padding-left: 10px;
    padding-right: 10px;
}

.popup-vercupom .cupom-de-exemplo {
    position: relative;
    margin-top: 20px;
}

.popup-vercupom .cupom-de-exemplo .img-cupom-de-exemplo {
    width: 100%;
    max-width: 520px;
}

.popup-vercupom .carousel-control-next-icon {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e);
}

@media (max-width: 991px) {
    .popup-vercupom {
        right: 20px;
        position: absolute;
    }

    .popup-vercupom a {
        text-align: center;
        font-size: 25px;
        line-height: 25px;
    }

    .popup-vercupom .carousel-item {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* ENVIAR CUPOM #IMG */
/*IMG1*/
#img1 {
    display: table;
    margin: auto;
    border-spacing: 20px 15px;
    width: 100%;
}

#img1>div {
    display: grid;
    vertical-align: inherit;
    margin: auto;
    text-align: center !important;
    margin-top: 10px;
}

#img1>div [class*="vld-"]+.error {
    background: var(--c-white);
}

#img1>div [class*="vld-"]+.error {
    background: var(--c-white);
}

#img1:not(.loaded) .upload-reset,
#img1.loaded .upload-change,
#img1:not(.loaded) .filename,
#img1.loaded .placeholder {
    display: none;
}

#img1 .txt-envie {
    margin-top: 15px;
    color: var(--c-white);
    font-size: 15px;
    line-height: 17px;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
}

#img1 .icone-arquivo-carregado {
    /* color: #ece113; */
    display: none;
}

#img1 .arquivo-carregado,
#img1 .filename {
    font-size: 14px;
    line-height: 140%;
    color: var(--c-white);
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    margin-top: 0px;
}

#img1 .upload-preview {
    width: 130px;
    height: 130px;
    background: var(--c-red1);
    border-radius: 7px;
    border: 0;
}

label#CupomImagem-error {
    text-align: center;
}

/*Não exibe o hover, após a imagem carregada*/
[data-plugin="upload"].loaded .upload-preview:hover>div {
    opacity: 0 !important;
}

#img1 [data-plugin="upload"] .upload-preview>div {
    display: grid !important;
}

@media (max-width: 991px) {
    #img1 {
        margin-left: 0;
        border-spacing: 0;
        width: 100%;
    }

    #img1>div {
        text-align: center !important;
        width: 100% !important;
        display: grid;
        vertical-align: inherit !important;
        margin: auto !important;
    }

    #img1>div [class*="vld-"]+.error {
        background: var(--c-white);
    }

    #img1>div [class*="vld-"]+.error {
        background: var(--c-white);
    }

    #img1:not(.loaded) .upload-reset,
    #img1.loaded .upload-change,
    #img1:not(.loaded) .filename,
    #img1.loaded .placeholder {
        display: none;
    }

    #img1:not(.loaded) .upload-reset,
    #img1.loaded .upload-change,
    #img1:not(.loaded) .filename,
    #img1.loaded .placeholder {
        display: none;
    }

    #img1 .txt-envie {
        margin-top: 15px;
        /*color: #ffffff;*/
        font-size: 15px;
        line-height: 17px;
        font-family: 'BradescoSans', Arial, sans-serif;
        font-weight: 700;
    }

    #img1 .icone-arquivo-carregado {
        /* color: #ece113; */
        display: none;
    }

    #img1 .arquivo-carregado,
    #img1 .filename {
        font-size: 12px;
        color: var(--c-white);
        font-family: 'BradescoSans', Arial, sans-serif;
        font-weight: 500;
    }

    #img1 .upload-preview {
        /*width: 100px;*/
        /*height: 100px; */
        /*background-color: #f5efdd;*/
        /*border-radius: 7px;*/
        /*border: 0;*/
    }
}

/*IMG2*/
#img2 {
    display: table;
    margin: auto;
    border-spacing: 20px 15px;
    /*width: 450px;*/
    width: 100%;
}

#img2>div {
    display: grid;
    vertical-align: inherit;
    margin: auto;
    text-align: center !important;
    margin-top: 10px;
}

#img2>div [class*="vld-"]+.error {
    background: var(--c-white);
}

#img2>div [class*="vld-"]+.error {
    background: var(--c-white);
}

#img2:not(.loaded) .upload-reset,
#img2.loaded .upload-change,
#img2:not(.loaded) .filename,
#img2.loaded .placeholder {
    display: none;
}

#img2 .txt-envie {
    margin-top: 15px;
    color: #ffffff;
    font-size: 15px;
    line-height: 17px;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
}

#img2 .icone-arquivo-carregado {
    /* color: #ece113; */
    display: none;
}

#img2 .arquivo-carregado,
#img2 .filename {
    font-size: 15px;
    line-height: 23px;
    color: #ffffff;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 500;
}

#img2 .upload-preview2 {
    width: 130px;
    height: 130px;
    background: var(--c-blue1);
    border-radius: 7px;
    border: 0;
}

#img2 [data-plugin="upload"] .upload-preview2>div {
    display: grid !important;
}

@media (max-width: 991px) {
    #img2 {
        margin-left: 0;
        border-spacing: 0;
        width: 100%;
    }

    #img2>div {
        text-align: center !important;
        width: 100% !important;
        display: grid;
        vertical-align: inherit !important;
        margin: auto !important;
    }

    #img2>div [class*="vld-"]+.error {
        background: var(--c-white);
    }

    #img2>div [class*="vld-"]+.error {
        background: var(--c-white);
    }

    #img2:not(.loaded) .upload-reset,
    #img2.loaded .upload-change,
    #img2:not(.loaded) .filename,
    #img2.loaded .placeholder {
        display: none;
    }

    #img2 .txt-envie {
        margin-top: 15px;
        color: #ffffff;
        font-size: 15px;
        line-height: 17px;
        font-family: 'BradescoSans', Arial, sans-serif;
        font-weight: 700;
    }

    #img2 .icone-arquivo-carregado {
        /* color: #ece113; */
        display: none;
    }

    #img2 .arquivo-carregado,
    #img2 .filename {
        font-size: 12px;
        color: #ffffff;
        font-family: 'BradescoSans', Arial, sans-serif;
        font-weight: 500;
    }

    #img2 .upload-preview2 {
        width: 100px;
        height: 100px;
        background: var(--c-blue1);
        border-radius: 7px;
        border: 0;
    }
}


/*IMG3*/
#img3 {
    display: table;
    margin: auto;
    border-spacing: 20px 15px;
    /*width: 450px;*/
    width: 100%;
}

#img3>div {
    display: grid;
    vertical-align: inherit;
    margin: auto;
    text-align: center !important;
    margin-top: 10px;
}

#img3>div [class*="vld-"]+.error {
    background: var(--c-white);
}

#img3>div [class*="vld-"]+.error {
    background: var(--c-white);
}

#img3:not(.loaded) .upload-reset,
#img3.loaded .upload-change,
#img3:not(.loaded) .filename,
#img3.loaded .placeholder {
    display: none;
}

#img3 .txt-envie {
    margin-top: 15px;
    color: #ffffff;
    font-size: 15px;
    line-height: 17px;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
}

#img3 .icone-arquivo-carregado {
    /* color: #ece113; */
    display: none;
}

#img3 .arquivo-carregado,
#img3 .filename {
    font-size: 15px;
    line-height: 23px;
    color: #ffffff;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 500;
}

#img3 .upload-preview3 {
    width: 130px;
    height: 130px;
    background: var(--c-blue1);
    border-radius: 7px;
    border: 0;
}

#img3 [data-plugin="upload"] .upload-preview3>div {
    display: grid !important;
}

@media (max-width: 991px) {
    #img3 {
        margin-left: 0;
        border-spacing: 0;
        width: 100%;
    }

    #img3>div {
        text-align: center !important;
        width: 100% !important;
        display: grid;
        vertical-align: inherit !important;
        margin: auto !important;
    }

    #img3>div [class*="vld-"]+.error {
        background: var(--c-white);
    }

    #img3>div [class*="vld-"]+.error {
        background: var(--c-white);
    }

    #img3:not(.loaded) .upload-reset,
    #img3.loaded .upload-change,
    #img3:not(.loaded) .filename,
    #img3.loaded .placeholder {
        display: none;
    }

    #img3 .txt-envie {
        margin-top: 15px;
        color: #ffffff;
        font-size: 15px;
        line-height: 17px;
        font-family: 'BradescoSans', Arial, sans-serif;
        font-weight: 700;
    }

    #img3 .icone-arquivo-carregado {
        /* color: #ece113; */
        display: none;
    }

    #img3 .arquivo-carregado,
    #img3 .filename {
        font-size: 12px;
        color: #ffffff;
        font-family: 'BradescoSans', Arial, sans-serif;
        font-weight: 500;
    }

    #img3 .upload-preview3 {
        width: 100px;
        height: 100px;
        background: var(--c-blue1);
        border-radius: 7px;
        border: 0;
    }
}

#img1 .upload-preview,
#img2 .upload-preview2,
#img3 .upload-preview3 {
    background-color: var(--c-red1);
    border: 2px solid #ffffff;
}


/*CONFIGURAÇÃO DO FORM STEPS*/
.formsteps .progressdots {
    display: none !important;
}

.formsteps .progressdots>div[data-progressdots-step]>div {
    display: none;
}

.formsteps .progressdots>div:last-child:not([data-progressdots-step]):before,
.formsteps .progressdots>div:first-child:not([data-progressdots-step]):before,
.formsteps .progressdots>div:not([data-progressdots-step]):before,
.formsteps .progressdots>div[data-progressdots-step]:before,
.formsteps .progressdots>div[data-progressdots-step]:after {
    display: none;
}

.formsteps .progressdots>div[data-progressdots-step] {
    border-color: var(--c-white);
    background-color: var(--c-white);
    border: 1px solid #ffffff !important;
}

.formsteps .progressdots>div[data-progressdots-step].success {
    border-color: var(--c-grey1);
    background-color: var(--c-grey1);
    border: 1px solid var(--c-grey1);
}

.formsteps .progressdots>div[data-progressdots-step].error,
.formsteps .progressdots>div[data-progressdots-step].active.error {
    border-color: #ed3f32 !important;
    background-color: #ed3f32 !important;
    border: 1px solid #ed3f32 !important;
}

.formsteps .progressdots>div[data-progressdots-step].active {
    border-color: var(--c-white);
    background-color: var(--c-white);
    border: 1px solid #ffffff !important;
}


/* SECTION - MINHA PARTICIPAÇÃO */
.section.minhaparticipacao {
    position: relative;
}

.section.minhaparticipacao .tarja {
    position: relative;
    background: url(../img/background/bkg5.webp) center bottom !important;
    /* background: url(../img/bkg1.webp) center bottom !important; */
    background-size: cover !important;
    border: 0;
}

.section.minhaparticipacao .tarja .padding {
    padding-bottom: 12rem;
}

.section.minhaparticipacao .box-destaque {
    border-radius: 0rem;
    padding: 4rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.section.minhaparticipacao .header-section h2 {
    color: var(--c-white);
}

/* SECTION - MINHA PARTICIPAÇÃO 2 */
.section.minhaparticipacao2 {
    position: relative;
    z-index: 9;
    border-radius: 46px 46px 0 0;
    margin-top: -45px;
    /* background: transparent linear-gradient(77deg, #CC092F 0%, #CC092F 61%, #b41a83 100%) 0% 0% !important; */
    background: var(--c-red1);
}

.section.minhaparticipacao2 .box-acompanhe {
    position: relative;
    text-transform: uppercase;
    padding: 3rem 2rem;
    margin-top: 3rem;
    border-radius: 0.7rem;
    background-color: transparent;
    color: var(--c-white);
}

.section.minhaparticipacao2 .box-acompanhe p {
    font-size: 2rem;
    line-height: 1.2;
    text-transform: none;
    text-align: center;
}

/* TABS */
.section.minhaparticipacao2 .tab-btn .btn {
    position: relative;
    font-family: 'BradescoSans', Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: var(--c-white);
    background: var(--c-red1);
    font-size: 1.8rem;
    line-height: 1;
    padding: 1.1rem 3rem 1.2rem 3rem;
    border-radius: 500px;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    border: none;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 1);
}

.section.minhaparticipacao2 .tab-btn .btn:focus,
.section.minhaparticipacao2 .tab-btn .btn:hover {
    color: var(--c-white);
    background: var(--c-red1);
    opacity: 1;
}

.section.minhaparticipacao2 .tab-btn .btn.active {
    position: relative;
    font-family: 'BradescoSans', Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: var(--c-red1)!important;
    background: var(--c-white);
    font-size: 1.8rem;
    line-height: 1;
    padding: 1.1rem 3rem 1.2rem 3rem;
    border-radius: 500px;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    border: none;
    opacity: 1;
}

.section.minhaparticipacao2 .tab-btn .btn.active:focus,
.section.minhaparticipacao2 .tab-btn .btn.active:hover {
    color: var(--c-red1);
    background: var(--c-white);
    opacity: 1;
}

.section.minhaparticipacao2 .chances {
    position: relative;
    text-transform: uppercase;
    padding: 2rem 4rem;
    margin-top: 0rem;
    border-radius: 0rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.section.minhaparticipacao2 .chances p {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 0;
    color: var(--c-white);
}

.section.minhaparticipacao2 .chances p strong {
    font-weight: 700;
    text-transform: uppercase;
}

.section.minhaparticipacao2 table.table tbody tr:nth-child(even) td {
    background: #fbfbfb;
    color: var(--c-red1);
}

@media (max-width: 991px) {
    .section.minhaparticipacao2 .tab-btn .btn {
        width: 100%;
        margin: 0px 0px 20px 0px !important;
    }

    .section.minhaparticipacao2 table.table {
        background-color: #fbfbfb;
    }

    .section.minhaparticipacao2 table.table tbody tr td:first-child {
        margin-top: 2rem;
    }

    .section.minhaparticipacao2 table.table tbody tr td:last-child {
        margin-bottom: 2rem;
    }

    .section.minhaparticipacao2 table.table tbody tr:nth-child(even) td
}


/* SECTION - MEUS CARTÕES */
.section.meuscartoes {
    position: relative;
    background: url(../img/background/bkg5.webp) bottom center !important;
    background-size: cover !important;
}

.section.meuscartoes .header-section h2 {
    color: var(--c-white);
}

.section.meuscartoes .padding {
    padding-bottom: 10rem;
}

.section.meuscartoes table.table .title-table-mobile {
    padding: 3rem 2.5rem 1rem 2.5rem;
}

.section.meuscartoes table.table tbody tr td:last-child {
    padding-bottom: 2rem!important;
    padding-top: 1rem!important;
}

.section.meuscartoes table.table tbody td.b10 {
    background: #fbfbfb;
}

.section.meuscartoes table.table tbody td.b20 {
    background: #fbfbfb;
}

.section.meuscartoes .float-placeholder {
    color: var(--c-white);
}


/* SECTION - MEUS DADOS */
/*.section.meusdados {
    position: relative;
}

.section.meusdados .custom-control-label {
    color: var(--c-white) !important;
}

.section.meusdados .eye [data-togglepassword] {
    top: 30px;
    right: 32px;
}*/

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #6c757d;
    border-color: #6c757d;
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label a {
    color: var(--c-grey2);
}

/*.section.meusdados #frm-meusdados {
    background: transparent;
    width: 100%;
}

.section.meusdados .custom-checkbox .custom-control-input:disabled:checked~.custom-control-label a {
    color: var(--c-grey2);
}

.section.meusdados .form-control {
    padding: 1.5rem;
    height: auto;
    border-radius: 0.7rem;
    border: none;
    margin: 15px 0px 6px 0px;
    font-size: 1.2rem;
    line-height: 1;
    background: var(--c-white);
}

.section.meusdados .form-control:disabled,
.section.meusdados .form-control[readonly] {
    cursor: not-allowed;
}*/

/*Checkbox dos aceites*/
/*.section.meusdados .custom-control-label::before {
    border: 1px solid var(--c-white) !important;
    background-color: var(--c-blue1) !important;
    border-color: var(--c-white) !important;
    width: 1.5rem;
    height: 1.5rem;
    top: 0.15rem;
    border-radius: 100px;
}

.section.meusdados .custom-control-label::after {
    border: 1px solid var(--c-white) !important;
    background-color: var(--c-white) !important;
    border-color: var(--c-white) !important;
    width: 1.5rem;
    height: 1.5rem;
    top: 0.15rem;
    border-radius: 100px;
}*/

/* SECTION - REGULAMENTO E OUTROS */
.section.rtp {
    position: relative;
    background: #f5f5f5;
}

.section.rtp .header-section h2 {
    color: var(--c-black1);
}

.section.rtp .box {
    background: var(--c-grey2);
    padding: 20px;
    border-radius: 10px
}

.section.rtp a {
    color: var(--c-white);
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    text-decoration: underline;
}

.section.rtp a:hover {
    color: var(--c-white);
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    text-decoration: none;
}

.section.rtp strong {
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
}

.section.rtp .scroll-container {
    color: var(--c-white);
    margin: 0;
    min-height: 450px;
    font-size: 1.5rem;
    line-height: 140%;
    text-align: left;
    padding: 0px 20px 0px 10px;
    border-radius: 5px;
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
}

@media (max-width: 991px) {
    .section.rtp .tab-btn .btn {
        display: inline;
    }
}

.section.rtp .link.divider::before {
    position: absolute;
    z-index: 1;
    right: -14px;
    top: -10px;
    content: "";
    width: 1px;
    height: 50px;
    border: 1px solid #BB9B5E;
}

@media (max-width: 991px) {
    .section.rtp {
        position: relative;
    }

    .section.rtp .padding {
        /*padding: 40px 1.5rem 130px 1.5rem;*/
    }

    .section.rtp .link {
        margin: 0;
        text-align: center;
        font-size: 25px;
        line-height: 25px;
        display: inherit;
        margin-bottom: 10px;
    }

    .section.rtp .link.divider::before {
        display: none;
    }

    .section.rtp .btn {
        display: block;
        width: 100%;
        margin: 10px 0 0 0 !important;
    }

    .section.rtp .box {
        padding: 0px;
    }

    .section.rtp .scroll-container {
        /*color: var(--c-white);*/
        text-transform: none;
        margin: 0px;
        min-height: 500px;
        font-size: 1.5rem;
        line-height: 140%;
        text-align: center;
        border: 0;
        max-height: 100%;
        overflow-y: unset;
        /*background: rgb(43 46 156 / 49%);*/
        /* overflow-y: scroll; */

        padding: 0px;
        border-radius: 7px;
    }
}

.section.rtp .tab-btn .btn {
    background-color: var(--c-white) !important;
    color: var(--c-red1) !important;
}

.section.rtp .tab-btn .btn.active {
    background-color: var(--c-red1) !important;
    color: white !important;
}

/* SECTION - DÚVIDAS */
.section.duvidas {
    position: relative;
    background: var(--c-white);
}

.section.duvidas .content-section {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
}

.section.duvidas .title-principal {
    color: var(--c-black2) !important;
}

.section.duvidas h3.titulo_h3 {
    padding: 0px;
    margin-bottom: 10px;
    text-transform: none;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--c-white);
}

.section.duvidas .header-section h3 {
    color: var(--c-white);
}

.section.duvidas .scroll-container {
    border: none;
    margin: 10px 0px 10px 0px;
    max-height: 400px;
    overflow-y: scroll;
    padding-right: 10px;
}

.section.duvidas .border-faq {
    border-bottom: 1px solid;
    border-color: rgb(222, 223, 228);
}

.section.duvidas .painel-busca {
    width: 100%;
    /*width: 300px;*/
    margin: auto;
}

.section.duvidas .pesquisar {
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: var(--c-white);
    margin: 0px 0 10px 0;
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
}

.section.duvidas a {
    color: #000000;
    text-decoration: underline;
}

.section.duvidas a:hover {
    color: #000000;
    text-decoration: none;
}

.section.duvidas .faq-item {
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: 0px;
    font-family: "BradescoSans", sans-serif;
    font-weight: 600;
    text-transform: none;
    padding: 4rem 1rem 2rem 0rem;
    text-align: left;
    margin-top: 0px;
    color: var(--c-black);
    background: transparent;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.section.duvidas .faq-item:hover {
    /*color: #000000;*/
    /*background: transparent;*/
}

.section.duvidas [aria-expanded="true"].faq-item {
    /*color: #000000;*/
    /*background: transparent;*/
    /*font-family: "BradescoSans", sans-serif;*/
    /*font-weight: 700;*/
}

.section.duvidas .faq-item:before {
    content: "\f107";
    font-family: 'FontAwesome', Arial, sans-serif;
    color: #000000;
    font-size: 1.5rem;
    line-height: 100%;
    position: relative;
    top: 2px;
    margin-right: 1.5rem;
    float: right;
    background: #eeeeee;
    padding: 0.6rem 0.9rem 0.7rem 0.9rem;
    border-radius: 100px;
}

.section.duvidas .faq-item:hover::before {
    color: #000000;
}

.section.duvidas [aria-expanded="true"].faq-item:before {
    color: #000000;
    content: "\f106";
}

.section.duvidas .faq-item+div {
    z-index: 1;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    margin-bottom: 0px;
    margin-top: 5px;
    text-align: left;
    width: 100%;
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0;
    /*background: #1e1d1c;*/
    border-radius: 10px;
    font-style: inherit;
}

.section.duvidas .faq-item+div strong {
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
}

.section.duvidas .faq-item span {
    display: none;
}

.section.duvidas [aria-expanded="true"].faq-item span {
    color: var(--c-white);
}

/* ---------- Correção do efeito de abrir e fechar o FAQ*/
.section.duvidas .faq-item+div {
    margin-top: 0px !important;
    padding: 0px !important;
}

.section.duvidas .faq-item+div p {
    padding: 0rem 0rem 2rem 0rem;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--c-black1);
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
}

.section.duvidas .faq-item+div p a {
    color: var(--c-white);
    text-decoration: underline;
}

.section.duvidas .faq-item+div p a:hover {
    color: var(--c-white);
    text-decoration: none;
}

.section.duvidas .faq-item+div table p {
    text-align: center !important;
    padding: 0.5rem 0rem 0.5rem 0rem;
    margin-bottom: 0px;
}

/* ---------- */

.section.duvidas .input-group>.custom-select:not(:last-child),
.section.duvidas .input-group>.form-control:not(:last-child) {
    padding: 1.5rem;
    height: auto;
    border-radius: 0.7rem 0rem 0rem 0.7rem;
    border: none;
    margin: 12px 0px 6px 0px;
    font-size: 1.2rem;
    line-height: 1;
    background: var(--c-grey2);
}

.section.duvidas .float-placeholder {
    display: none;
}

.section.duvidas .no-results {
    padding: 2rem;
    border-radius: 0.7rem;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--c-grey1);
    border: 1px solid;
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    background: #737373;
    border-color: var(--c-grey1);
    margin-top: 25px;
}

.section.duvidas .descricao {
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: var(--c-white);
    text-transform: uppercase;
    margin-top: 40px;
}

.section.duvidas .descricao a {
    color: var(--c-white);
    text-decoration: underline;
}

.section.duvidas .descricao a:hover {
    color: var(--c-white);
    text-decoration: none;
}

@media (max-width: 991px) {
    .section.duvidas {
        position: relative;
    }

    .section.duvidas .padding {
        /*padding: 70px 1.5rem 130px 1.5rem;*/
    }

    .section.duvidas .descricao {
        font-size: 20px;
        line-height: 25px;
    }

    .section.duvidas .scroll-container {
        max-height: 100%;
        margin-top: 0px;
        overflow-y: inherit;
    }

    .section.duvidas .faq-item:before {
        margin-right: 10px;
    }

    .section.duvidas .faq-item+div p {
        font-size: 1.5rem;
        line-height: 20px;
        /*padding: 0px 1.5rem 0px 1.5rem;*/
    }

    .section.duvidas .float-placeholder {
        top: 55px;
        color: #000000;
        text-align: center;
        margin-top: 3px;
        left: inherit;
        width: 100%;
        margin-left: inherit;
    }

    .section.duvidas .no-results {
        /*background: rgb(64 74 110 / 95%);*/
    }

    .section.duvidas .painel-busca {
        width: 100%;
        margin-left: auto;
    }

    .section.duvidas .box {
        border-radius: 7px;
        padding: 10px 10px;
        transition: all 0.3s ease-in-out;
    }

    .section.duvidas .box:hover {
        background: #000000c7;
    }

    .section.duvidas .box-contato {
        margin-top: 1.5rem;
    }

    .section.duvidas .box-contato img {
        margin-bottom: 10px;
    }
}

/* Duvidas */
.btn-chamado {
    color: var(--c-red1) !important;
    text-decoration: none !important;
}

.btn-chamado:hover,
.btn-chamado:focus {
    color: var(--c-black) !important;
    text-decoration: none !important;
}

.subtitle-container {
    display: flex !important;
    font-family: 'BradescoSans', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    border-radius: 50rem;
    font-weight: 500;
    padding: 1rem 2rem;
    background-color: var(--c-red1);
    color: white;
    justify-self: flex-start;
    margin-bottom: 24px;
}

.btn-vermais {
    margin-top: 24px;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
}

.subtitle-normal {
    font-family: 'BradescoSans', Arial, Helvetica, sans-serif;
    font-weight: 400;
    letter-spacing: 5px;
    font-size: 18px;
}

.box-contato {
    align-items: center;
    width: 100%;
    margin-top: 40px;
    border-radius: 0rem;
    padding: 2.4rem;
    background-color: var(--c-white);
    border: 1px solid var(--c-red1);
}

.info-box-contato h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: start;
    font-family: 'BradescoSans', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 12px;
    color: var(--c-red1);
}

.info-box-contato p {
    font-size: 1.5rem;
    text-align: start;
    font-weight: 400;
    color: var(--c-blue1);
}

.formulario-box-contato {
    margin-top: 2rem;
}

.section.duvidas .box-contato a {
    color: var(--c-black1) !important;
    text-decoration: underline;
}

.section.duvidas .box-contato a:hover {
    color: var(--c-black1) !important;
    text-decoration: none;
}


.section.centralmensagens {
    position: relative;
    /* background: transparent linear-gradient(77deg, #CC092F 0%, #CC092F 61%, #b41a83 100%) 0% 0% !important; */
    background: var(--c-red1);
}

.section.centralmensagens .chat-contact-us-container {
    box-shadow: none;
    min-height: inherit;
}


/* FOOTER */
.footer {
    position: relative;
    padding: 0px;
       background-color: var(--c-red1)!important;
    /* background: transparent linear-gradient(77deg, #CC092F 0%, #CC092F 61%, #b41a83 100%) 0% 0% !important; */
    z-index: 1;
}

.footer .padding {
    max-width: 1366px;
    position: relative;
    padding: 4rem 1.5rem 4rem 1.5rem;
}

.footer .content-section {
    position: relative;
    margin: 0;
    height: auto;
}

.footer .texto-legal {
    margin: 0px;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--c-white);
}

.footer .links {
    margin-bottom: 0px;
}

.footer .links a {
    font-family: "BradescoSans", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--c-black1);
    margin-right: 1.5rem;
    text-transform: uppercase;
}

.footer .links a:hover {
    color: var(--c-black1);
    text-decoration: underline !important;
}

.footer .texto-legal a {
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    text-transform: none;
    text-decoration: underline;
    color: var(--c-white);
}

.footer .texto-legal a:hover {
    text-decoration: none;
    color: var(--c-white);
}

.footer .texto-legal.text-white,
.footer .texto-legal.text-white a,
.footer .texto-legal.text-white a:hover {
    color: var(--c-white);
}

.footer .redes {
    position: relative;
    margin-top: 10px;
    text-align: left;
}

.footer .titulo {
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 110%;
    margin-bottom: 10px;
    color: var(--c-white);
}

.footer .redes a.icone-redes {
    background: transparent;
    padding-right: 10px;
    border-radius: 100px;
    margin: 1px;
    display: inline-block;
    font-size: inherit !important;
    line-height: inherit !important;
}

.footer .redes a.icone-redes i {
    /*color: var(--c-white);*/
    font-size: 25px;
    line-height: 100%;
}

.tarja {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0px;
    background: var(--c-white) !important;
    border-top: 1px solid #f6f6f6;
}

.tarja .padding {
    padding: 4rem 2rem 4rem 2rem;
}

.tarja .logo {
    position: relative;
    width: 100%;
    padding: 1rem;
    z-index: 9;
    text-align: right;
}

.tarja .logo img {
    /*width: 100%;*/
    max-width: 100%;
    margin-left: 10px;
    text-align: right;
}

.tarja:hover .logo img {
    -webkit-animation-name: efeitoTremer;
    animation-name: efeitoTremer;
    animation-duration: 0.5s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out !important;
}

@media (max-width: 991px) {
    .footer {
        position: relative;
        font-family: "BradescoSans", sans-serif;
        font-weight: 400;
    }

    .footer .padding {
        margin: 0 auto;
    }

    .footer .logo-marca {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .footer .logo-marca img {
        width: 100%;
        max-width: 100%;
    }

    .footer .links {
        text-align: center !important;
        margin: auto;
        display: inline-grid;
        width: 100%;
        text-align: center;
        margin-bottom: 0 !important;
    }

    .footer .links a {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 7px !important;
        margin-top: 7px !important;
    }

    .footer .texto-legal {
        font-size: 1.4rem;
    }

    .footer .texto-legal,
    .footer .texto-legal a {
        font-size: 1.4rem;
        line-height: 1.4;
        margin: 0px !important;
        width: 100%;
        text-align: center !important;
    }

    .footer .redes {
        position: relative;
        margin-top: 3rem;
        margin-bottom: 0rem;
        text-align: center;
    }

    .footer .redes svg {
        width: 100%;
        max-width: 170px;
    }

    .tarja .padding {
        padding: 4rem 1.5rem 4rem 1.5rem;
    }

    .tarja .descricao {
        font-size: 1.5rem;
        line-height: 18px;
        text-transform: uppercase;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .tarja .logo {
        text-align: center;
    }

    .tarja .logo img {
        margin: 5px;
        text-align: center;
    }
}


/*  COMPONENTES FORMULÁRIO  */
.form-control {
    padding: 1.5rem;
    height: auto;
    border-radius: 0.7rem;
    border: none;
    margin: 15px 0px 6px 0px;
    font-size: 1.4rem;
    line-height: 1;
    background: var(--c-grey2);
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 500;
    color: var(--c-form);
}

.form-control:focus {
    padding: 1.5rem;
    height: auto;
    border-radius: 0.7rem;
    border: none;
    margin: 15px 0px 6px 0px;
    font-size: 1.4rem;
    line-height: 1;
    background: var(--c-grey2) !important;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 500;
    color: var(--c-form);
}

select.form-control {
    padding: 1.5rem;
    height: auto;
    border-radius: 0.7rem;
    border: none;
    margin: 15px 0px 6px 0px;
    font-size: 1.4rem;
    line-height: 1;
    background: var(--c-grey2);
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 500;
    color: var(--c-form);
}

select.form-control:focus {
    padding: 1.5rem;
    height: auto;
    border-radius: 0.7rem;
    border: none;
    margin: 15px 0px 6px 0px;
    font-size: 1.4rem;
    line-height: 1;
    background: var(--c-grey2);
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 500;
    color: var(--c-form);
}

/*.form-control-preenchido {
    border: 1px solid;
    border-color: var(--c-form);
    background: var(--c-grey2);
}

select.form-control-preenchido {
    border: 1px solid;
    border-color: var(--c-form);
    background: var(--c-grey2);
}*/

input.form-control:focus {
    padding: 1.5rem;
    height: auto;
    border-radius: 0.7rem;
    border: none;
    margin: 15px 0px 6px 0px;
    font-size: 1.4rem;
    line-height: 1;
    background: var(--c-grey2);
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 500;
    color: var(--c-form);
}

.form-control:disabled,
.form-control[readonly] {
    background: var(--c-grey2);
    opacity: 0.5;
}

.form-control+.input-group-append>.input-group-text {
    padding: 1.5rem;
    height: auto;
    border-radius: 0rem 0.7rem 0.7rem 0rem;
    border: none;
    font-size: 1.2rem;
    line-height: 1;
    background: var(--c-grey2);
    color: var(--c-form);
}

textarea.form-control {
    resize: none;
    padding: 1.5rem;
    height: auto;
    border-radius: 0.7rem;
    border: none;
    margin: 15px 0px 6px 0px;
    font-size: 1.4rem;
    line-height: 1;
    background: var(--c-grey2);
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 500;
}

textarea.form-control:focus {
    /*border: 2px solid #ffffff!important;*/
    /*border: 2px solid var(--c-grey1);*/
}

.main .section:nth-child(even) .form-control {
    background: white;
}

.float-placeholder {
    font-size: 1.1rem;
    line-height: 1;
    text-align: left;
    font-weight: 600;
    color: var(--c-black1);
    border-radius: 2px;
    z-index: 2;
    padding: 0rem;
    display: block;
    position: absolute;
    top: 0px;
    left: 0rem;
}

.form-check-label {
    color: #000000;
    font-size: 1.8rem;
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
}

.custom-control-label {
    color: var(--c-black1);
    padding: 0 0 0 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.custom-control-label::before,
.custom-control-label:focus {
    box-shadow: none !important;
    border: 1px solid #6a6c72;
    border-radius: 100px !important;
}

.custom-control-input:checked~.custom-control-label::before {
    color: var(--c-blue1);
    border-color: var(--c-blue1);
    background-color: var(--c-blue1);
    z-index: 1;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    box-shadow: none !important;
    border: 1px solid #6a6c72;
    border-radius: 100px !important;
}


.custom-control-label a {
    text-decoration: underline;
    color: var(--c-grey1);
}

.custom-control-label a:hover {
    text-decoration: none;
    color: var(--c-grey1);
}

[class*="vld-"]+.error {
    text-align: left;
    display: block;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--c-error);
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    margin-top: -1px;
    margin-bottom: 8px;
    padding: 0rem;
    background: transparent;
}

label.error {
    text-align: left;
    display: block;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--c-error);
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    margin-top: 3px;
    margin-bottom: 8px;
    padding: 0rem 0rem 0rem 1.1rem;
    background: transparent;
}

/*Checkbox dos aceites*/
.custom-control-label::before {
    border: none;
    width: 1.5rem;
    height: 1.5rem;
    top: 0.15rem;
}

.custom-control-label::after {
    border: none;
    width: 1.5rem;
    height: 1.5rem;
    top: 0.15rem;
}


/* COMPONENTES FORMULÁRIO */
/* Regras de senha personalizadas */
#Senha:not([data-senha-vazio])~.senha-regras,
[data-senha-vazio="true"]#Senha~.senha-regras,
#Senha.valid:not(:focus)~.senha-regras {
    display: none;
}

#Senha:not([data-senha-vazio])~.senha-regras,
[data-senha-vazio="true"]#Senha~.senha-regras {
    display: none;
}

#NovaSenha:not([data-senha-vazio])~.senha-regras,
[data-senha-vazio="true"]#NovaSenha~.senha-regras,
#NovaSenha.valid:not(:focus)~.senha-regras {
    display: none;
}

#NovaSenha:not([data-senha-vazio])~.senha-regras,
[data-senha-vazio="true"]#NovaSenha~.senha-regras {
    display: none;
}

#txtSenhaNova:not([data-senha-vazio])~.senha-regras,
[data-senha-vazio="true"]#txtSenhaNova~.senha-regras,
#txtSenhaNova.valid:not(:focus)~.senha-regras {
    display: none;
}

#txtSenhaNova:not([data-senha-vazio])~.senha-regras,
[data-senha-vazio="true"]#txtSenhaNova~.senha-regras {
    display: none;
}

#txtSenha:not([data-senha-vazio])~.senha-regras,
[data-senha-vazio="true"]#txtSenha~.senha-regras,
#txtSenha.valid:not(:focus)~.senha-regras {
    display: none;
}

#txtSenha:not([data-senha-vazio])~.senha-regras,
[data-senha-vazio="true"]#txtSenha~.senha-regras {
    display: none;
}

#txtNovaSenha:not([data-senha-vazio])~.senha-regras,
[data-senha-vazio="true"]#txtNovaSenha~.senha-regras,
#txtNovaSenha.valid:not(:focus)~.senha-regras {
    display: none;
}

#txtNovaSenha:not([data-senha-vazio])~.senha-regras,
[data-senha-vazio="true"]#txtNovaSenha~.senha-regras {
    display: none;
}

.senha-regras {
    text-align: left;
    font-size: 12px;
    background-color: var(--c-white);
    border: 2px solid var(--c-white);
    /*background-color: rgb(255 255 255);*/
    border-radius: 10px;
    position: absolute;
    z-index: 999999;
    width: 220px;
    padding: 1.5rem 10px 1.5rem 10px;
    margin-top: 0px;
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
}

.senha-regras::before {
    content: "\edc4";
    font-family: 'icomoon', Arial, sans-serif;
    width: 35px;
    height: 12px;
    text-align: center;
    font-size: 30px;
    line-height: 100%;
    border-radius: 0;
    margin-right: 0px;
    display: inline-block;
    background: transparent;
    color: var(--c-white);
    position: absolute;
    top: -18px;
    left: 0px;
    z-index: 1;
}

.senha-regras>div {
    padding: 0.2rem;
    font-weight: 500;
    color: var(--c-black);
}

.senha-regras>div:before {
    content: "\e601";
    font-family: 'icomoon', Arial, sans-serif;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    background: #d9d9d9;
    /*background: #ccc;*/
    color: #d9d9d9;
    /*color: #ccc;*/
}

[data-senha-maiusculas="true"]~.senha-regras .regra-maiusculas:before {
    color: white;
    background: #4caf50;
    /*    background: var(--c-red1);*/
}

[data-senha-minusculas="true"]~.senha-regras .regra-minusculas:before {
    color: white;
    background: #4caf50;
    /*    background: var(--c-red1);*/
}

[data-senha-numeros="true"]~.senha-regras .regra-numeros:before {
    color: white;
    background: #4caf50;
    /*    background: var(--c-red1);*/
}

[data-senha-especiais="true"]~.senha-regras .regra-especiais:before {
    color: white;
    background: #4caf50;
    /*    background: var(--c-red1);*/
}

[data-senha-tamanho="true"]~.senha-regras .regra-tamanho:before {
    color: white;
    background: #4caf50;
    /*    background: var(--c-red1);*/
}


/*Olho Senha*/
.eye {
    margin: auto;
    display: inherit;
}

.eye [data-togglepassword] {
    height: 25px;
    width: 25px;
    line-height: 30px;
    text-decoration: none !important;
    position: absolute;
    color: var(--c-black1);
    top: 22px;
    right: 25px;
    z-index: 1;
    font-size: 2rem;
    cursor: pointer;
}

.eye [data-togglepassword] :hover {
    color: var(--c-red1);
    text-decoration: none !important;
}

.eye [data-togglepassword] .password-hide {
    text-decoration: none !important;
}

@media (max-width: 991px) {
    .eye {
        top: 7px;
        right: 20px;
        position: absolute;
    }

    .eye [data-togglepassword] {
        text-align: center;
        width: 100%;
        font-size: 25px;
        height: 20px;
        line-height: 25px;
        top: 18px;
        right: 30px;
    }
}


/* Formulario progresso */
@media (max-width: 991px) {
    #frm-cadastro {
        margin: 0 auto;
        width: 100% !important;
    }

    #frm-cadastro [data-step] {
        /*padding: 20px 20px;*/
        padding: 0px;
    }
}

@media (max-width: 768px) {
    #frm-cadastro {
        width: 90%;
    }
}

#frm-cadastrar:not(.carregando) .formulario-carregando {
    display: none;
}

.formulario-carregando {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.formulario-carregando>div {
    display: inline-block;
    position: absolute;
    width: 200px;
    height: 200px;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
}

.formulario-carregando>div div {
    position: absolute;
    border: 4px solid #161616;
    opacity: 1;
    border-radius: 50%;
    animation: formulario-carregando 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.formulario-carregando>div div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes formulario-carregando {
    0% {
        top: 96px;
        left: 96px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 192px;
        height: 192px;
        opacity: 0;
    }
}

form label {}

label#erroValor.error,
label#erroQuantidade.error,
label#erroProduto.error {
    text-align: left;
    display: block;
    width: 100%;
    margin-top: 3px;
    font-size: 12px !important;
    line-height: 12px !important;
    padding: 0px 1.5rem 3px 1.5rem !important;
    background: transparent;
    color: #ed3f32;
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
}

/* Formulario steps */

[data-plugin="formsteps"]:not(.plugin-loaded) {
    display: none;
}

[data-plugin="upload"] .upload-preview {
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
}

[data-tbitems="Produtos"] tbody td {
    background: white;
}

[data-tbitems="Produtos"][data-items="0"] thead {
    display: none;
}

[data-plugin="tbitems"]:not(.plugin-loaded) {
    display: none;
}

@media (max-width: 991px) {
    /*#cadastro .txt-envie{
        font-size: 1.5rem;
        line-height: 18px;
        margin-bottom: 0px;
    }*/

    #frm-cadastrocupom table.table tbody td {
        display: block;
        border: none;
        background: #FFFFFF;
        border-radius: 0;
    }

    #frm-cadastrocupom .btn.btn-ajust-add {
        margin-top: 20px;
    }

    #frm-cadastrocupom .selecionar-bag {
        background: #122a63;
        padding: 20px 10px;
        border-radius: 25px;
        width: 100%;
        margin-top: 1.5rem;
    }

    #frm-cadastrocupom .selecionar-bag .form-check {
        padding: 0;
        margin: 0;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}


/* SECTION - GANHADORES */
.section.ganhadores {
    position: relative;
    background: url(../img/background/bkg5.webp) center bottom !important;
    background-size: cover !important;
    background: var(--c-grey1);
}
@media (max-width: 991px) {
    .section.ganhadores {
        /* background: url(../img/bkgestadio_991.webp) bottom center !important; */
        /* background-size: cover !important; */
    }
}

.section.ganhadores .content-section {
    width: 100%;
    margin: auto;
}

.section.ganhadores .header-section h2 {
    color: var(--c-white);
}

.section.ganhadores .tab .description {
    color: var(--c-white);
}

/* TABS */
.tab-btn .btn {
    position: relative;
    font-family: 'BradescoSans', Arial, Helvetica, sans-serif;
    font-weight: 700 !important;
    color: var(--c-white) !important;
    background: var(--c-red1) !important;
    font-size: 1.8rem;
    line-height: 1;
    padding: 1.1rem 3rem 1.2rem 3rem;
    border-radius: 500px;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    border: none;
    opacity: 1;
    text-decoration: none !important;
}

.tab-btn .btn:focus,
.tab-btn .btn:hover {
    color: var(--c-white) !important;
    background: var(--c-red1) !important;
    opacity: 1;
    text-decoration: none !important;
}

.tab-btn .btn.active {
    position: relative;
    font-family: 'BradescoSans', Arial, Helvetica, sans-serif;
    font-weight: 700 !important;
    color: var(--c-black) !important;
    background: var(--c-white) !important;
    font-size: 1.8rem;
    line-height: 1;
    padding: 1.1rem 3rem 1.2rem 3rem;
    border-radius: 500px;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    border: none;
    opacity: 1;
    text-decoration: none !important;
}

.tab-btn .btn.active:focus,
.section.ganhadores .tab-btn .btn.active:hover {
    color: var(--c-black) !important;
    background: var(--c-white) !important;
    opacity: 1;
    text-decoration: none !important;
}

.section.ganhadores table.table tbody td.b10 {
    background: #fbfbfb;
}

.section.ganhadores table.table tbody td.b20 {
    background: #fbfbfb;
}

/* Filtro letra */
.section#ganhadores button.btn {
    position: relative;
    font-size: 1.5rem;
    line-height: 0px;
    margin: 3px 1px;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    background: #ffffff;
    color: var(--c-blue1);
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700 !important;
    font-style: normal !important;
    opacity: 1;
    border: none;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    font-weight: inherit;
    text-align: center;
    vertical-align: middle;
    padding: 0.8rem 0.8rem 0.8rem 0.8rem;
    transform: scale(1);
    min-height: inherit;
}

.section#ganhadores button.btn.active {
    background: var(--c-red1);
    color: var(--c-white);
    opacity: 1;
    transform: scale(1);
    min-height: inherit;
}

.section#ganhadores .btn.disabled,
.section#ganhadores .btn:disabled {
    opacity: 1!important;
    background: var(--c-blue1)!important;
    color: #f9f9f9;
    min-height: inherit;
    opacity: 0.05!important;
}

@media (max-width: 991px) {
    .section.ganhadores .box {
        background: #fbf2e7;
        padding: 3rem 3rem 3rem 3rem;
        border-radius: 1rem;
        width: 100%;
        max-width: 800px;
        margin: auto;
        margin-bottom: 2rem;
    }

    .section.ganhadores .box .description span {
        position: relative;
        text-transform: none;
        font-size: 1.3rem;
        font-weight: 500;
        color: var(--c-grey1);
        top: inherit;
        left: 0px;
        margin-bottom: 5px;
        width: 100%;
        display: block;
    }

    .section.ganhadores .box .description {
        margin-bottom: 10px;
    }
}

.ganhadores-item+div {
    display: block;
}

.section.ganhadores .ganhadores-item {
    background: var(--c-blue1);
    color: var(--c-white);
    padding: 10px 25px;
    border-radius: 25px;
    text-align: left;
    position: relative;
    z-index: 2;
    margin-top: 5px;
    margin-bottom: 20px;
}

.section.ganhadores .ganhadores-item span {
    color: yellow;
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
}

.section.ganhadores .scroll-container {
    margin: 0px 0px 10px 0px;
    max-height: 650px;
    overflow-y: scroll;
    border: none !important;
}

.section.ganhadores .ganhadores-item:before {
    content: "\f067";
    font-family: 'FontAwesome', Arial, sans-serif;
    color: yellow;
    font-size: 20px;
    line-height: 20px;
    position: relative;
    top: 3px;
    margin-right: 10px;
}

.section.ganhadores [aria-expanded="true"].ganhadores-item:before {
    color: yellow;
    content: "\f068";
}

.section.ganhadores table.table {
    background: #fbfbfb;
}

.section.ganhadores table.table tbody tr td:first-child {
    margin-top: 1rem;
}
.section.ganhadores table.table tbody tr td:last-child {
    margin-bottom: 1rem;
}

.section.ganhadores .filtro {
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    color: var(--c-white);
    font-size: 1.8rem;
    line-height: 120%;
}

@media (max-width: 991px) {
    .section.ganhadores .relacaodeganhadores.adjust {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .section.ganhadores table.table td.vermelho,
    .section.ganhadores table.table th.vermelho,
    .section.ganhadores table.table td.cinza,
    .section.ganhadores table.table th.cinza {
        border: none;
    }

    .section.ganhadores table.table tr.vermelho {
        background: #FFFFFF;
        padding: 20px;
        display: block;
        border-radius: 20px;
        margin: 10px 0;
    }

    .section.ganhadores table.table tr.cinza {
        background: #FFFFFF;
        padding: 20px;
        display: block;
        border-radius: 10px;
        margin: 10px 0;
    }

    .section.ganhadores .tab-btn .btn,
    .section.ganhadores .tab-btn .btn.active {
        font-size: 1.5rem;
        width: 100%;
    }

    .section.ganhadores table.table tbody td {
        background: var(--c-white);
    }

    .section.ganhadores table.table tbody td {
        border-radius: 0px !important;
    }

    .section.ganhadores .scroll-container {
        max-height: 435px;
    }
}

.section.ganhadores .inicio {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    max-width: 623px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.section.ganhadores .inicio:hover {
    transform: scale(0.98);
    transition: all 1s ease-in-out;
}

.section.ganhadores .inicio img {
    position: relative;
    z-index: 2;
    width: 78%;
    max-width: 623px;
    transition: all 0.3s ease-in-out;
}

.section.ganhadores .inicio img.inicio4 {
    max-width: 455px;
}

.section.ganhadores .elemento1 {
    position: absolute;
    bottom: -28%;
    left: 3%;
    width: 11%;
    animation-name: efeitoSobeDesce;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
}

.section.ganhadores .elemento2 {
    position: absolute;
    top: -2%;
    left: 40%;
    width: 15%;
    animation-name: efeitoSobeDesceDois;
    animation-duration: 3s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
}

.section.ganhadores .elemento3 {
    position: absolute;
    top: -32%;
    right: -20%;
    width: 37%;
    animation-name: efeitoSobeDesce;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
}

.section.ganhadores .elemento4 {
    position: absolute;
    top: -18%;
    left: -12%;
    width: 25%;
    animation-name: efeitoSobeDesceDois;
    animation-duration: 3s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
}

.section.ganhadores .elemento5 {
    position: absolute;
    bottom: -7%;
    left: 24%;
    width: 10%;
    animation-name: efeitoSobeDesce;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
}

.section.ganhadores .elemento6 {
    position: absolute;
    bottom: -40%;
    left: 43%;
    width: 20%;
    animation-name: efeitoSobeDesceDois;
    animation-duration: 3s;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
}

.section.ganhadores .elemento1 img,
.section.ganhadores .elemento2 img,
.section.ganhadores .elemento3 img,
.section.ganhadores .elemento4 img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .section.ganhadores .elemento1 {
        bottom: 1%;
        left: 10%;
        width: 11%;
        /*z-index: 0;*/
    }

    .section.ganhadores .elemento2 {
        top: 0%;
        left: 35%;
        width: 15%;
        z-index: 0;
    }

    .section.ganhadores .elemento3 {
        top: 2%;
        left: -6%;
        width: 37%;
        z-index: 0;
    }

    .section.ganhadores .elemento4 {
        bottom: 5%;
        left: inherit;
        width: 25%;
        right: -13%;
        z-index: 0;
    }

    .section.ganhadores .elemento5 {
        bottom: inherit;
        top: 4%;
        left: inherit;
        width: 10%;
        right: 0%;
        z-index: 0;
    }

    .section.ganhadores .elemento6 {
        bottom: 52%;
        left: 80%;
        width: 20%;
        z-index: 0;
    }
}


/* SECTION - Meus numeros */
.section.meusnumeros {
    position: relative;
}

.section.meusnumeros .botao-acao a {
    font-size: 13px;
    line-height: 13px;
    padding: 10px 1.5rem 10px 1.5rem !important;
}

.section.meusnumeros .scroll-container {
    order: none;
    margin: 20px 0;
    max-height: 307px;
    overflow-y: scroll;
    overflow-x: hidden;
}


/*SECTION - ESQUECI MINHA SENHA */
.section.redefinirsenha {
    position: relative;
}

.section.redefinirsenha {
    padding: 5rem 3rem 7rem 3rem;
}

.section.redefinirsenha .content-section {
    width: 55%;
    margin: auto;
}

@media (max-width: 991px) {
    .section.redefinirsenha .content-section {
        width: 100%;
    }

    .section.redefinirsenha .padding {
        /*padding: 40px 1.5rem 40px 1.5rem;*/
    }
}

/*SECTION - REDEFINIÇÃO DE SENHA */
/*#redefinirsenha {
    position: relative;
}

#redefinirsenha .padding {
    padding: 70px 1.5rem 80px 1.5rem;
}

#redefinirsenha .header-section h2 {
    text-align: center;
}

#redefinirsenha .description.small {
    font-size: 14px;
    text-align: center;
}

#redefinirsenha .content-section {
    position: relative;
    height: 600px;
}

#redefinirsenha .float-placeholder {
    /*top: -18px;*/
}

/*#redefinirsenha .form-control {
    border-color: var(--c-grey1);
}

#redefinirsenha .float-placeholder {
    top: -18px;
}*/
*/

/*SECTION - REDEFINIÇÃO DE SENHA */
.esquecisenha .float-placeholder {
    display: none;
}


/* MODAL - OLHO SENHA */
.modal .eye [data-togglepassword] {
    top: 23px;
}


/* Tabelas

/*Tabelas - Protótipo antigo*/
table.table {
    border-collapse: separate;
    border-spacing: 0px;
    border: 1px solid var(--c-red1);
}

table.table th {
    color: var(--c-blue1);
    background: var(--c-blue1);
}

table.table td,
table.table th {
    position: relative;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: var(--c-white);
    background: var(--c-blue1);
    border-radius: 0px;
    padding: 1.6rem 2rem 1.1rem 2rem;
    border: none;
    border-radius: 0px;
}

table.table tbody td {
    position: relative;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1;
    border: none;
    background: #fbfbfb;
    color: var(--c-red1);
    padding: 2.4rem 2rem;
    border-radius: 0rem;
    vertical-align: middle;
}

table.table tbody tr:nth-child(even) td {
    background: rgba(204, 9, 47, 0.5);
}

table.table .title-table-mobile {
    display: none;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.2!important;
    border-radius: 100px;
    padding: 0rem 2.5rem 1rem 2.5rem;
    background: transparent;
    color: var(--c-black1)!important;
}

table.table .filter-result {
    display: inline-block;
}

table.table .th-header {
    cursor: pointer;
    position: relative;
}

table.table .th-header:hover {
    opacity: 0.9;
}

table.table .th-header.headerSortDown::after {
    position: absolute;
    right: 10px;
    content: '\e9c5';
    font-family: 'icomoon', Arial, sans-serif;
    font-size: 25px;
    line-height: 25px;
    color: #FFFFFF;
}

table.table .th-header.headerSortUp::after {
    position: absolute;
    right: 10px;
    content: '\e9c6';
    font-family: 'icomoon', Arial, sans-serif;
    font-size: 25px;
    line-height: 25px;
    color: #FFFFFF;
}

.table .thead-dark th {
    position: relative;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1;
    background: #fbfbfb;
    color: var(--c-black1);
    padding: 2.4rem 2rem 0rem 2rem;
    text-transform: none;
    border-radius: 0;
    border: 0 !important;
}

.table .thead-dark th:first-child {
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
}

.table .thead-dark th:last-child {
    border-top-right-radius: 0.0rem;
    border-bottom-right-radius: 0.0rem;
}

table.table tbody td .contemplado {
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    color: var(--c-check);
    line-height: 1.5;

}

table.table tbody td .naocontemplado {
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    color: var(--c-white);
}

table.table tbody td .reprovado {
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    color: #ffffff;
}

table.table tbody td .aguardando {
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    color: #313131;
}

table.table tbody td i {
    font-size: 2rem;
    top: 2px;
    left: 2px;
    position: relative;
}

table.table tbody td i:hover {
    color: var(--c-white);
}

table.table tbody td i.icon-cross2:before {
    display: none;
}


@media (max-width: 991px) {

    /* Base protótipo */
    .main .header .content {
        width: auto;
    }

    .main .section .content {
        width: auto;
    }

    .main .footer .content {
        width: auto;
    }

    /* Tabela */
    table.table {
        border-spacing: 0px;
    }

    table.table .title-table-mobile {
        display: inline-block !important;
        font-family: 'BradescoSans', Arial, sans-serif;
        font-weight: 700;
        /* font-size: 1.8rem; */
        /* line-height: 1.4; */
        border-radius: 100px;
        padding: 1rem 2.5rem;
        background: transparent;
        color: var(--c-white);
    }

    table.table td,
    table.table th {
        border: 0;
    }

    table.table thead {
        display: none;
    }

    table.table tbody td {
        display: block;
        border: none;
        border-radius: 0px;
        padding: 0rem 0rem 0rem 0rem;
        /*padding: 0.65rem 0.65rem 2rem 0.65rem;*/
    }

    table.table tbody tr td:first-child {
        border-top-left-radius: 0.0rem;
        border-top-right-radius: 0.0rem;
        border-bottom-left-radius: 0px !important;
        /*font-weight: 500!important;*/
    }

    table.table tbody tr td:last-child {
        border-top-right-radius: 0px !important;
        border-bottom-left-radius: 0;
        padding-bottom: 1.15rem;
    }
}

table.table tbody tr td:first-child {
    border-top-left-radius: 0.0rem;
    border-bottom-left-radius: 0.0rem;
    /*font-weight: 500!important;*/
}

table.table tbody tr td:last-child {
    border-top-right-radius: 0.0rem;
    border-bottom-right-radius: 0.0rem;
}

.table th.sort {
    cursor: pointer;
}

.table th.sort.asc:after {
    padding-left: 10px;
    display: inline-block;
    content: "\f0d8";
    font-family: 'FontAwesome', Arial, sans-serif;
}

.table th.sort.desc:after {
    padding-left: 10px;
    display: inline-block;
    content: "\f0d7";
    font-family: 'FontAwesome', Arial, sans-serif;
}


/*Tela de Erro*/
#erro {
    position: relative;
}

#erro .padding {
    /*    padding: 50px 1.5rem;*/
}

#erro .content-section {
    position: relative;
    height: 600px;
}

#erro .header-section {
    margin-bottom: 0px;
}

@media (min-width: 320px) and (max-width: 374px) {
    #erro .content-section {
        height: 533px !important;
    }
}

@media (min-width: 375px) and (max-width: 413px) {
    #erro .content-section {
        height: 777px !important;
    }
}

@media (min-width: 375px) and (height: 667px) {
    #erro .content-section {
        height: 822px !important;
    }
}

/*@media (min-width: 414px) {
            #erro .content-section {
                height: 701px!important;
            }
        }*/

#erro .logo-promocao {
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

#erro .logo-promocao img {
    width: 100%;
    max-width: 550px;
}

.section#erro .logopromocao {
    width: 100%;
    max-width: 100%;
    margin-bottom: 3rem;
}

.section.aguarde .logopromocao .img-logopromocao {
    position: relative;
    max-width: 100%;
}

@media (max-width: 991px) {
    .section.aguarde .logopromocao .img-logopromocao {
        max-width: 100%;
    }
}

.section#erro .aguarde {
    position: absolute;
    z-index: 3;
    top: 60%;
    left: 5%;
    width: 36%;
}

.section#erro .aguarde .img-aguarde {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.section.aguarde .header-section h1 {
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    color: var(--c-white);
    font-size: 35px;
    line-height: 120%;
}

.section.aguarde .icone-aguarde1 {
    position: absolute;
    top: 0%;
    left: -7%;
}

.section.aguarde .icone-aguarde1 img {
    /*width: 100%;*/
    max-width: 100%
}

.section.aguarde .icone-aguarde2 {
    position: absolute;
    top: 0%;
    right: -7%;
}

.section.aguarde .icone-aguarde2 img {
    /*width: 100%;*/
    max-width: 100%
}

.section.aguarde h2.titulo.tituloaguarde {
    font-style: italic !important;
    text-transform: none !important;
    font-size: 60px !important;
    line-height: 60px !important;
}

@media (max-width: 412px) {
    .section.inicio .logopromocao .img-logopromocao {
        width: 90%;
        left: inherit;
    }

    .section.aguarde h2.titulo.tituloaguarde {
        font-size: 40px !important;
        line-height: 50px !important;
    }

    .section.aguarde .header-section h1 {
        font-size: 25px;
        line-height: 120%;
        margin-top: -40px !important;
        margin-bottom: 5px !important;
    }

    .section.aguarde .logopromocao {
        margin-top: 30px;
    }
}


@media (max-width: 991px) {
    .section#erro .aguarde {
        position: absolute;
        z-index: 3;
        top: 28%;
        left: 5%;
        width: 86%;
    }

    .section#erro .aguarde .img-aguarde {
        width: 100%;
        transition: all 0.3s ease-in-out;
    }

    .section#erro .logopromocao {
        width: 100% !important;
    }

    #erro .header-section {
        margin-top: 30px;
    }
}

#erro .titulo {
    position: relative;
    font-size: 35px;
    line-height: 40px;
    color: var(--c-white);
    font-family: "BradescoSans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

#erro .texto {
    position: relative;
    font-size: 20px;
    line-height: 25px;
    color: var(--c-white);
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
    text-transform: none;
}

#erro .texto span {}

#erro .call-to-action {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    #erro {
        position: relative;
        /*        height: 100vh;*/
    }

    #erro .padding {
        /*        padding: 0rem 2rem;*/
    }

    #erro .content-section {
        /*        height: 100vh !important;*/
    }

    #erro .titulo {}

    #erro .texto {
        position: relative;
        font-size: 20px;
        line-height: 25px;
    }

    #erro .titulo {
        margin-bottom: 10px !important;
    }
}

/* Faixa de encerramento da promocão */
.encerramento {
    display: none !important;
    position: fixed;
    z-index: 99999 !important;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    text-align: center;
    font-weight: 700;
    line-height: 100%;
    color: var(--c-white);
    background: var(--c-error);
    font-family: "BradescoSans", sans-serif;
    text-transform: none;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 700;
}

.encerramento i {
    color: var(--c-white);
    display: block;
    margin-bottom: 10px;
    display: none;
}

.encerramento[data-enable-shutdown='false'] {
    display: none !important;
}

.encerramento[data-enable-shutdown='true'] {
    display: block !important;
}

@media (max-width: 991px) {
    .encerramento i {
        margin-bottom: 1.5rem;
    }
}

[class*="vld-"]+.select2+.error {
    text-align: left;
    display: inline-block;
    width: 100%;
    margin-top: 3px;
    font-size: 1.5rem !important;
    line-height: 1.5rem !important;
    padding: 5px 1.5rem 7px 1.5rem !important;
    background: #d30c0c;
    border-radius: 4px !important;
    color: var(--c-white);
    font-family: 'Knockout-HTF29', Arial, sans-serif;
    margin-bottom: 7px;
}

[class*="vld-"]+.select2+.error {
    font-size: 12px;
    line-height: 12px;
    color: #fff4fa;
    display: block;
    background: red;
    padding: 8px 1.5rem;
    border-radius: 11px 0px 10px 0px;
}

[class*="vld-"]:not(.error)+.select2+.error {
    display: none;
}


/*PDF*/
.rtp .panel {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    padding: 1.5rem;
    border: 0;
    border-radius: 10px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    background: #ffffff;
    min-height: 200px;
}

.rtp .loading {
    color: #000000 !important;
}

.rtp .loading i[class^="icon-"] {
    color: #ff7a00 !important;
}

.ipgs-theme-default .ipgs-book-loading-info {
    background: rgb(226 0 25) !important;
}

.ipgs-theme-default .ipgs-stage {
    background-color: transparent !important;
    /*box-shadow: 0 0 50px rgba(0, 0, 0, 0.5) inset;*/
    box-shadow: none !important;
}

.ipgs-theme-default .ipgs-page .ipgs-extra .ipgs-number {
    display: none !important;
}

.ipgs-theme-default .ipgs-book-loading {
    background: var(--c-white);
}

.ipgs-theme-default .ipgs-control-pagenumber .ipgs-pagenumber-label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: #000000 !important;
}

.ipgs-control {
    transition: all 0.3s ease-in-out !important;
}

.ipgs-control:hover {
    transform: scale(1.1) !important;
}

.ipgs-control.ipgs-control-download {
    cursor: pointer !important;
    background: var(--c-red1);
    border-radius: 5px !important;
}

.ipgs-control.ipgs-control-download .ipgs-icon-download {
    opacity: 1 !important;
    filter: invert() !important;
}

/* Ajustes H1 a H4*/
.h4,
h4 {
    padding: 0rem 0rem 2rem 0rem;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--c-grey1);
    font-family: "BradescoSans", sans-serif;
    font-weight: 400;
}

.bg-exemplo {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

.bg-exemplo img {
    width: 100%;
    object-fit: cover;
}

.custom-checkbox .custom-control-label::before {
    background-color: #d9d9d9;
}

.w-full {
    width: 100%;
}

.box-white {
    position: relative;
    background: var(--c-white);
    z-index: 1;
    padding: 2rem;
    width: 100%;
    border-radius: 10px;
}

.box-white .header-section {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .box-white {
        padding: 2rem;
    }
}

/* Cartao CSS */
/* Arquivo de sobreposição para o desenvolvedor */
.jp-card .jp-card-back,
.jp-card .jp-card-front {
    background: url(../img/card-black.png) center center !important;
    /*    background-size: cover;*/
}

.jp-card-shiny {
    display: none !important;
}

.jp-card .jp-card-front .jp-card-lower .jp-card-name {
    display: none !important;
}

.jp-card .jp-card-front .jp-card-lower .jp-card-expiry {
    display: none !important;
}

.jp-card.jp-card-identified .jp-card-back:before,
.jp-card.jp-card-identified .jp-card-front:before {
    background: none !important;
}

.jp-card .jp-card-front .jp-card-logo {
    display: none;
}

.jp-card .jp-card-front .jp-card-lower .jp-card-number {
    font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace !important;
    font-size: 19px !important;
    clear: both !important;
    margin-bottom: 37px !important;
    text-align: left !important;
    margin-left: -13px !important;
}

@media (max-width: 450px) {
    .card-wrapper {
        max-width: 100vw !important;
        width: 100% !important;
        margin: 0px auto !important;
        overflow-x: hidden !important;
    }

    .jp-card-container {}

    .card-wrapper>.jp-card-container {
        transform: scale(1) !important;
        transform-origin: left center !important;
    }
}


/* Contador */
#erro .countdown {
    position: relative;
    top: 0%;
    right: 0%;
    z-index: 9;
    width: 400px;
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
}

#erro .countdown .digits {
    background: #ffffff !important;
    border-radius: 6px;
    padding-bottom: 10px;
    padding-right: 2px;
    padding-left: 2px;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    /*    box-shadow: 2px 4px 0px 0px rgb(172 196 53);*/
}

span.line {
    position: absolute;
    z-index: 0;
    left: 12.6%;
    top: 43px;
    content: "";
    width: 77.7px;
    height: 1px;
    border: 1px solid #5b5b5b;
}

#erro .countdown .digits span {
    color: var(--c-blue1);
}

@media (max-width: 991px) {
    #erro .countdown {
        margin-bottom: 15px;
        margin-top: 5px;
        width: 100%;
    }
}

#erro .countdown .info {
    font-size: 1.6rem;
    padding: 0px;
    line-height: 100%;
    color: #f3ebda;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 400;
}

#erro .countdown .digits div {
    font-size: 50px;
    color: var(--c-blue1);
    background: transparent;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    width: 70px;
    height: 60px;
    line-height: 76px;
    z-index: 1;
    position: relative;
}

/* Aguarde */
@media (max-width: 1200px) and (min-width: 991px) {
    .countdown .row div.m-auto {
        margin: 0 auto 0 0 !important;
    }

    #erro .countdown .digits div {
        width: 52px;
        height: 52px;
        font-size: 36px;
    }
}

/* Elementos flutuantes */
/* Direita */
.elemento-flutuante-top-right {
    width: 19.5625rem;
    height: 12.1875rem;
    position: absolute;
    right: 0;
    top: 10%;
}

.elemento-flutuante-top-right.style2 {
    transform: scale(1.2) translateX(60%);
    z-index: 1;
    top: -8%;
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .elemento-flutuante-top-right {
        width: 12.4375rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .elemento-flutuante-top-right {
        width: 12.4375rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .elemento-flutuante-top-right,
    .elemento-flutuante-top-right svg {
        width: 14.75rem;
    }
}

@media (min-width: 541px) and (max-width: 767px) {
    .elemento-flutuante-top-right {
        width: 12.5rem;
    }
}

@media (min-width: 0px) and (max-width: 540px) {
    .elemento-flutuante-top-right {
        width: 8.1875rem;
    }
}

/* Esquerda */
.elemento-flutuante-bottom-left {
    min-width: 19.1875rem;
    min-height: 16.3125rem;
    position: absolute;
    left: 0;
    bottom: 20%;
}

.elemento-flutuante-bottom-left.style2 {
    z-index: 1;
    transform: scale(1.2) translateX(-40%);
    bottom: -8%;
}

.section.login .elemento-flutuante-bottom-left.style2 {
    bottom: -15%;
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .elemento-flutuante-bottom-left {
        width: 14.0625rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .elemento-flutuante-bottom-left {
        width: 14.0625rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .elemento-flutuante-bottom-left,
    .elemento-flutuante-bottom-left svg {
        width: 13.875rem;
    }
}

@media (min-width: 541px) and (max-width: 767px) {
    .elemento-flutuante-bottom-left {
        width: 12.6875rem;
    }
}

@media (min-width: 0px) and (max-width: 540px) {
    .elemento-flutuante-bottom-left {
        width: 8.125rem;
    }
}

/* Elementos flutuantes secao */
.elemento-flutuante-secao {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 30%;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

.elemento-flutuante-secao.left {
    background-image: url('../img/elementos/elemento-secao-esquerda.svg');
    left: 0;
    background-position: center left;
}

.elemento-flutuante-secao.right {
    background-image: url('../img/elementos/elemento-secao-direita.svg');
    right: 0;
    background-position: center right;
}

.logo-mastercard {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 240px;
    z-index: 1;
    height: 150px;
}

@media (max-width: 1366px) {
    .logo-mastercard {
        width: 175px;
        height: 110px;
        top: 30px;
    }
}

@media (max-width: 991px) {
    .logo-mastercard {
        position: static;
        top: 0;
        margin-top: 0px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .logo-mastercard {
        align-self: center;
    }
}

.vertical-hr {
    display: flex;
    flex-direction: column;
    border: none !important;
    border-left: 1px solid var(--c-black1) !important;
    width: 1px;
    height: 120px;
    align-self: center;
}


.box-aceleradores {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    background-color: var(--c-white);
    border-radius: 24px;
    padding: 24px;
    margin-top: 60px;
}

.box-aceleradores-info p {
    text-align: center;
    font-size: 1.8rem;
}

.box-aceleradores-info p strong {
    color: var(--c-red1);
}

@media (max-width: 991px) {
    .box-aceleradores {
        margin: 0 auto;
        margin-top: 60px;
        width: 100%;
        max-width: 600px;
        flex-direction: column;
        padding: 40px 20px;
    }

    .box-aceleradores-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 120px;
    }

    .box-aceleradores-info p {
        max-width: 40ch;
    }

    .vertical-hr {
        border: none !important;
        border-bottom: 1px solid var(--c-black1) !important;
        width: 70%;
        height: auto;
    }
}

.link-underline {
    text-decoration: underline;
    font-size: 1.4rem;
}

.link-underline:focus,
.link-underline:hover {
    text-decoration: none;
}

/* Box em Premios */
.box-premio-sorteio,
.box-premio-vb {
    display: flex;
    align-items: center;
}

.box-premio-sorteio .box-image,
.box-premio-vb .box-image {
    max-width: 100px;
}

@media (max-width: 991px) {

    .box-premio-sorteio,
    .box-premio-vb {
        flex-direction: column;
    }
}

/* Btn on kv */
.btn-cadastro-inicio {
    position: absolute;
    bottom: 0;
    right: 10%;
    border-radius: 18px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    font-size: 2rem !important;
}

/* Register popup */
/*.register-popup {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: absolute;
    background: var(--c-white);
    right: 8rem;
    bottom: 0;
    z-index: 20;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px 20px 16px 20px;
    transition: all .3s ease;
}*/

.register-popup {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: fixed;
    background: var(--c-white);
    right: 0.5rem;
    bottom: 0;
    z-index: 9999;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px 15px 15px 15px;
    transition: all .3s ease, opacity .3s ease;
    max-width: 275px;
    opacity: 0 !important;
}

.register-popup.fixed {
    position: fixed;
    z-index: 9999 !important;
}

.register-popup.visible {
    opacity: 1 !important;
}

.register-popup.closed {
    /*    bottom: -280px;*/
    /* bottom: -209px; */
    /* bottom: -376px; */
    bottom: -310px;
    cursor: pointer;
}

.register-popup.closed .register-popup-close {
    display: none;
}

.register-popup-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #868686;
    cursor: pointer;
    transition: all .3s ease;
}

.register-popup-close:hover,
.register-popup-close:focus {
    transform: scale(1.05);

}

.register-popup-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-popup-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    /*    font-size: 2rem;*/
}

.register-popup-header p {
    font-size: 1.4rem;
    max-width: 36ch;
    text-align: center;
}

.register-popup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


@media (max-width: 991px) {
    .register-popup {
        display: flex !important;
        width: 100%;
        right: 0;
        max-width: 100%;
    }

    .register-popup.closed {
        /*        bottom: -268px;*/
        bottom: -198px;
    }

    #back-to-top {
        bottom: 60px;
    }


    #inicio .register-popup.closed {
        display: none !important;
    }
}

/* Tooltip config */
.tooltip-cartao-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
}

.tooltip-inner {
    max-width: 280px !important;
}

/* Form Esqueci minha senha */
.frm-esqueci .float-placeholder {
    transform: translateY(-100%);
}

.cartoes-img img {
    /*    width: 100%;*/
    /*    width: 50%;*/
}

.section.login .logo-mastercard,
.section.ganhadores .logo-mastercard {
    left: inherit !important;
    top: 30px !important;
    right: 32px;
    transform: scale(1.05);
}


/*Adicionar cartão*/
.cartaoAdd {
    margin: auto;
    display: inherit;
}

.cartaoAdd a {
    height: 25px;
    width: 25px;
    text-decoration: none !important;
    position: absolute;
    color: var(--c-blue1);
    background: transparent;
    border-radius: 100px;
    top: 26px;
    right: 20px;
    z-index: 1;
    font-size: 15px;
    line-height: 25px;
    cursor: pointer;
}

.cartaoAdd a:hover {
    color: var(--c-red1);
}

.formulario.cadastrarcartao .vercupom a:hover {
    color: var(--c-black1);
    background: transparent;
}


/*Contador de segundos*/

/* Contador */
#codigo .countdown {
    position: relative;
    top: 0%;
    right: 0%;
    z-index: 9;
    width: 100px;
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
}

#codigo .countdown .digits {
    background: #ffffff !important;
    border-radius: 6px;
    padding-bottom: 0px;
    padding-right: 0px;
    padding-left: 0px;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    /*    box-shadow: 2px 4px 0px 0px rgb(172 196 53);*/
}

span.line {
    position: absolute;
    z-index: 0;
    left: 12.6%;
    top: 43px;
    content: "";
    width: 77.7px;
    height: 1px;
    border: 1px solid #5b5b5b;
}

#codigo .countdown .digits span {
    color: var(--c-blue1);
}

@media (max-width: 991px) {
    #codigo .countdown {
        margin-bottom: 15px;
        margin-top: 5px;
        width: 100%;
    }
}

#codigo .countdown .info {
    font-size: 1.6rem;
    padding: 0px;
    line-height: 100%;
    color: #f3ebda;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 400;
}

#codigo .countdown .digits div {
    font-size: 30px;
    color: #afafaf;
    background: transparent;
    font-family: 'BradescoSans', Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    width: 100px;
    height: 25px;
    line-height: 75%;
    z-index: 1;
    position: relative;
}

/* Aguarde */
@media (max-width: 1200px) and (min-width: 991px) {
    .countdown .row div.m-auto {
        margin: 0 auto 0 0 !important;
    }

    #codigo .countdown .digits div {
        width: 52px;
        height: 52px;
        font-size: 36px;
    }
}


.register-popup .custom-control-label {
    font-size: 1.2rem;
}

.register-popup .custom-control-label a {
    color: var(--c-red1);
}

.btn-outline {
    background: transparent !important;
    color: white !important;
    border: 1px solid white !important;
    z-index: 3;
    transition: all .3s ease;
}

.kv-container {
    position: relative;
    width: 100%;
}
.kv-container .btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem 1.5rem 3rem !important;
    font-size: 2.6rem !important;
    line-height: 3rem !important;
    border: 0px solid white !important;
    position: absolute;
    bottom: 62%;
    right: 5%;
    color: var(--c-red1) !important;
    background: var(--c-white) !important;
}
.kv-container .btn-outline:hover,
.kv-container .btn-outline:focus {
    transform: scale(1.1);
}
@media (max-width: 1200px) {
    .kv-container .btn-outline {
        bottom: 40.7%;
        font-size: 2rem !important;
        line-height: 2rem !important;
    }
}



@media (max-width: 991px) {
    .kv-container .btn-outline {
        top: 43.5%;
        left: 50%;
        transform: translateX(-50%);
        bottom: unset !important;
        font-size: 4rem !important;
        line-height: 4rem !important;
        height: auto !important;
        padding: 12px 8% !important;
    }

    .kv-container .btn-outline:hover,
    .kv-container .btn-outline:focus {
        transform: scale(1.1) translateX(-50%);
    }
}

@media (max-width: 740px) {
    .kv-container .btn-outline {
        top: 42.5%;
        font-size: 3.2rem !important;
        line-height: 3.2rem !important;
    }
}

@media (max-width: 580px) {
    .kv-container .btn-outline {
        top: 41.5%;
        font-size: 2.8rem !important;
        line-height: 2.8rem !important;
        padding: 12px 12% !important;
        white-space: nowrap;
    }
}

@media (max-width: 420px) {
    .kv-container .btn-outline {
        top: 41.5%;
        font-size: 2.2rem !important;
        line-height: 2.2rem !important;
        padding: 8px 8% !important;
        white-space: nowrap;
    }

    .kv-container .btn-outline:hover,
    .kv-container .btn-outline:focus {
        transform: scale(1.05) translateX(-50%);
    }
}

@media (max-width: 320px) {
    .kv-container .btn-outline {
        top: 41%;
        font-size: 2rem !important;
        line-height: 2rem !important;
        padding: 8px 8% !important;
        white-space: nowrap;
    }

    .kv-container .btn-outline:hover,
    .kv-container .btn-outline:focus {
        transform: scale(1.05) translateX(-50%);
    }
}


/* ===== Sessão: Contador + Solicite (desktop + responsivo) ===== */
.section.sessao-contador-solicite {
    position: relative;
    background: var(--c-white);
    font-family: var(--ff-base);
    z-index: 1;
}

/* ===== HERO CONTADOR ===== */
.sessao-contador-solicite .hero-contador {
    position: relative;
    overflow: hidden;
    color: var(--c-white);
    font-family: var(--ff-base);
}

.sessao-contador-solicite .hero-contador .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/background/bkg2_1912.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sessao-contador-solicite .hero-contador .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .62) 100%);
    z-index: 1;
}

.sessao-contador-solicite .hero-contador .padding {
    position: relative;
    z-index: 2;
    padding: 10rem 3rem 10rem 3rem;
}

.sessao-contador-solicite .label-time {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
    margin-bottom: 1.2rem;
    flex-direction: column;
    flex-wrap: nowrap;
}

.sessao-contador-solicite .label-time .ico-clock {
    display: inline-flex;
    width: 32px;
    height: 32px;
}

.sessao-contador-solicite .label-time .label-text {
    font-size: 2.7rem;
    color: var(--c-white);
    margin-bottom: 0;
    font-weight: 700;
    font-family: var(--ff-base);
    letter-spacing: -0.01em;
}

.sessao-contador-solicite h2 {
    margin: 0 !important;
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    max-width: 600px !important;
    color: var(--c-white) !important;
    margin-top: 3rem !important;
    font-weight: 400 !important;
    font-family: var(--ff-base);
    text-align: center;
}

/* Área visual do contador (apenas layout) */
.sessao-contador-solicite .countdown-wrapper {
    margin-top: 2.4rem;
    display: inline-flex;
    flex-direction: column;
    gap: 1.6rem;
    font-family: var(--ff-base);
}

/* Caso o seu componente gere os blocos internos, este CSS irá estilizar via classes genéricas: */
.sessao-contador-solicite .countdown-wrapper .cd-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 1.2rem;
}

.sessao-contador-solicite .countdown-wrapper .cd-item {
    display: grid;
    place-items: center;
    background: var(--c-black1-35, rgba(0, 0, 0, .35));
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 0px;
    padding: 1.6rem 1.2rem;
    color: var(--c-white);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, .06) inset;
    font-family: var(--ff-base);
}

.sessao-contador-solicite .countdown-wrapper .cd-item .cd-num {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--c-white);
    font-family: var(--ff-base);
}

.sessao-contador-solicite .countdown-wrapper .cd-item .cd-lab {
    font-size: 1.2rem;
    color: var(--c-white);
    opacity: .95;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-top: .4rem;
    font-family: var(--ff-base);
    font-weight: 500;
}

.sessao-contador-solicite .countdown-wrapper .periodo {
    margin: 0;
    font-size: 1.4rem;
    color: var(--c-white);
    opacity: .88;
    text-align: center;
    font-family: var(--ff-base);
    font-weight: 400;
}

/* ===== CTA SOLICITE ===== */
.sessao-contador-solicite .cta-solicite {
    position: relative;
    background: var(--c-white);
    padding: 0 3rem;
}

.sessao-contador-solicite .cta-solicite .padding {
    padding: 7rem 3rem 7rem 3rem;
}

.sessao-contador-solicite .cta-solicite .texto-cta {
    text-align: center;
}

.sessao-contador-solicite .cta {
    text-align: left;
}
.sessao-contador-solicite .cta svg {
    top: 3px;
    position: relative;
    margin-left: 7px;
}

.sessao-contador-solicite .cta .btn-solicite {
    background-color: var(--c-red1);
    color: var(--c-white);
    padding: 1.5rem 3rem 1.8rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border: none;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(204, 9, 47, 0.3);
}

.sessao-contador-solicite .cta .btn-solicite:hover {
    background-color: var(--c-redhover);
    color: var(--c-white);
    text-decoration: none;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(204, 9, 47, 0.4);
}

.sessao-contador-solicite .art-cards {
    position: relative;
    margin: 0;
    min-height: 320px;
}

.sessao-contador-solicite .art-cards img {
    display: block;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, .35));
}

.sessao-contador-solicite .texto-cta .titulo {
    font-size: 2.7rem;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0 0 1.6rem 0;
    font-weight: 700;
    color: var(--c-red1);
    text-align: left;
}

.sessao-contador-solicite .texto-cta .texto-cta-p {
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 3rem;
}

.sessao-contador-solicite .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: 1.2rem 2rem;
    border-radius: 1.2rem;
    background: var(--c-black1);
    color: var(--c-white);
    border: 1px solid var(--c-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .20);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .04em;
    font-size: 1.8rem;
    font-family: var(--ff-base);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.sessao-contador-solicite .btn-cta:hover,
.sessao-contador-solicite .btn-cta:focus {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .28);
    background: var(--c-black2);
    color: var(--c-white);
    text-decoration: none;
}

.sessao-contador-solicite .disclaimer {
    margin: 2rem 0 0 0;
    font-size: 1.2rem;
    color: var(--c-black2);
    text-align: center;
    font-family: var(--ff-base);
    text-align: left;
}

/* ===== CARROSSEL DE BANNERS BOOTSTRAP ===== */
.carousel {
    padding: 0;
}

#bannerCarousel {
    position: relative;
}

#bannerCarousel .carousel-inner {
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

#bannerCarousel .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease-in-out;
    opacity: 0;
}

#bannerCarousel .carousel-item.active {
    position: relative;
    opacity: 1;
}

/* Remove as transições laterais padrão do Bootstrap */
#bannerCarousel.carousel-fade .carousel-item {
    transition: opacity 0.6s ease-in-out;
    opacity: 0;
}

#bannerCarousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

#bannerCarousel.carousel-fade .carousel-item-next,
#bannerCarousel.carousel-fade .carousel-item-prev,
#bannerCarousel.carousel-fade .carousel-item-next.carousel-item-left,
#bannerCarousel.carousel-fade .carousel-item-prev.carousel-item-right {
    transform: none;
}

/* Personalização dos indicadores do carrossel */
#bannerCarousel .carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
    margin: 0;
    padding: 0;
    list-style: none;
}

#bannerCarousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    margin: 0;
    opacity: 1;
    text-indent: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#bannerCarousel .carousel-indicators li.active {
    background-color: var(--c-red1);
    border-color: var(--c-red1);
    transform: scale(1.2);
}

#bannerCarousel .carousel-indicators li:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Remove os controles padrão do Bootstrap se necessário */
#bannerCarousel .carousel-control-prev,
#bannerCarousel .carousel-control-next {
    display: none;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1199px) {
    .sessao-contador-solicite h2 {
        font-size: 2.2rem !important;
        max-width: 100% !important;
    }

    .sessao-contador-solicite .countdown-wrapper .cd-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .sessao-contador-solicite .art-cards {
        min-height: inherit!important
        ;
    }
}

@media (max-width: 991px) {
    #bannerCarousel .carousel-indicators {
        bottom: 1.5rem;
        gap: 0.8rem;
    }

    #bannerCarousel .carousel-indicators li {
        width: 10px;
        height: 10px;
    }

    .sessao-contador-solicite .header-section {
        text-align: center;
        display: inline-flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .sessao-contador-solicite .header-section h2 {
        text-align: center !important;
    }

    .sessao-contador-solicite .texto-cta .texto-cta-p {
        text-align: center;
    }

    /* ===== HERO CONTADOR ===== */
    .sessao-contador-solicite .label-time {
        display: inline-flex;
        align-items: center;
        gap: 2rem;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .sessao-contador-solicite .label-time .ico-clock {
        display: inline-flex;
        width: 40px;
        height: 40px;
    }

    .sessao-contador-solicite .label-time .label-text {
        font-size: 2.0rem;
        color: var(--c-white);
        margin-bottom: 0;
        font-weight: 700;
        font-family: var(--ff-base);
        letter-spacing: -0.01em;
    }

    .sessao-contador-solicite .hero-contador .padding {
        padding: 8rem 2rem 7rem 2rem !important;
    }

    .sessao-contador-solicite .hero-contador .hero-contador-align-items-center {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sessao-contador-solicite .art-cards::before,
    .sessao-contador-solicite .art-cards::after {
        left: -3rem;
        width: 420px;
    }

    .sessao-contador-solicite .texto-cta .titulo {
        font-size: 2.7rem;
        text-align: center;
    }

    /* ===== CTA SOLICITE ===== */
    .sessao-contador-solicite .art-cards img {
        margin-top: 0;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 767px) {
    .sessao-contador-solicite h2 {
        font-size: 1.8rem !important;
    }

    .sessao-contador-solicite .countdown-wrapper .cd-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .8rem;
    }

    .sessao-contador-solicite .countdown-wrapper .cd-item .cd-num {
        font-size: 2.2rem;
    }

    .sessao-contador-solicite .cta {
        text-align: center;
        margin-bottom: 4rem;
    }

    .sessao-contador-solicite .cta-solicite {
        padding: 5rem 1.5rem;
        text-align: center;
    }

    .sessao-contador-solicite .cta-solicite .padding {
        padding: 0 !important;
    }

    .sessao-contador-solicite .texto-cta .titulo {
        margin-top: 1rem;
        text-align: center;
    }

    .sessao-contador-solicite .art-cards::before,
    .sessao-contador-solicite .art-cards::after {
        display: none;
    }
}

@media (max-width: 479px) {
    .sessao-contador-solicite .label-time .label-text {
        font-size: 1.6rem;
    }

    .sessao-contador-solicite .countdown-wrapper .cd-item {
        padding: 1rem 0.5rem;
    }

    .sessao-contador-solicite .countdown-wrapper .cd-item .cd-num {
        font-size: 1.5rem;
    }
}
