* {
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f8f8f8;
}

.modal .total .subtotal, [data-page=sorteio] #cotas .carrinho .total .subtotal {
    color: #526469;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.modal .total .preco, [data-page=sorteio] #cotas .carrinho .titulo, [data-page=sorteio] #cotas .carrinho .total .preco {
    color: #043a4a;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.modal button.btn.comprar,
.modal input {
    height: 50px;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out
}

.modal .modal-content {
    border: 0;
    border-radius: 20px
}

.modal .card-header {
    background: 0 0;
    border: 0;
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid #d2d2d2
}

.modal .cotas_selecionadas {
    display: flex;
    flex-wrap: wrap;
    padding: 0
}

.modal .cotas_selecionadas .cota-tag {
    font-size: 14px;
    width: 50px;
    height: 30px
}

.modal .titulo {
    color: #043a4a;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase
}

.modal .desc {
    color: #526469;
    font-size: 16px;
    font-weight: 500
}

.modal button.btn.comprar {
    background-color: #16d457;
    color: #fff
}
.modal form{
    position:relative;
}
.modal button.btn.comprar, footer .newsletter button {
    top: 0;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    right: 0;
}

.modal input {
    width: 100%;
    border: 2px solid #16d457;
    border-radius: 100px;
    background-color: transparent;
    padding: 0 20px;
    transition: .2s ease-in-out
}

.modal input:focus {
    box-shadow: none;
    border: 2px solid #fccf69
}

.modal button.btn.comprar {
    border-radius: 100px !important;
    transition: .2s ease-in-out
}

.modal button.btn.comprar:hover {
    background-color: #fccf69;
    color: #043a4a !important
}

.modal {
    z-index: 99999;
}

.loader {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
   
    z-index: 99999;

    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.loader.loaded {
    z-index: -999;
}

.loader::before {
    position: absolute;
    content: '';

    top: 0;
    left: 0;

    width: 50%;
    height: 100%;

    background-color: #fff;
    z-index: -1;

    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.loader::after {
    position: absolute;
    content: '';

    top: 0;
    right: 0;

    width: 50%;
    height: 100%;

    background-color: #fff;    
    z-index: -1;

    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.loader.loaded::before {
    width: 0;
    box-shadow: 10px 0 100px rgba(0, 0, 0, .1);
}
.loader.loaded::after {
    width: 0;
    box-shadow: -10px 0 100px rgba(0, 0, 0, .1);
}

.loader .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    
    background-image: url('../img/loader.gif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 80px; 
    
    z-index: 1;

    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.loader.loaded .icon {
    transform: scale(1.5);
    opacity: 0;
}


.b-lazy {
    opacity:0;
    transform: scale(0.95);
    transition: all 500ms;
}

.b-loaded {
    opacity:1;
    transform: scale(1);
}




/* Header */
header .navbar>.container {
    display: initial;
}

header .navbar {
    padding: 20px 0;

    background-color: #ebebeb;

    z-index: 9999;
    overflow: hidden;

    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;    
}

header .navbar.scrolling {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(1, 66, 88, .15);
}

header .navbar .logo {
    width: 100%;
    max-width: 160px;
    height: auto;
}
header .navbar.scrolling .logo {
    width: 100%;
    max-width: 85px;
}

header .navbar .logo img{
    display: block;
    width: 100%;
    height: 100%;
}

header .navbar ul.navbar-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    width: 100%;

    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;   
}

header .navbar ul.navbar-nav li.item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;

    margin-right: 30px;
}

header .navbar ul.navbar-nav li.item a{
    position: relative;

    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 5px;
    
    color: #6a820a;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;   
}
header .navbar ul.navbar-nav li.item a::after {
    position: absolute;
    content: '';

    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;

    width: 6px;
    height: 6px;

    background-color: #6a820a;
    border-radius: 10px;
    transform: scale(0);
    opacity: 0;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
header .navbar ul.navbar-nav li.item:hover a::after {
    transform: scale(1);
    opacity: 1;
}
header .navbar ul.navbar-nav li.item:hover a {
    color: #014258;
}


header .navbar ul.navbar-nav li.item-btn{
    margin-left: auto;
}
header .navbar ul.navbar-nav li.item-btn a{
    position: relative;

    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 5px;
    
    color: #6a820a;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;   
}
header .navbar ul.navbar-nav li.item-btn a::after {
    position: absolute;
    content: '';

    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;

    width: 6px;
    height: 6px;

    background-color: #6a820a;
    border-radius: 10px;
    transform: scale(0);
    opacity: 0;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
header .navbar ul.navbar-nav li.item-btn:hover a::after {
    transform: scale(1);
    opacity: 1;
}
header .navbar ul.navbar-nav li.item-btn:hover a {
    color: #f15a29;
}




/* Navbar Mobile */
.menu-mobile {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    background-color: #e5e5e5;

    padding: 7.5px 0;
    z-index: 9999;
}

.menu-mobile .links {
    display: flex;
    justify-content: space-around;
    align-items: center;

    padding: 0;
    margin: 0;
    list-style: none;
}

.menu-mobile .links .item a {
    text-decoration: none;
    text-align: center;
}
.menu-mobile .links .item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 25px;
    margin: auto;
    margin-bottom: 5px;
}
.menu-mobile .links .item .icon svg {
    fill: #758E3A;
    width: 100%;
    height: 100%;
}
.menu-mobile .links .item span {
    display: flex;

    color: #014258;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}




/* Banner */
#banner .image {
    width: 100%;
    height: auto;
}
#banner .image img {
    width: 100%;
    height: auto;
}




/* Section title */
h1.section-title {
    color: #6a820a;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 35px;
}




/* Como funciona */
#como-funciona {
    padding: 40px 0;
}
#como-funciona .titulo {
    color: #043a4a;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}
#como-funciona .timeline {
    background-color: #ebebeb;
    padding: 40px;
    border-radius: 20px;
}
#como-funciona .timeline .header {
    position: relative;

    display: flex;
    align-items: center;

    z-index: 0;
}
#como-funciona .timeline .header::before {
    position: absolute;
    content: '';

    top: 0;
    left: 15%;
    bottom: 0;

    margin: auto;

    width: calc(100% - 30%);
    height: 0px;
    border-top: 3.5px dashed #9db93b;

    z-index: -1;
}

#como-funciona .timeline .header .icon {
    position: relative;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 22.2222%;
    height: 90px;
    padding: 0;

    z-index: 0;
}
#como-funciona .timeline .header .icon:nth-child(2) {
    width: 33.3333%;
}
#como-funciona .timeline .header .icon svg {
    width: auto;
    height: 100%;

    background-color: #ebebeb;
    border: 10px solid #ebebeb;
}

#como-funciona .timeline .content {
    display: flex;
    align-items: center;
}

#como-funciona .timeline .passo {
    width: 22.2222%;
    margin-top: 5px;
}
#como-funciona .timeline .passo:nth-child(2) {
    width: 33.3333%;
}
#como-funciona .timeline .titulo {
    color: #014258;
    font-size: 24px;
    font-weight: 800;
    text-transform: none;
    
    max-width: 300px;
    margin: 0 auto;
}
#como-funciona .timeline .desc {
    color: #707070;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    max-width: 185px;

    margin: 0 auto;
}




/* Sorteios */
[data-page="home"] #sorteios {
    padding: 40px 0;
}
[data-page="home"] #sorteios h1.section-title {
    padding-bottom: 30px;
}
[data-page="home"] #sorteios .card-sorteio {
    position: relative;
    border: 1px solid #000;
    border-radius: 18px;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="home"] #sorteios .card-sorteio:hover {
    border-color: #6a820a;
    /* box-shadow: 0 0 0 1px #6a820a; */
    box-shadow: 0 10px 30px rgba(106, 130, 10, .2);
}
[data-page="home"] #sorteios .card-sorteio h2.status-sorteio {
    position: absolute;

    top: -30px;
    left: 0;
    right: 0;

    color: #014258;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}
[data-page="home"] #sorteios .card-sorteio[data-status="andamento"] h2.status-sorteio {
    color: #a40505;
}
[data-page="home"] #sorteios .card-sorteio .card-sorteio-header {
    position: relative;
}
[data-page="home"] #sorteios .card-sorteio .card-sorteio-header .image {
    position: relative;
    width: 100%;
    padding-bottom: 65.99235269126441%;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    overflow: hidden;
}
[data-page="home"] #sorteios .card-sorteio .card-sorteio-header .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="home"] #sorteios .card-sorteio:hover .card-sorteio-header .image img {
    transform: scale(1.25);
    filter: brightness(1.15);
}
[data-page="home"] #sorteios .card-sorteio .card-sorteio-header h1.name {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-align: center;

    z-index: 1;
}
[data-page="home"] #sorteios .card-sorteio[data-status="andamento"] .card-sorteio-content {
    padding: 25px 25px 25px 35px;
}
[data-page="home"] #sorteios .card-sorteio[data-status="andamento"] .card-sorteio-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
[data-page="home"] #sorteios .card-sorteio[data-status="andamento"] .card-sorteio-content ul li {
    position: relative;

    color: #000;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;

    margin-bottom: 15px;
}
[data-page="home"] #sorteios .card-sorteio[data-status="andamento"] .card-sorteio-content ul li::before {
    position: absolute;
    content: '';
    
    top: 10px;
    left: -10px;
    
    width: 3px;
    height: 3px;
    
    background-color: #6a820a;
    border-radius: 6px;
}
[data-page="home"] #sorteios .card-sorteio[data-status="andamento"] .card-sorteio-content .selo {
    margin-bottom: 15px;
}
[data-page="home"] #sorteios .card-sorteio[data-status="andamento"] .card-sorteio-content .selo h4 {
    color: #000;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
[data-page="home"] #sorteios .card-sorteio[data-status="andamento"] .card-sorteio-content .selo img {
    width: 100%;
    max-width: 145px;
    height: auto;
    
    -o-object-position: left center;
    object-position: left center;
}
[data-page="home"] #sorteios .card-sorteio[data-status="andamento"] .card-sorteio-content .botao-comprar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    
    width: 100%;
    height: 45px;
    
    background-color: #6a820a;
    border-radius: 100px;

    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
[data-page="home"] #sorteios .card-sorteio[data-status="andamento"] .card-sorteio-content .botao-comprar .price {
    border: .5px solid #fff;
    border-radius: 5px;
    padding: 0 7.5px;

    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

[data-page="home"] #sorteios .card-sorteio[data-status="breve"] {
    height: 100%;
}
[data-page="home"] #sorteios .card-sorteio[data-status="breve"] .card-sorteio-content {
    position: relative;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
}
[data-page="home"] #sorteios .card-sorteio[data-status="breve"] .card-sorteio-content .image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 565px;
}
[data-page="home"] #sorteios .card-sorteio[data-status="breve"] .card-sorteio-content .image::after {
    position: absolute;
    content: '';
    
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    
    background: #cccccc;
    mix-blend-mode: multiply;
    border-radius: 18px;
    
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="home"] #sorteios .card-sorteio[data-status="breve"]:hover .card-sorteio-content .image::after {
    opacity: 0;
}
[data-page="home"] #sorteios .card-sorteio[data-status="breve"] .card-sorteio-content .image img {
    position: absolute;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="home"] #sorteios .card-sorteio[data-status="breve"]:hover .card-sorteio-content .image img {
    transform: scale(1.1);
}
[data-page="home"] #sorteios .card-sorteio[data-status="breve"] .card-sorteio-content .botao-premio {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    height: 45px;
    
    background-color: #f15a29;
    border-radius: 100px;
    
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="home"] #sorteios .card-sorteio[data-status="breve"]:hover .card-sorteio-content .botao-premio {
    background-color: #6a820a;
}




/* Contato */
[data-page="home"] #contato {
    padding: 40px 0;
    background-color: #f1f2f2;
}

[data-page="home"] #contato form {
    position: relative;
    z-index: 1;
}
[data-page="home"] #contato form input,
[data-page="home"] #contato form textarea {
    width: 100%;
    height: 35px;
    padding: 10px;

    border: 1px solid #dadada;
    border-radius: 5px;

    color: #000;
    font-size: 14px;

    margin-bottom: 15px;

    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
[data-page="home"] #contato form textarea {
    min-height: 100px;
    margin-bottom: 0;
}

[data-page="home"] #contato form input:hover,
[data-page="home"] #contato form textarea:hover {
    border-color: #014258;
}
[data-page="home"] #contato form input:focus,
[data-page="home"] #contato form textarea:focus {
    outline: none;
    border-color: #6a820a;
    filter: drop-shadow(0 5px 20px rgba(106, 130, 10, .15));

    box-shadow: 0 0 0 1px #6a820a;
}

[data-page="home"] #contato button.botao {
    padding: 0 25px;
    height: 45px;
    
    margin: 5px auto 0 auto;

    background-color: #6a820a;
    border-radius: 0 0 15px 15px;
    border: none;
    outline: none;

    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="home"] #contato button.botao:hover {
    background-color: #f15a29;
    box-shadow: 0 5px 20px rgba(241, 90, 41, .25);
}




/* Regulamento */
[data-page="sorteio"] #regulamento {
    padding: 6px 0 45px 0;
}
[data-page="sorteio"] #regulamento a.botao-regulamento {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: fit-content;
    height: 60px;
    padding: 0 60px;

    background-color: #f15a29;
    border-radius: 0  0 20px 20px;
    
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    
    margin: auto;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="sorteio"] #regulamento a.botao-regulamento:hover {
    background-color: #6a820a;
    box-shadow: 0 5px 20px rgba(106, 130, 10, .25);
}




/* Progress cotas */
[data-page="sorteio"] #progress-cotas {
    padding: 0;

    background-image: repeating-linear-gradient(0deg, #ebebeb, #ebebeb 1px, #f9f9f9 1px, #f9f9f9 4px);
    background-size: 100px;
}
[data-page="sorteio"] #progress-cotas .card-progress{
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 15px 40px;
    background-color: #ebebeb;
    border-radius: 15px;
}
[data-page="sorteio"] #progress-cotas .card-progress h1.title {
    position: absolute;

    top: 30px;
    left: calc(150px);

    color: #014258;
    font-size: 16px;
    font-weight: 500;
}

[data-page="sorteio"] #progress-cotas .card-progress .icon {
    position: relative;
    z-index: 0;
}
[data-page="sorteio"] #progress-cotas .card-progress .icon svg{
    display: block;
    width: 92px;
    height: auto;
}
[data-page="sorteio"] #progress-cotas .card-progress .icon::after {
    position: absolute;    
    content: '';

    top: 0;
    bottom: 0;
    right: -25px;

    width: 30px;
    height: 13px;

    background-color: #c4161c;
    margin-top: auto;
    margin-bottom: 20px;

    z-index: -1;
}
[data-page="sorteio"] #progress-cotas .card-progress .progress {
    position: relative;
    width: 100%;
    margin-top: 25px;
    border-radius: 100px;
    background-color: #e6e6e6;
    background: -moz-linear-gradient(90deg, rgba(196,22,28,1) 0%, rgba(248,111,0,1) 15%, rgba(250,204,34,1) 50%, rgba(182,203,97,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(196,22,28,1) 0%, rgba(248,111,0,1) 15%, rgba(250,204,34,1) 50%, rgba(182,203,97,1) 100%);
    background: linear-gradient(90deg, rgba(196,22,28,1) 0%, rgba(248,111,0,1) 15%, rgba(250,204,34,1) 50%, rgba(182,203,97,1) 100%);
    height: 13px;
    padding: 0;
    overflow: unset;
  }
  [data-page="sorteio"] #progress-cotas .card-progress .progress .progress-bar {
    position: relative;
    padding-right: 10px;
    background-color: transparent;
    border-radius: 100px;
    min-width: 30px;
    
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: end;

    z-index: 0;
  }
  [data-page="sorteio"] #progress-cotas .card-progress .progress .progress-bar::before {
    position: absolute;
    content: '';
    
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;
    
    background: #c4161c;
  
    z-index: -1;
  }
  
  [data-page="sorteio"] #progress-cotas .card-progress .progress .text-meta {
    position: absolute;
    
    top: -20px;
    left: 0;
    
    color: #014258;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
  }
  
  [data-page="sorteio"] #progress-cotas .card-progress .progress .start {
    position: absolute;
    
    top: 17px;
    left: 5px;
    
    color: #c4161c;
    font-size: 14px;
    font-weight: 700;
  }
  [data-page="sorteio"] #progress-cotas .card-progress .progress .meta {
    position: absolute;
    
    top: 17px;
    
    color: #014258;
    font-size: 14px;
    font-weight: 700;
  }
  [data-page="sorteio"] #progress-cotas .card-progress .progress .finish {
    position: absolute;
    
    top: 17px;
    left: calc(100% - 40px);
    
    color: #6a820a;
    font-size: 14px;
    font-weight: 700;
    text-align: right;
    width: fit-content;
  }




/* Cotas */
[data-page="sorteio"] #cotas {
    padding: 40px 0;
}
[data-page="sorteio"] #cotas .card-cotas {
    background-color: #e1e1e1;
    padding: 30px 180px;
}
[data-page="sorteio"] #cotas .card-cotas h1.title {
    color: #014258;
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 25px 0;
}
[data-page="sorteio"] #cotas .card-cotas .add-btn {
    position: relative;
    background-color: #014258;
    padding: 30px 0;
    border: none;
    border-radius: 13px;
    outline: none;
    
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="sorteio"] #cotas .card-cotas .add-btn.popular {
    box-shadow: 0 0 0 #f15a29;
    animation: pulse 1s infinite ease;
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #f15a29;
        box-shadow: 0 0 0 0 #f15a29;
    }
    50% {
        -moz-box-shadow: 0 0 0 5px #f15a29;
        box-shadow: 0 0 0 5px #f15a29;
    }
    100% {
        -moz-box-shadow: 0 0 0 0 #f15a29;
        box-shadow: 0 0 0 0 #f15a29;
    }
}
[data-page="sorteio"] #cotas .card-cotas .add-btn.popular::before {
    position: absolute;
    content: 'Mais popular';

    top: 0;
    left: 0;
    right: 0;

    width: fit-content;
    padding: 3px 15px;

    background-color: #f15a29;
    border-radius: 0 0 10px 10px;

    color: #f1f2f2;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="sorteio"] #cotas .card-cotas .add-btn:hover {
    background-color: #6a820a;
    filter: drop-shadow(0 5px 30px rgba(106, 130, 10, .4));
    transform: scale(1.04);
}
[data-page="sorteio"] #cotas .card-cotas .add-btn h3 {
    color: #f1f2f2;
    font-size: 65px;
    font-weight: 700;
    line-height: 70px;
    margin: 0;
}
[data-page="sorteio"] #cotas .card-cotas .add-btn span {
    color: #f1f2f2;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}
[data-page="sorteio"] #cotas .card-cotas .input-group {
    display: flex;
    align-items: center;
    margin-top: 35px;
}
[data-page="sorteio"] #cotas .card-cotas .decrement-btn,
[data-page="sorteio"] #cotas .card-cotas .increment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 35px;
    height: 35px;

    background: #f15a29;
    border: none;
    border-radius: 100px;
    outline: none;
    
    color: #fff;
    font-size: 30px;
    line-height: 0;
    
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="sorteio"] #cotas .card-cotas .decrement-btn:hover,
[data-page="sorteio"] #cotas .card-cotas .increment-btn:hover {
    background-color: #6a820a;
}
[data-page="sorteio"] #cotas .card-cotas .decrement-btn:focus,
[data-page="sorteio"] #cotas .card-cotas .increment-btn:focus {
    box-shadow: none;
}
[data-page="sorteio"] #cotas .card-cotas input#quantidade-tickets {
    height: 50px;
    
    background-color: transparent;
    border: 2px solid #f15a29;
    border-radius: 100px;
    margin: 0 20px;

    color: #014258;
    font-size: 32px;
    font-weight: 700;
    
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="sorteio"] #cotas .card-cotas input#quantidade-tickets:hover {
    border-color: #014258;
}
[data-page="sorteio"] #cotas .card-cotas input#quantidade-tickets:focus {
    border-color: #6a820a;
    box-shadow: none;
}
[data-page="sorteio"] #cotas .card-cotas-header .botao-numeros {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    
    margin-bottom: 15px;
    background-color: #6a820a;
    padding: 15px;
    border-radius: 20px 20px 0 0;
    
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    text-decoration: none;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="sorteio"] #cotas .card-cotas-header .botao-numeros:hover {
    background-color: #f15a29;
    box-shadow: 0 5px 20px rgba(241, 90, 41, .25);
}
[data-page="sorteio"] #cotas .card-cotas-header .botao-numeros .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 24px;
    height: 24px;
}
[data-page="sorteio"] #cotas .card-cotas-header .botao-numeros .icon svg {
    display: block;
    fill: #fff;
    width: 100%;
    height: 100%;
}
[data-page="sorteio"] #cotas .card-cotas-footer .botao-participar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    
    margin-top: 15px;
    background-color: #6a820a;
    padding: 15px;
    border-radius: 0 0 20px 20px;
    
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    text-decoration: none;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
[data-page="sorteio"] #cotas .card-cotas-footer .botao-participar:hover {
    background-color: #f15a29;
    box-shadow: 0 5px 20px rgba(241, 90, 41, .25);
}
[data-page="sorteio"] #cotas .card-cotas-footer .botao-participar .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 24px;
    height: 24px;
}
[data-page="sorteio"] #cotas .card-cotas-footer .botao-participar .icon svg {
    display: block;
    fill: #fff;
    width: 100%;
    height: 100%;
}




/* Maiores cotistas */
[data-page="sorteio"] #maiores-cotistas {
    padding: 40px 0;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    
    background-color: #e1e1e1;
    padding: 35px;
    border-radius: 20px;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas h1.title {
    color: #6a820a;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 50px;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-ranking {
    width: 100%;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-ranking ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-ranking ul li {
    display: flex;
    align-items: center;
    gap: 30px;
    
    background-color: #c2c2c2;
    padding: 5px 50px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    margin-top: 7.5px;    
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-ranking ul li:nth-child(1) {
    background-color: #b1b3b6;
    margin-top: 0;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-ranking ul li span {
    color: #014258;
    font-size: 24px;
    font-weight: 700; 
    margin: 0;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-ranking ul li span.cotas {
    width: fit-content;
    white-space: nowrap;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-ranking ul li span.ganhador {
    /* width: 40%; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-premiacao {
    width: 50%;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-premiacao ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-premiacao ul li {
    display: flex;
    align-items: center;
    gap: 30px;
    
    background-color: #c2c2c2;
    padding: 5px 50px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    margin-top: 7.5px;    
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-premiacao ul li:nth-child(1) {
    background-color: #b1b3b6;
    margin-top: 0;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-premiacao ul li span {
    color: #014258;
    font-size: 24px;
    font-weight: 700; 
    margin: 0;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-premiacao ul li span.cotas {
    width: fit-content;
    white-space: nowrap;
}
[data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-premiacao ul li span.ganhador {
    /* width: 40%; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}




/* Footer */
footer {
    position: relative;
    padding: 40px 0 0 0;
    background-color: #f1f2f2;
    z-index: 0;
}
[data-page="home"] footer::before {
    position: absolute;
    content: '';
    top: -100%;
    left: 0;

    width: 100%;
    height: 200%;

    background: url('../img/logo.svg');
    background-repeat: no-repeat;
    background-position: -85px calc(100% + 150px);
    background-size: 75%;
    filter: grayscale(1);
    opacity: .04;

    z-index: -1;
}

footer .logo {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
footer .logo img {
    width: 100%;
    max-width: 370px;
    height: 100%;
}
footer p.desc {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}
footer ul.redes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    
    padding: 0;
    margin: 0;
    list-style: none;
}
footer ul.redes li a.icon {
    position: relative;
    display: block;
    width: 55px;
    height: 55px;
    padding: 13px;
    border: 3px solid #6a820a;
    border-radius: 55px;
    
    z-index: 0;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
footer ul.redes li a.icon:hover {
    border-width: 0;
}
footer ul.redes li a.icon::before {
    position: absolute;
    content: '';

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    transform: scale(.5);
    border-radius: 100px;
    
    z-index: -1;
    
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
footer ul.redes li a.icon:hover::before {
    opacity: 1;
    transform: scale(1);
}
footer ul.redes li a.icon[rel="Facebook"]::before,
footer ul.redes li a.icon[rel="Facebook"]:hover {
    background-color: #1877f2;
}
footer ul.redes li a.icon[rel="Instagram"]::before{
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
    opacity: 0;
    transform: scale(.5);    
}
footer ul.redes li a.icon[rel="Instagram"]:hover::before,
footer ul.redes li a.icon[rel="Instagram"]:hover {
    opacity: 1;
    transform: scale(1);
}
footer ul.redes li a.icon[rel="Telegram"]::before,
footer ul.redes li a.icon[rel="WhatsApp"]::before,
footer ul.redes li a.icon[rel="WhatsApp"]:hover {
    background-color: #25d366;
}
footer ul.redes li a.icon[rel="Telegram"]::before,
footer ul.redes li a.icon[rel="Telegram"]:hover {
    background-color: #0088cc;
}
footer ul.redes li a.icon[rel="Email"]::before,
footer ul.redes li a.icon[rel="Email"]:hover {
    background-color: #014258;
}
footer ul.redes li a.icon svg {
    display: block;
    fill: #6a820a;
    width: 100%;
    height: 100%;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
footer ul.redes li a.icon:hover svg {
    fill: #fff;
}

footer .copyright {
    margin-top: 40px;
    padding: 40px 0;
    padding-bottom: 30px;
    background-color: #014258;
}
footer .copyright p {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}




/* Responsivo */
@media (max-width:992px) {
    /* loader */
    .loader::before {
        top: 0;
        left: 0;
    
        width: 100%;
        height: 50%;
    }
    .loader::after {
        top: unset;
        bottom: 0;
        left: 0;
        right: unset;
    
        width: 100%;
        height: 50%;
    }
    .loader.loaded::before {
        width: 100%;
        height: 0;
        box-shadow: 0 10px 100px rgba(0, 0, 0, .1);
    }
    .loader.loaded::after {
        width: 100%;
        height: 0;
        box-shadow: 0 -10px 100px rgba(0, 0, 0, .1);
    }




    /* Navbar */
    header .navbar .logo {
        max-width: 125px;
    }
    header .navbar.scrolling .logo {
        margin: 0 auto;
    }





    /* Banner */
    #banner .sorteio {
        padding: 20px 0;
    }
    #banner .sorteio h1.title {
        color: #014258;
        font-size: 42px;
        font-weight: 700;
        text-align: center;
        line-height: 42px;
        margin: 0 0 20px 0;
    }
    #banner .sorteio img {
        width: 100%;
        height: 47px;

        -o-object-position: center;
        object-position: center;
        -o-object-fit: contain;
        object-fit: contain;
    }
    #banner .sorteio .botao-comprar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        
        width: fit-content;
        max-width: 100%;
        height: 60px;
        padding: 0 50px;
        background-color: #6a820a;
        border-radius: 100px;
        
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        margin: 30px auto 0 auto;
    }
    #banner .sorteio .botao-regulamento {
        display: block;
        color: #014258;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        margin: 10px 0 0 0;
    }




    /* Como Funciona */
    #como-funciona .swiperAjuda {
        position: relative;
        background-color: #ebebeb;
        border-radius: 30px;
    }
    #como-funciona .swiperAjuda::before {
        position: absolute;
        content: '';
        top: 90px;
        left: 0;
        margin: auto;
        width: 100%;
        height: 0px;
        border-top: 3.5px dashed #9db93b;
        z-index: -1;
    }
    
    #como-funciona .swiperAjuda .card-timeline {
        padding: 30px;
    }
    #como-funciona .swiperAjuda .card-timeline .icon {
        display: flex;
        justify-content: center;
        align-items: center;

        width: 130px;
        height: 130px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
    }
    #como-funciona .swiperAjuda .card-timeline .icon svg {
        width: auto;
        height: 100%;
        background-color: #ebebeb;
        border: 20px solid #ebebeb;
    }
    #como-funciona .swiperAjuda .card-timeline .titulo {
        color: #014258;
        font-size: 26px;
        font-weight: 800;
        text-align: center;
        margin-bottom: 10px;
    }
    #como-funciona .swiperAjuda .card-timeline .titulo.small {
        font-size: 22px;
    }
    #como-funciona .swiperAjuda .card-timeline .desc {
        color: #707070;
        font-size: 18px;
        font-weight: 500;
        margin: 0;
        text-align: center;
    }

    #como-funciona .finger-horizontal {
        position: absolute;
        top: 5%;
        right: 5%;
        width: 45px;
        z-index: 999 !important
    }

    #como-funciona .finger-horizontal svg .finger {
        fill: #6A8338;
        animation: 3s infinite forwards animhFinger
    }
    
    #como-funciona .finger-horizontal svg .finger-bg {
        fill: #ebebeb;
        animation: 3s infinite forwards animhFinger
    }

    @keyframes animhFinger {
        0%, 50%, to { transform: translateX(-5px) }
        25%, 75% { transform: translateX(5px) }
    }

    #como-funciona .finger-horizontal svg .arrow-left {
        fill: #A7A9AC;
        animation: 3s infinite forwards animArrowLeft
    }

    @keyframes animArrowLeft {
        0%, 50%, to { opacity: 1 }
        25%, 75% { opacity: 0 }
    }

    #como-funciona .finger-horizontal svg .arrow-right {
        fill: #A7A9AC;
        animation: 3s infinite forwards animArrowRight
    }

    @keyframes animArrowRight {
        0%, 50%, to { opacity: 0 }
        25%, 75% { opacity: 1 }
    }




    /* Sorteios */
    #sorteios .swiperSorteios .swiper-slide {
        height: auto;
    }
    #sorteios .card-sorteio {
        margin-top: 50px;
    }
    [data-page="home"] #sorteios .card-sorteio[data-status="breve"] {
        height: calc(100% - 50px);
    }
    [data-page="home"] #sorteios .card-sorteio:hover {
        box-shadow: none;
    }

    [data-page="home"] #sorteios .card-sorteio .card-sorteio-title {
        display: flex;
    }
    [data-page="home"] #sorteios .card-sorteio h2.status-sorteio {
        top: -45px;
        font-size: 22px;
        text-align: left;
    }
    [data-page="home"] #sorteios .card-sorteio .card-sorteio-title .finger-horizontal {
        position: absolute;
        top: -50px;
        right: 0;
        width: 45px;
        z-index: 999 !important
    }

    [data-page="home"] #sorteios .card-sorteio .card-sorteio-title .finger-horizontal svg .finger {
        fill: #6A8338;
        animation: 3s infinite forwards animhFinger
    }
    
    [data-page="home"] #sorteios .card-sorteio .card-sorteio-title .finger-horizontal svg .finger-bg {
        fill: #fff;
        animation: 3s infinite forwards animhFinger
    }

    @keyframes animhFinger {
        0%, 50%, to { transform: translateX(-5px) }
        25%, 75% { transform: translateX(5px) }
    }

    [data-page="home"] #sorteios .card-sorteio .card-sorteio-title .finger-horizontal svg .arrow-left {
        fill: #A7A9AC;
        animation: 3s infinite forwards animArrowLeft
    }

    @keyframes animArrowLeft {
        0%, 50%, to { opacity: 1 }
        25%, 75% { opacity: 0 }
    }

    [data-page="home"] #sorteios .card-sorteio .card-sorteio-title .finger-horizontal svg .arrow-right {
        fill: #A7A9AC;
        animation: 3s infinite forwards animArrowRight
    }

    @keyframes animArrowRight {
        0%, 50%, to { opacity: 0 }
        25%, 75% { opacity: 1 }
    }




    /* Contato */
    [data-page="home"] #contato button.botao {
        margin: 5px 0 0 auto;
    }




    /* Regulamento */
    [data-page="sorteio"] #regulamento a.botao-regulamento {
        width: 100%;
        font-size: 22px;
    }




    /* Progresso cota */
    [data-page="sorteio"] #progress-cotas h1.title {
        color: #014258;
        font-size: 16px;
        font-weight: 500;
    }
    [data-page="sorteio"] #progress-cotas .card-progress {
        padding: 15px;
    }
    [data-page="sorteio"] #progress-cotas .card-progress h1.title {
        top: 25px;
        left: 100px;
    }
    [data-page="sorteio"] #progress-cotas .card-progress .icon svg {
        width: 70px;
    }
    [data-page="sorteio"] #progress-cotas .card-progress .icon::after {
        bottom: -8px;
        height: 20px;
    }
    [data-page="sorteio"] #progress-cotas .card-progress .progress {
        margin-top: 16px;
        height: 20px;
    }
    [data-page="sorteio"] #progress-cotas .card-progress .progress .start,
    [data-page="sorteio"] #progress-cotas .card-progress .progress .meta,
    [data-page="sorteio"] #progress-cotas .card-progress .progress .finish {
        top: 24px;
        font-size: 12px;
    }




    /* Cotas */
    [data-page="sorteio"] #cotas .card-cotas-header .botao-numeros {
        font-size: 18px;
    }
    [data-page="sorteio"] #cotas .card-cotas {
        padding: 15px;
    }
    [data-page="sorteio"] #cotas .card-cotas .add-btn {
        padding: 15px;
        height: 100%;
    }
    [data-page="sorteio"] #cotas .card-cotas .add-btn.popular {
        padding: 25px 15px 15px;
    }
    [data-page="sorteio"] #cotas .card-cotas .add-btn.popular::before {
        font-size: 10px;
        padding: 2px 10px;
        border-radius: 0 0 5px 5px;
    }
    [data-page="sorteio"] #cotas .card-cotas .add-btn h3 {
        font-size: 42px;
        line-height: 42px;
        margin-bottom: -5px;
    }
    [data-page="sorteio"] #cotas .card-cotas .add-btn span {
        font-size: 14px;
    }
    [data-page="sorteio"] #cotas .card-cotas-footer .botao-participar {
        font-size: 18px;
    }




    /* Maiores cotistas */
    [data-page="sorteio"] #maiores-cotistas .card-cotistas {
        display: block;
        padding: 15px;
    }
    [data-page="sorteio"] #maiores-cotistas .card-cotistas h1.title {
        padding: 0 20px;
        font-size: 22px;
        text-align: left;
    }
    [data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-ranking ul li {
        gap: 10px;
        border-radius: 100px;
        padding: 5px 20px;
    }
    [data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-ranking ul li span {
        font-size: 16px;
    }
    [data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-premiacao {
        width: 100%;
        margin-top: 30px;
    }
    [data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-premiacao ul li {
        gap: 10px;
        border-radius: 100px;
        padding: 5px 20px;
    }
    [data-page="sorteio"] #maiores-cotistas .card-cotistas .card-cotistas-premiacao ul li span {
        font-size: 16px;
    }




    /* Footer */
    [data-page="home"] footer::before {
        top: -25%;
        background-position: 50% 0px;
        background-size: 200%;
        height: 100%;
    }
    footer .copyright {
        padding: 40px 0 100px 0;
        padding-bottom: 30px;
    }
}