.u-text-center {
  text-align: center !important;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

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

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInUpClose {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.5;
  }
}

@-o-keyframes fadeInUpClose {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.5;
  }
}

@keyframes fadeInUpClose {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.5;
  }
}

.modal-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 5, 21, 0.85);
  z-index: 999!important;
}

.modal-bg.active {
  display: block;
  -webkit-animation: fade 300ms;
  -o-animation: fade 300ms;
  animation: fade 300ms;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.popup-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(46, 5, 21, 0.85);
  z-index: 1000;
}

.popup-bg.active {
  display: block;
}

.popup-close {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 28px;
  cursor: pointer;
  z-index: 999999;
  display: none;
}

@media (max-width: 767px) {
  .popup-close {
    padding: 20px;
  }
}

.popup-close.active {
  display: block;
}

.popup {
  display: none !important;
  position: fixed;
  top: calc(50vh - (403px / 2));
  left: calc(50vw - (630px / 2));
  z-index: 1100;
  width: 100% !important;
  height: 100% !important;
  max-width: 630px !important;
  max-height: 403px !important;
  border-width: 0;
  display: inline-block;
  background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/img/textura-1440-768.png);
  -webkit-box-shadow: 0 2px 12px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 12px 4px rgba(0, 0, 0, 0.2);
}

.popup.active {
  display: block !important;
}

@media (max-width: 767px) {
  .popup {
    background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/img/textura-767-480.png);
    top: calc(50vh - (477px / 2));
    left: calc(50vw - (458px / 2));
    max-width: 458px !important;
    max-height: 477px !important;
  }
}

@media (max-width: 479px) {
  .popup {
    background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/img/textura-320.png);
    top: calc(50vh - (540px / 2));
    left: calc(50vw - (300px / 2));
    max-width: 300px !important;
    -webkit-background-size: cover;
    background-size: cover;
    max-height: 540px !important;
  }
}

.popup .popup__wrapper {
  padding: 35px 30px;
  text-align: center;
}

@media (max-width: 767px) {
  .popup .popup__wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 479px) {
  .popup .popup__wrapper {
    padding: 50px 20px;
  }
}

.popup .popup__wrapper .popup__title {
  max-width: 236px;
  margin: 0 auto 28px;
  color: #4e0923;
  font-family: 'Bradesco Sans Bold', sans-serif;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  position: relative;
}

@media (max-width: 767px) {
  .popup .popup__wrapper .popup__title {
    font-size: 18px;
    margin: 0 auto 21px;
  }
}

@media (max-width: 479px) {
  .popup .popup__wrapper .popup__title {
    font-size: 18px;
  }
}

.popup .popup__wrapper .popup__title:after {
  content: '';
  background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/brush-title.svg);
  width: 100%;
  height: 8px;
  left: 0;
  bottom: -8px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-background-size: contain;
  background-size: contain;
}

.popup .popup__wrapper .popup__description {
  max-width: 520px;
  color: #4e0923;
  font-family: 'Bradesco Sans Medium', sans-serif;
  font-size: 14px;
  line-height: 18px;
  margin: 0 auto 20px;
}

@media (max-width: 767px) {
  .popup .popup__wrapper .popup__description {
    max-width: 389px;
    margin: 0 auto 18px;
    font-size: 13px;
    line-height: 17px;
  }

  .popup .popup__wrapper .popup__description br {
    display: none;
  }
}

@media (max-width: 479px) {
  .popup .popup__wrapper .popup__description {
    max-width: 100%;
    margin: 0 auto 12px;
    line-height: 18px;
  }
}

.popup .popup__wrapper .popup__subtitle {
  max-width: 356px;
  margin: 0 auto 4px;
  color: #4e0923;
  font-family: 'Bradesco Sans Bold', sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .popup .popup__wrapper .popup__subtitle {
    font-size: 15px;
    line-height: 18px;
  }
}

.popup .popup__wrapper .popup__description--bigger {
  max-width: 530px;
  margin: 0 auto 20px;
  color: #4e0923;
  font-family: 'Bradesco Sans Regular', sans-serif;
  font-size: 14px;
  line-height: 18px;
}

@media (max-width: 767px) {
  .popup .popup__wrapper .popup__description--bigger {
    max-width: 320px;
    font-size: 14px;
    line-height: 17px;
  }
}

@media (max-width: 479px) {
  .popup .popup__wrapper .popup__description--bigger {
    max-width: 246px;
  }
}

.popup .popup__wrapper .popup__description--bigger strong {
  font-family: 'Bradesco Sans Bold', sans-serif !important;
}

.popup .popup__wrapper .drawdates__wrapper {
  margin: 0 auto 10px;
}

.popup .popup__wrapper .drawdates__wrapper .drawdates__carousel {
  max-width: 480px;
  margin: 0 auto;
}

.popup .popup__wrapper .drawdates__wrapper .drawdates__carousel .slick-dots li {
  margin: 0px 2px;
  width: 10px;
  height: 10px;
}

.popup .popup__wrapper .drawdates__wrapper .drawdates__carousel .slick-dots li button:before {
  font-size: 8px;
  color: #7c5a5a;
}

@media (max-width: 767px) {
  .popup .popup__wrapper .drawdates__wrapper .drawdates__carousel {
    max-width: 300px;
    margin: 0 auto 45px;
  }
}

@media (max-width: 479px) {
  .popup .popup__wrapper .drawdates__wrapper .drawdates__carousel {
    margin: 0 auto 45px;
  }
}

.popup .popup__wrapper .drawdates__wrapper .draw {
  width: 132px;
  display: inline-block;
  padding-bottom: 15px;
}

.popup .popup__wrapper .drawdates__wrapper .draw.inactive {
  position: relative;
}

.popup .popup__wrapper .drawdates__wrapper .draw.inactive:before {
  content: 'O  ganhador pode ser voc\EA!';
  position: absolute;
  top: 50px;
  left: 14px;
  height: 82px;
  width: 136px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/img/textura-winner.png);
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  text-transform: uppercase;
  color: #fcfbf8;
  font-family: 'Bradesco Sans Bold', sans-serif;
  font-size: 12px;
  z-index: 1;
  padding: 23px 10px;
  -webkit-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  -o-transform: rotate(-6deg);
  transform: rotate(-6deg);
}

@media (max-width: 767px) {
  .popup .popup__wrapper .drawdates__wrapper .draw.inactive:before {
    left: 8px;
    top: 55px;
  }
}

@media (max-width: 479px) {
  .popup .popup__wrapper .drawdates__wrapper .draw.inactive:before {
    left: 65px;
  }
}

.popup .popup__wrapper .drawdates__wrapper .draw.inactive .ilustration {
  opacity: 0.4;
}

.popup .popup__wrapper .drawdates__wrapper .draw.inactive .winner-name,
.popup .popup__wrapper .drawdates__wrapper .draw.inactive .winner-location {
  display: none;
}

.winner {
  background: #E1173F!important;
}

.popup .popup__wrapper .drawdates__wrapper .draw h6.drawname {
  color: #674c4c;
  font-family: 'Bradesco Sans Bold', sans-serif;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
}

.popup .popup__wrapper .drawdates__wrapper .draw h5.drawdate {
  color: #cc092f;
  background: -webkit-linear-gradient(35deg, #cc092f 40%, #B81570 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Bradesco Sans Medium', sans-serif;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
}

.popup .popup__wrapper .drawdates__wrapper .draw .ilustration {
  margin: 10px auto;
  position: relative;
  max-width: 120px;
}

.popup .popup__wrapper .drawdates__wrapper .draw .ilustration:after {
  content: '';
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/brush-title.svg);
  width: 100%;
  height: 8px;
  left: 0;
  bottom: -5px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: left center;
}

.popup .popup__wrapper .drawdates__wrapper .draw .ilustration .trator {
  width: 46px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .popup .popup__wrapper .drawdates__wrapper .draw .ilustration .trator {
    width: 60px;
  }
}

.popup .popup__wrapper .drawdates__wrapper .draw .winner-name {
  font-family: 'Bradesco Sans Bold', sans-serif;
  color: #4e0923;
  font-size: 16px;
  line-height: 20px;
}

.popup .popup__wrapper .drawdates__wrapper .draw .winner-location {
  font-family: 'Bradesco Sans Medium', sans-serif;
  font-size: 12px;
  color: #4e0923;
}

.popup .popup__wrapper .popup__rules {
  max-width: 310px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

@media (max-width: 767px) {
  .popup .popup__wrapper .popup__rules {
    font-size: 13px;
    line-height: 18px;
  }
}

@media (max-width: 479px) {
  .popup .popup__wrapper .popup__rules {
    max-width: 190px;
    font-size: 13px;
  }
}

.popup .popup__wrapper .popup__rules a {
  color: #674c4c;
  font-family: 'Bradesco Sans Medium', sans-serif;
}

.popup .popup__wrapper .popup__rules a:hover {
  font-family: 'Bradesco Sans Bold', sans-serif;
}

.modal-close {
  position: fixed;
  top: calc(45vh - (520px/2));
  right: calc(50vw - (960px/2));
  padding: 24px;
  cursor: pointer;
  opacity: 0.5;
  z-index: 999999;
  display: none;
}

.modal-close.active {
  display: block;
  -webkit-animation: fadeInUpClose 1.2s;
  -o-animation: fadeInUpClose 1.2s;
  animation: fadeInUpClose 1.2s;
}

.modal-close::before {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal-close img {
  position: relative;
}

/* @media (max-width: 1279px) {
  .modal-close {
    top: calc(50vh - (630px/2));
    right: calc(50vw - (720px/2));
  }
} */

@media (max-width: 1024px) {
  .modal-close {
    top: 0;
    right: 0;
  }
}

body {
  margin: 0;
  padding: 0;
}

body.overflow-hidden {
  overflow: hidden;
}

body.overflow-hidden .mainContent:after {
  content: '';
  width: 100vw;
  height: 100vh;
  /* background-color: #bf0123; */
  opacity: 0.7;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 4;
}

section.mainContent {
  overflow-x: hidden;
  background-color: #bf0123;
  /* background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/css/img/bg.jpg); */
}

section.mainContent.promocaoagro .row>.voltar {
  display: none;
}

section.mainContent.promocaoagro * {
  font-family: 'Bradesco Sans Regular', sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  
}

section.mainContent.promocaoagro h1,
section.mainContent.promocaoagro h2,
section.mainContent.promocaoagro h3,
section.mainContent.promocaoagro h4,
section.mainContent.promocaoagro h5,
section.mainContent.promocaoagro h6,
section.mainContent.promocaoagro strong {
  font-weight: normal;
}

section.mainContent.promocaoagro .clearfix:before,
section.mainContent.promocaoagro .clearfix:after {
  content: '';
  display: table;
}

section.mainContent.promocaoagro .clearfix:after {
  clear: both;
}

section.mainContent.promocaoagro .overflow-x-auto {
  overflow: auto;
}

section.mainContent.promocaoagro .overflow-hidden {
  overflow: hidden;
}

section.mainContent.promocaoagro .como-funciona {
  /* background-color: #bf0123; */
  text-align: center;
  font-family: 'Bradesco Sans', sans-serif;
  position: relative;
  margin-top: 100px;
}

@media (min-width: 1023px) {

  section.mainContent.promocaoagro .como-funciona {
    margin-top: 0;
  }

  section.mainContent.promocaoagro .como-funciona:before {
    content: '';
    display: block;
    background-color: transparent;
    width: 100%;
    height: 80px;
    margin-top: -80px;
  }
}

section.mainContent.promocaoagro .como-funciona .chances {
  text-align: center;
  padding-bottom: 0px;
  padding-top: 1px;
}

section.mainContent.promocaoagro .como-funciona .chances img {
  position: absolute;
  top: 420px;
  left: 0px;
  width: 120px;
}
@media (min-width: 300px){
  #duvidas-frequentes{
    margin-top: 277px 
  }
  #iFrameResizer0{
    min-height: 207px !important;
  }
}
@media (min-width: 1023px){
  #iFrameResizer0{
    min-height: 450px !important;
  }
  #duvidas-frequentes{
    margin-top: 35%;
  }
}
@media (max-width: 1023px) {
 
  section.mainContent.promocaoagro .como-funciona .chances img {
    display: none;
  }
}

section.mainContent.promocaoagro .como-funciona .chances h2 {
  color: #fff;
  text-transform: uppercase;
  font-family: 'Bradesco Sans Bold';
  font-size: 58px;
  line-height: 85px;
  position: relative;
  margin: 0 auto;
  z-index: 2;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  
  section.mainContent.promocaoagro .como-funciona .chances h2 {
    margin-top: -110px;
  }
}
@media (max-width: 767px) {
  section.mainContent.promocaoagro .como-funciona .chances h2 {
    max-width: 450px;
    padding-top: 70px;
  }
}

@media (max-width: 639px) {
  section.mainContent.promocaoagro .como-funciona .chances h2 {
    max-width: 416px;
    padding-top: 60px;
    line-height: 36px;
  }
}

@media (max-width: 479px) {
  section.mainContent.promocaoagro .como-funciona .chances h2 {
    max-width: calc(100% - 64px);
  }
}

section.mainContent.promocaoagro .como-funciona .chances p {
  color: #fcfbf8;
  font-family: 'Bradesco Sans Medium', sans-serif;
  font-size: 17px;
  line-height: 20px;
  text-align: center;
  padding: 12px 0 20px 0;
  max-width: 583px;
  margin: 0 auto;
}

section.mainContent.promocaoagro .como-funciona .chances p strong {
  font-family: 'Bradesco Sans Bold', sans-serif;
}

@media (max-width: 767px) {
  section.mainContent.promocaoagro .como-funciona .chances p {
    max-width: 450px;
  }
}

@media (max-width: 639px) {
  section.mainContent.promocaoagro .como-funciona .chances p {
    max-width: 416px;
  }
}

@media (max-width: 479px) {
  section.mainContent.promocaoagro .como-funciona .chances p {
    max-width: calc(100% - 64px);
  }
}

section.mainContent.promocaoagro .como-funciona .draws {
  background: #E1173F;
  height: 530px;
  width: 70%;
  margin: 0 auto;
  border-radius: 5px;
  margin-top: 60px;
}

@media (max-width: 1279px) {
  section.mainContent.promocaoagro .como-funciona .draws {
    -webkit-background-size: cover;
    background-size: cover;
  }
}

section.mainContent.promocaoagro .como-funciona .draws .regulamento {
  font-size: 14px;
  font-weight: 500;
  font-family: 'Bradesco Sans Medium', sans-serif;
  color: #FFF;
  background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/icon-regulamento-branco.svg);
  -webkit-background-size: 18px 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center right;
  padding-right: 18px;
}
section.mainContent.promocaoagro .como-funciona .draws .regulamento:hover {
  font-family: 'Bradesco Sans Bold', sans-serif;
  color: #FFF;
}

section.mainContent.promocaoagro .como-funciona .draws h3 {
  font-family: 'Bradesco Sans Bold', sans-serif;
  font-size: 24px;
  line-height: 30px;
  color: #FFF;
  background: #FFF;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 60px;
  padding-bottom: 60px;
}

section.mainContent.promocaoagro .como-funciona .draws .trators {
  display: inline-block;
  /* padding: 37px 37px 46px; */
  padding-right: \0;
  position: relative;
  overflow: hidden;
}

section.mainContent.promocaoagro .como-funciona .draws .trators .trator-ref {
  opacity: 1;
  width: 200px;
}

section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content {
  position: relative;
  /* opacity: 0; */
}

section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content .trator-main {
  position: absolute;
  width: 100%;
  height: 100%;
  left: -12px;
}

section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content .trator-main .trator-base {
  width: 100%;
  position: absolute;
  /* z-index: 1; */
}

section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content .trator-main .trator-base img {
  width: 206px;
  height: auto;
}

section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content .trator-main .trator-wheel-back {
  width: 60px;
  position: absolute;
  left: 50%;
  bottom: 13px;
  margin-left: -69px;
  z-index: 2;
}

section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content .trator-main .trator-wheel-back img {
  width: 100%;
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content .trator-main .trator-wheel-back {
    margin-left: -84px;
  }
}

section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content .trator-main .trator-wheel-front {
  width: 48px;
  position: absolute;
  right: 50%;
  bottom: 13px;
  margin-right: -91px;
  z-index: 2;
}

section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content .trator-main .trator-wheel-front img {
  width: 100%;
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content .trator-main .trator-wheel-front {
    margin-right: -76px;
  }
}

section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content .trator-main .trator-shadow {
  width: 200px;
  position: absolute;
  z-index: 1;
  bottom: 12px;
  left: 50%;
  margin-left: -85px;
}

section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content .trator-main .trator-shadow img {
  width: 100%;
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .como-funciona .draws .trators .trator-content .trator-main .trator-shadow {
    margin-left: -100px;
  }
}

section.mainContent.promocaoagro .como-funciona .draws .trators .circle-number {
  position: absolute;
  right: 55px;
  top: 57px;
  /* opacity: 0; */
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .como-funciona .draws .trators .circle-number {
    right: 50%;
    margin-right: -47px;
  }
}

section.mainContent.promocaoagro .como-funciona .draws .trators h4 {
  color: #FFF;
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'Bradesco Sans Bold', sans-serif;
  line-height: 24px;
  padding-top: 26px;
}

section.mainContent.promocaoagro .como-funciona .draws .trators span {
  color: #3D2E97;
  background: #3D2E97;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  font-family: 'Bradesco Sans Medium', sans-serif;
}

section.mainContent.promocaoagro .como-funciona .draws .trators p {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  padding-top: 16px;
  font-family: 'Bradesco Sans Medium', sans-serif;
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .como-funciona .chances {
    background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/img/textura-bg-sorteios-top.png);
  }

  section.mainContent.promocaoagro .como-funciona .draws {
    height: 563px;
  }

  section.mainContent.promocaoagro .como-funciona .chances h2 {
    font-size: 32px;
  }

  section.mainContent.promocaoagro .como-funciona .draws h3 {
    font-size: 20px;
  }

  section.mainContent.promocaoagro .como-funciona .draws-caroussel {
    max-width: 500px;
  }

  section.mainContent.promocaoagro .como-funciona .trators {
    padding: 37px 0px 50px !important;
  }

  section.mainContent.promocaoagro .como-funciona .draws img {
    margin: 0 auto;
  }

  section.mainContent.promocaoagro .como-funciona .draws p {
    padding-top: 70px;
  }

  section.mainContent.promocaoagro .como-funciona .slick-list {
    height: 340px;
  }

  section.mainContent.promocaoagro .como-funciona .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: .75;
  }

  section.mainContent.promocaoagro .como-funciona .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\2022";
    width: 20px;
    height: 20px;
    font-family: slick;
    font-size: 10px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    opacity: .25;
  }

  section.mainContent.promocaoagro .como-funciona .slick-dots {
    bottom: -40px;
  }

  section.mainContent.promocaoagro .como-funciona .slick-dots li {
    margin: 1px;
  }
}

@media (max-width: 767px) {
  section.mainContent.promocaoagro .como-funciona .chances {
    background-image: none;
  }

  section.mainContent.promocaoagro .como-funciona .draws {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: -311px;
  }
}

@media (max-width: 320px) {
  section.mainContent.promocaoagro .como-funciona .chances {
    background-position: center;
  }

  section.mainContent.promocaoagro .como-funciona .chances h2 {
    padding: 40px 0px 0px 0px;
    max-width: 256px;
  }

  section.mainContent.promocaoagro .como-funciona .draws h3 {
    padding: 48px 16px 0 16px;
    line-height: 24px;
  }
}


section.mainContent.promocaoagro .draws-caroussel {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  justify-content: space-evenly;
}

section.mainContent.promocaoagro .descadastro {
  line-height: 0;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

section.mainContent.promocaoagro .descadastro iframe {
  background-color: transparent;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
}

section.mainContent.promocaoagro .duvidas-frequentes {
  padding: 80px 94px;
  color: #fcfbf8;
  background-size: cover;
  background-repeat: no-repeat;  
  width: 70%;
  margin: 0 auto;
  background: transparent url('https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/css/img/Modulo2/BG.png') 0% 0% no-repeat padding-box;
  border-radius: 4px;
  opacity: 1;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: #E1173F;
}

section.mainContent.promocaoagro .duvidas-frequentes:before {
  content: '';
  background: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/grafismo-4.svg) no-repeat;
  background-repeat: no-repeat;
  height: 380px;
  width: 130px;
  display: block;
  position: absolute;
  left: -300px;
}

section.mainContent.promocaoagro .duvidas-frequentes:after {
  content: '';
  background: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/grafismo-6.svg) no-repeat;
  background-repeat: no-repeat;
  height: 233px;
  width: 91px;
  display: block;
  position: absolute;
  right: 0;
  background-position: center;
  background-size: cover;
  right: -190px;
  bottom: 540px
}

section.mainContent.promocaoagro .duvidas-frequentes .section-title {
  text-align: center;
  font-family: 'Bradesco Sans Bold', sans-serif;
  font-size: 32px;
  line-height: 36px;
  text-transform: uppercase;
  width: 100%;
  max-width: 349px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 76px;
}

@media (max-width: 768px) {
  section.mainContent.promocaoagro .duvidas-frequentes .section-title:after {
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
  }
}

section.mainContent.promocaoagro .duvidas-frequentes .section-list-container {
  margin: 0 auto;
  overflow: hidden;
  max-width: 760px;
}

section.mainContent.promocaoagro .duvidas-frequentes .section-list-container .section-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

section.mainContent.promocaoagro .duvidas-frequentes .section-list-container .section-list[data-questions-content] {
  display: none;
  margin: 0;
  padding: 0;
}

section.mainContent.promocaoagro .duvidas-frequentes .section-list-container .section-list [data-collapse-content] {
  display: none;
}

section.mainContent.promocaoagro .duvidas-frequentes .section-list-container .section-list .list-item {
  margin: 0;
  padding: 34px 0px 28px;
  border-bottom: 1px solid #999999;
}

section.mainContent.promocaoagro .duvidas-frequentes .item-heading {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  padding-right: 30px;
  position: relative;
}

section.mainContent.promocaoagro .duvidas-frequentes .item-heading:after {
  background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  width: 27px;
  height: 27px;
}

section.mainContent.promocaoagro .duvidas-frequentes .collapse-is-open .item-heading:after {
  background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/arrowclose.svg);
  background-position: center center;
  background-repeat: no-repeat;
}

section.mainContent.promocaoagro .duvidas-frequentes .item-heading span {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  font-family: 'Bradesco Sans Bold', sans-serif;
  line-height: 24px;
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
}

section.mainContent.promocaoagro .duvidas-frequentes .item-description,
section.mainContent.promocaoagro .duvidas-frequentes .item-description-ul {
  font-family: 'Bradesco Sans Medium', sans-serif;
  font-size: 15px;
  line-height: 20px;
}

section.mainContent.promocaoagro .duvidas-frequentes .item-description {
  padding-top: 19px;
}

section.mainContent.promocaoagro .duvidas-frequentes .item-description strong {
  font-family: 'Bradesco Sans Bold', sans-serif;
}

section.mainContent.promocaoagro .duvidas-frequentes .item-description a {
  color: inherit;
  text-decoration: underline;
}

section.mainContent.promocaoagro .duvidas-frequentes .item-description a:hover {
  text-decoration: none;
}

section.mainContent.promocaoagro .duvidas-frequentes .item-description .item-description .item-description a .item-list {
  list-style: disc;
}

section.mainContent.promocaoagro .duvidas-frequentes .item-list li {
  color: #cacaca;
  font-family: 'Bradesco Sans Regular', sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 16px;
  padding-top: 8px;
}

section.mainContent.promocaoagro .duvidas-frequentes .table-faq {
  /* border-collapse: separate; */
  border-spacing: 0 15px;
  margin-top: 20px;
  table-layout: fixed;
  text-align: center;
  width: 100%;
  border: 1px solid #fff;
}

section.mainContent.promocaoagro .duvidas-frequentes .table-faq tr {
  height: 36px;
}

section.mainContent.promocaoagro .duvidas-frequentes .table-faq th {
  /* background-color: #ffffff;
  color: rgba(44,29,19,0.7); */
  font-family: 'Bradesco Sans Bold', sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  min-width: 100px;
  border-bottom: 1px solid #fff;
  text-transform: uppercase;
  font-weight: 300;
}

section.mainContent.promocaoagro .duvidas-frequentes .table-faq th span {
  display: block;
  margin: auto;
  max-width: 80%;
  width: 100%;
}

section.mainContent.promocaoagro .duvidas-frequentes .table-faq th:first-child {
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  padding: 15px 0px 15px 15px;
}

section.mainContent.promocaoagro .duvidas-frequentes .table-faq th:last-child {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  padding: 15px 15px 15px 0px;
}

section.mainContent.promocaoagro .duvidas-frequentes .table-faq td {
  color: #eff2fa;
  font-family: 'Bradesco Sans Regular', sans-serif;
  font-weight: normal;
  font-size: 15px;
  line-height: 20px;
  padding: 16px 5px 17px;
  border-right: 1px solid #fff;
}

section.mainContent.promocaoagro .duvidas-frequentes .section-link {
  color: #fcfbf8;
  font-family: 'Bradesco Sans Bold', sans-serif;
  line-height: 24px;
  font-size: 20px;
  text-align: center;
  display: block;
  padding-top: 50px;
}

section.mainContent.promocaoagro .duvidas-frequentes .section-link:hover {
  text-decoration: none;
}

@media (max-width: 1279px) {
  section.mainContent.promocaoagro .duvidas-frequentes {
    background-image: none;
  }
}

@media (max-width: 767px) {
  section.mainContent.promocaoagro .duvidas-frequentes {
    padding: 100px 15px 80px 15px;
  }

  section.mainContent.promocaoagro .duvidas-frequentes .section-title {
    font-size: 26px;
    line-height: 32px;
    max-width: 160px;
    margin-bottom: 40px;
  }
}

section.mainContent.promocaoagro .section-pagination {
  margin-top: 48px;
  display: inline-block;
  list-style: none;
}

section.mainContent.promocaoagro .section-pagination ul {
  padding: 0;
  margin: 0;
}

section.mainContent.promocaoagro .section-pagination li {
  display: inline-block;
  margin-right: 6px;
}

section.mainContent.promocaoagro .section-pagination li:last-child {
  margin-right: 0;
}

section.mainContent.promocaoagro .section-pagination li.disabled {
  display: none;
}

section.mainContent.promocaoagro .section-pagination li.active span,
section.mainContent.promocaoagro .section-pagination li:hover a {
  color: #2c1d13;
  background-color: #FCFBF8;
}

section.mainContent.promocaoagro .section-pagination a,
section.mainContent.promocaoagro .section-pagination span {
  color: #FCFBF8;
  font-family: 'Bradesco Sans Medium', sans-serif;
  height: 36px;
  width: 36px;
  border: 1px solid #fcfbf8;
  display: inline-block;
  padding: 8px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 100ms;
  -o-transition: all 100ms;
  transition: all 100ms;
  line-height: 1;
  text-decoration: none;
}

section.mainContent.promocaoagro .footer {  
  padding: 60px 0;
  margin-top: -1px;
  width: 70%;
  margin: 0px auto 60px;
  border-start-start-radius: 4px;
  background: transparent url('https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/css/img/Modulo2/BG.png') 0% 0% no-repeat padding-box;
  opacity: 1;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .footer {
    padding-top: 0;
  }
}

@media (max-width: 639px) {
  section.mainContent.promocaoagro .footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

section.mainContent.promocaoagro .footer p {
  color: #fcfbf8;
  font-family: 'Bradesco Sans Medium', sans-serif;
  font-size: 13px;
  line-height: 18px;
  max-width: 760px;
  margin: 0 auto;
  text-align: justify;
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .footer p {
    max-width: 580px;
  }
}

section.mainContent.promocaoagro .footer a {
  color: inherit;
}

section.mainContent.promocaoagro .footer a:hover {
  text-decoration: none;
}

section.mainContent.promocaoagro .ganhadores {
  min-height: 658px;
  position: relative;
  /* background: rgb(204,9,47); */
  /* background: linear-gradient(180deg, rgba(204,9,47,1) 0%, rgba(157,13,33,1) 49%); */
  background-repeat: no-repeat;
  background-position: 0 26px, 100% calc(100% - 68px), center center;
  height: 90px;
  width: 70%;
  margin: 70px auto;
  border-radius: 5px;
}
section.mainContent.promocaoagro .como-funciona .draws::before {
  content: '';
  position: absolute;
  bottom: 175px;
  right: 1px;
  width: 170px;
  height: 340px;
  background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/grafismo-7.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  display: none;
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .ganhadores {
    /* background-color: #4e0923;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#4e0923), to(#2e0515));
    background-image: -webkit-linear-gradient(top, #4e0923 0%, #2e0515 100%);
    background-image: -o-linear-gradient(top, #4e0923 0%, #2e0515 100%);
    background-image: linear-gradient(180deg, #4e0923 0%, #2e0515 100%); */
    background-position: center center;
    min-height: 658px;
  }
}

section.mainContent.promocaoagro .ganhadores::after {
  content: '';
  position: absolute;
  bottom: -185px;
  right: -197px;
  width: 170px;
  height: 340px;
  background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/grafismo-5.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

@media (max-width: 1023px) {

  section.mainContent.promocaoagro .ganhadores::before,
  section.mainContent.promocaoagro .ganhadores::after {
    content: none;
  }
}

section.mainContent.promocaoagro .ganhadores iframe {
  background-color: transparent;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
}

section.mainContent.promocaoagro .ganhadores .loader {
  background-color: transparent;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .ganhadores .loader {
    background-color: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

section.mainContent.promocaoagro .header .motion {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

section.mainContent.promocaoagro .header .motion .logo {
  max-width: 245.18px;
  position: absolute;
  left: 137px;
  top: 55px;
}

@media (max-width: 1279px) {
  section.mainContent.promocaoagro .header .motion .logo {
    left: 40px;
  }
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .header .motion .logo {
    left: 40px;
  }
}

@media (max-width: 767px) {
  section.mainContent.promocaoagro .header .motion .logo {
    max-width: 208.89px;
    left: 50%;
    top: 171px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

section.mainContent.promocaoagro .header .motion .logo img {
  width: 100%;
  height: auto;
}

section.mainContent.promocaoagro .header .content-container {
  padding-top: 0px;
  padding-left: 135px;
  position: relative;
  visibility: hidden;
}

@media (max-width: 1279px) {
  section.mainContent.promocaoagro .header .content-container {
    padding-left: 40px;
  }
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .header .content-container {
    padding-top: 60px;
    padding-left: 0px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  section.mainContent.promocaoagro .header .content-container {
    padding-top: 48px;
    /* padding-left: 0px;
    text-align: center; */
  }
}

section.mainContent.promocaoagro .header .campaign-logo {
  max-width: 245.18px;
}

@media (max-width: 767px) {
  section.mainContent.promocaoagro .header .campaign-logo {
    max-width: 208.89px;
  }
}

section.mainContent.promocaoagro .header .section-title,
section.mainContent.promocaoagro .header .section-text {
  color: #fff6e6;
}

section.mainContent.promocaoagro .header .section-title {
  margin-top: 38px;
  margin-left: 37px;
  max-width: 296px;
  font-family: 'Bradesco Sans Bold', sans-serif;
  font-size: 24px;
  line-height: 30px;
}

@media (max-width: 767px) {
  section.mainContent.promocaoagro .header .section-title {
    margin: 0px 0px;
    padding-top: 301px;
    max-width: 100%;
    font-size: 20px;
    line-height: 24px;
    padding-left: 0px;
  }
}

@media (max-width: 639px) {
  section.mainContent.promocaoagro .header .section-title {
    max-width: 320px;
    padding-top: 242px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  section.mainContent.promocaoagro .header .section-title {
    max-width: 256px;
  }
}

section.mainContent.promocaoagro .header .section-text {
  margin-top: 8px;
  margin-left: 37px;
  max-width: 280px;
  font-family: 'Bradesco Sans Medium', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-style: normal;
}

@media (max-width: 767px) {
  section.mainContent.promocaoagro .header .section-text {
    margin: 8px 0px 0;
    max-width: 100%;
    padding-left: 0px;
  }
}

@media (max-width: 639px) {
  section.mainContent.promocaoagro .header .section-text {
    max-width: 320px;
    margin: 12px auto 0;
  }
}

@media (max-width: 480px) {
  section.mainContent.promocaoagro .header .section-text {
    max-width: 256px;
  }
}

section.mainContent.promocaoagro .header .btn-participe {
  display: block;
  margin-top: 32px;
  margin-left: 37px;
  background: none;
  border: none;
  font-size: 0px;
  background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/img/conheca.png);
  -webkit-background-size: 324px auto;
  background-size: 324px auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 324px;
  height: 60px;
  cursor: pointer;
}

@media (max-width: 767px) {
  section.mainContent.promocaoagro .header .btn-participe {
    margin: 32px auto 0px auto !important;
    width: 252px;
    height: 47px;
    -webkit-background-size: 100% 100%;
    background-size: 100%;
  }
}

section.mainContent.promocaoagro .menu-nav {
  background-color: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  top: 0;
  padding: 23px 150px 23px 0;
  z-index: 2;
  position: relative;
  text-align: right;
  background: linear-gradient(180deg, rgba(204,9,47,1) 0%, rgba(157,13,33,1) 49%);
  z-index: 11;
  position: fixed;
}

section.mainContent.promocaoagro .menu-nav img {
  float: left;
  margin-left: 180px;
  width: 120px;
}



section.mainContent.promocaoagro .menu-nav-item {
  color: #FFF;
  display: inline-block;
  font-family: 'Bradesco Sans Medium', sans-serif;
  font-size: 13px;
  line-height: 18px;
  margin-right: 31px;
  /* text-transform: uppercase; */
  text-decoration: none;
  position: relative;
  /* opacity: 0; */
}

section.mainContent.promocaoagro .menu-nav-item:last-child {
  margin-right: 0;
}

section.mainContent.promocaoagro .menu-nav-item:before {
  display: block;
  content: attr(title);
  font-family: 'Bradesco Sans Bold', sans-serif;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

section.mainContent.promocaoagro .menu-nav-item:hover {
  font-family: 'Bradesco Sans Bold', sans-serif;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.mainContent.promocaoagro .menu-nav-item.external-link {
  background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/icon-regulamento-branco.svg);
  -webkit-background-size: 18px 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center right;
  padding-right: 18px;
}

section.mainContent.promocaoagro .menu-nav-item.external-link:hover:after {
  content: none;
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .menu-nav {
    background-color: #bf0123;
    height: 100vh;
    position: absolute;
    padding: 0;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    -o-transform: translateX(-150%);
    transform: translateX(-150%);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: -o-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease, -o-transform 0.4s ease;
    top: 0;
    width: 252px;
    z-index: 5;
    left: 0;
  }

  section.mainContent.promocaoagro .menu-nav-bar {
    height: 55px;
  }

  section.mainContent.promocaoagro .menu-nav.opened {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    left: 0;
  }

  section.mainContent.promocaoagro .menu-nav.opened .menu-nav-bar {
    height: 136px;
  }

  section.mainContent.promocaoagro .menu-bar {
    background-color: transparent;
    height: 55px;
    position: absolute;
    top: 0;
    width: 100%;
  }

  section.mainContent.promocaoagro .menu-open {
    background-color: transparent;
    cursor: pointer;
    height: 19px;
    left: 23px;
    top: 64px;
    padding: 0px;
    position: absolute;
    width: 24px;
    z-index: 7;
    visibility: hidden;
  }

  section.mainContent.promocaoagro .menu-open span {
    background-color: #f3f3f3;
    content: '';
    display: block;
    height: 2px;
    width: 100%;
  }

  section.mainContent.promocaoagro .menu-open span {
    margin-top: 0px;
  }

  section.mainContent.promocaoagro .menu-open span:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    -o-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    animation-direction: reverse;
  }

  section.mainContent.promocaoagro .menu-open span:nth-child(2) {
    margin: 4px 0;
    -webkit-animation: outM 0.8s backwards;
    -o-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    animation-direction: reverse;
  }

  section.mainContent.promocaoagro .menu-open span:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    -o-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    animation-direction: reverse;
  }

  section.mainContent.promocaoagro .menu-open.active span {
    background-color: #f3f3f3;
  }

  section.mainContent.promocaoagro .menu-open.active span:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    -o-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
  }

  section.mainContent.promocaoagro .menu-open.active span:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    -o-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
  }

  section.mainContent.promocaoagro .menu-open.active span:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    -o-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
  }

  section.mainContent.promocaoagro .menu-nav-item {
    color: #ffffff;
    display: block;
    font-family: 'Bradesco Sans Medium', sans-serif;
    font-size: 14px;
    line-height: 18px;
    margin-right: 0;
    padding: 24px 35px 0;
    text-align: left;
    opacity: 0.68;
    text-transform: uppercase;
  }

  section.mainContent.promocaoagro .menu-nav-item:after {
    display: none;
  }

  section.mainContent.promocaoagro .menu-nav-item:hover {
    opacity: 1;
    font-family: 'Bradesco Sans Bold', sans-serif;
  }

  section.mainContent.promocaoagro .menu-nav-item.external-link {
    background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/icon-regulamento-branco.svg);
    background-position: 143px 25px;
  }

  @-webkit-keyframes inM {
    50% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }

  @-o-keyframes inM {
    50% {
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }

  @keyframes inM {
    50% {
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }

  @-webkit-keyframes outM {
    50% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }

  @-o-keyframes outM {
    50% {
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }

  @keyframes outM {
    50% {
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }

  @-webkit-keyframes inT {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      -webkit-transform: translateY(6px) rotate(0deg);
      transform: translateY(6px) rotate(0deg);
    }

    100% {
      -webkit-transform: translateY(6px) rotate(135deg);
      transform: translateY(6px) rotate(135deg);
    }
  }

  @-o-keyframes inT {
    0% {
      -o-transform: translateY(0px) rotate(0deg);
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      -o-transform: translateY(6px) rotate(0deg);
      transform: translateY(6px) rotate(0deg);
    }

    100% {
      -o-transform: translateY(6px) rotate(135deg);
      transform: translateY(6px) rotate(135deg);
    }
  }

  @keyframes inT {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
      -o-transform: translateY(0px) rotate(0deg);
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      -webkit-transform: translateY(6px) rotate(0deg);
      -o-transform: translateY(6px) rotate(0deg);
      transform: translateY(6px) rotate(0deg);
    }

    100% {
      -webkit-transform: translateY(6px) rotate(135deg);
      -o-transform: translateY(6px) rotate(135deg);
      transform: translateY(6px) rotate(135deg);
    }
  }

  @-webkit-keyframes outT {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      -webkit-transform: translateY(6px) rotate(0deg);
      transform: translateY(6px) rotate(0deg);
    }

    100% {
      -webkit-transform: translateY(6px) rotate(135deg);
      transform: translateY(6px) rotate(135deg);
    }
  }

  @-o-keyframes outT {
    0% {
      -o-transform: translateY(0px) rotate(0deg);
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      -o-transform: translateY(6px) rotate(0deg);
      transform: translateY(6px) rotate(0deg);
    }

    100% {
      -o-transform: translateY(6px) rotate(135deg);
      transform: translateY(6px) rotate(135deg);
    }
  }

  @keyframes outT {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
      -o-transform: translateY(0px) rotate(0deg);
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      -webkit-transform: translateY(6px) rotate(0deg);
      -o-transform: translateY(6px) rotate(0deg);
      transform: translateY(6px) rotate(0deg);
    }

    100% {
      -webkit-transform: translateY(6px) rotate(135deg);
      -o-transform: translateY(6px) rotate(135deg);
      transform: translateY(6px) rotate(135deg);
    }
  }

  @-webkit-keyframes inBtm {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      -webkit-transform: translateY(-6px) rotate(0deg);
      transform: translateY(-6px) rotate(0deg);
    }

    100% {
      -webkit-transform: translateY(-6px) rotate(135deg);
      transform: translateY(-6px) rotate(135deg);
    }
  }

  @-o-keyframes inBtm {
    0% {
      -o-transform: translateY(0px) rotate(0deg);
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      -o-transform: translateY(-6px) rotate(0deg);
      transform: translateY(-6px) rotate(0deg);
    }

    100% {
      -o-transform: translateY(-6px) rotate(135deg);
      transform: translateY(-6px) rotate(135deg);
    }
  }

  @keyframes inBtm {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
      -o-transform: translateY(0px) rotate(0deg);
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      -webkit-transform: translateY(-6px) rotate(0deg);
      -o-transform: translateY(-6px) rotate(0deg);
      transform: translateY(-6px) rotate(0deg);
    }

    100% {
      -webkit-transform: translateY(-6px) rotate(135deg);
      -o-transform: translateY(-6px) rotate(135deg);
      transform: translateY(-6px) rotate(135deg);
    }
  }

  @-webkit-keyframes outBtm {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      -webkit-transform: translateY(-8px) rotate(0deg);
      transform: translateY(-8px) rotate(0deg);
    }

    100% {
      -webkit-transform: translateY(-8px) rotate(135deg);
      transform: translateY(-8px) rotate(135deg);
    }
  }

  @-o-keyframes outBtm {
    0% {
      -o-transform: translateY(0px) rotate(0deg);
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      -o-transform: translateY(-8px) rotate(0deg);
      transform: translateY(-8px) rotate(0deg);
    }

    100% {
      -o-transform: translateY(-8px) rotate(135deg);
      transform: translateY(-8px) rotate(135deg);
    }
  }

  @keyframes outBtm {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
      -o-transform: translateY(0px) rotate(0deg);
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      -webkit-transform: translateY(-8px) rotate(0deg);
      -o-transform: translateY(-8px) rotate(0deg);
      transform: translateY(-8px) rotate(0deg);
    }

    100% {
      -webkit-transform: translateY(-8px) rotate(135deg);
      -o-transform: translateY(-8px) rotate(135deg);
      transform: translateY(-8px) rotate(135deg);
    }
  }
}

section.mainContent.promocaoagro .suas-chances-institucional {
  /* background-color: #bf0123; */
  background-position: right bottom;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  padding: 0px;
  /* height: 247px; */
  position: relative;
}

section.mainContent.promocaoagro .suas-chances-institucional:before {
  content: '';
  position: absolute;
  top: 195px;
  left: -150px;
  width: 375px !important;
  height: 265px;
  background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/grafismo-2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}

section.mainContent.promocaoagro .suas-chances-institucional .content-container {
  padding: 80px 0 80px 0;
  position: relative;
}

section.mainContent.promocaoagro .suas-chances-institucional .bloco-participando {
  background: #E1173F;
  height: 88px;
  width: 727px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 24px;
  margin: auto;
  padding: 22px 87px;
}

section.mainContent.promocaoagro .suas-chances-institucional .bloco-participando p {
  float: left;
  padding: 6px 0;
  font-weight: 500;
  font-family: 'Bradesco Sans Medium', sans-serif;
  line-height: 30px;
}

section.mainContent.promocaoagro .suas-chances-institucional .button-modal {
  display: inline-block;
  color: #cc092f;
  margin-left: 15px;
  padding: 13px;
  background-color: #ffffff;
  border-radius: 15px;
  cursor: pointer;
  height: 44px;
  width: 250px;
  border-radius: 22px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bolder;
  font-family: 'Bradesco Sans Bold', sans-serif;
  float: right;
}

section.mainContent.promocaoagro .suas-chances-institucional .button-modal:focus {
  outline: none;
}

@media (max-width: 1023px) {
  section.mainContent.promocaoagro .suas-chances-institucional .bloco-participando {
    width: 672px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  section.mainContent.promocaoagro .suas-chances-institucional .content-container {
    padding: 56px 0;
  }

  section.mainContent.promocaoagro .suas-chances-institucional .bloco-participando {
    width: calc(100% - 32px);
    height: 157px;
    padding: 25px 19px;
  }

  section.mainContent.promocaoagro .suas-chances-institucional .bloco-participando p {
    float: none;
    padding: 0;
  }

  section.mainContent.promocaoagro .suas-chances-institucional .button-modal {
    margin-top: 24px;
    float: none;
    margin: 24px 0;
  }
}

section.mainContent.promocaoagro .suas-chances {
  display: none;
}

section.mainContent.promocaoagro .suas-chances.active {
  display: block;
}

section.mainContent.promocaoagro .suas-chances iframe {
  position: fixed;
  top: calc(50vh - (620px/2));
  left: calc(50vw - (960px/2));
  z-index: 1100;
  width: 100% !important;
  height: 100% !important;
  min-height: 650px !important;
  max-width: 960px !important;
  max-height: 520px !important;
  border-width: 0;
  display: inline-block;
  background-color: #fff;
  -webkit-animation: fadeInUp 300ms;
  -o-animation: fadeInUp 300ms;
  animation: fadeInUp 300ms;
  -webkit-box-shadow: 0 2px 12px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 12px 4px rgba(0, 0, 0, 0.2);
  overflow-y: scroll!important;
}

@media (max-width: 1279px) {
  section.mainContent.promocaoagro .suas-chances iframe {
    top: calc(50vh - (630px/2));
    left: calc(50vw - (720px/2));
    max-width: 720px !important;
    max-height: 630px !important;
    min-height: unset!important;
  }
}

@media (max-width: 767px) {
  section.mainContent.promocaoagro .suas-chances iframe {
    top: 0;
    left: 0;
    max-width: 100% !important;
    max-height: 100% !important;
  }
  div#topBar.headertopBar {
    height: 60px;
    align-items: center;

  }
  div#topBar.headertopBar div.holderMobile {
    width: 80%;
  }
}

section.mainContent {
  margin-bottom: 0;
  /* background-image: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/img/bg.jpg); */
}

section.mainContent>header span {
  color: #fff;
}

@media only screen and (max-width: 479px) {
  section.mainContent>header {
    width: auto !important;
  }
}

.topbar-mobile {  
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.menu-mobile {
  width: 100vw;
  height: 100vh;
  top: 60px;
  position: absolute;
  background: rgb(204,9,47);
  background: linear-gradient(151deg, rgba(204,9,47,1) 0%, rgba(204,9,47,1) 53%, rgba(184,21,112,1) 100%);
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: space-around;
  transform: translateX(100%);
  transition: transform 0.3s ease-in;
}

.menu-mobile.active {
  transform: translateX(0);
}

.menu-mobile a.regulamento {
  margin: 0 auto!important;
}

.menu-items li {
  height: 68px;
  background: rgba(255,255,255,.1);
  position: relative;
}

.menu-items li:nth-child(odd) {
  background: rgba(255,255,255,.2);
}

.menu-items li::after {
  content: url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/svg/arrow-menu.svg);
  width: 10px;
  position: absolute;
  right: 30px;
  top: 30px;
}

.bg-menu {
  background: rgba(204,9,47,1)!important;
}

.banner {
  width: 100%;
  margin-top: 70px
}

.banner img {
  width: 100%;
  height: auto;
}

section.mainContent > header span {
  display: block;
  color: #ffffff;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px !important;
  text-decoration: none;
  line-height: 39px;
  padding-right: 14px;
  cursor: pointer;
}

div#topBar.headertopBar div.holder div.como-usar {
  position: absolute;
  left: 700px;
  top: 5px;
  height: 35px;
}

div#topBar.headertopBar div.holder div.como-usar:before {
  content: '';
  width: 8px;
  height: 5px;
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/seta.png) 0px 0px no-repeat;
  position: absolute;
  right: -15px;
  top: 10px;
}

@media screen and (max-width: 768px) {  
  section.mainContent.promocaoagro .suas-chances-institucional .leaf2 {
    width: 167px;
    height: 457px;
    display: block;
    position: absolute;
    right: 0;
    top: 270px;
  }

  section.mainContent.promocaoagro .como-funciona .draws {
    width: 100%
  }

  section.mainContent.promocaoagro .como-funciona .draws .trators {
    width: 480px;
  }

  section.mainContent.promocaoagro .ganhadores .leaf1 {
    display: none;
  }

  section.mainContent.promocaoagro .duvidas-frequentes:before, section.mainContent.promocaoagro .duvidas-frequentes:after {
    display: none;
  }

  .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\2022";
    width: 20px;
    height: 20px;
    font-family: slick;
    font-size: 10px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    opacity: .25;
  }
  
  .slick-dots li.sclick-active button {
    color: #fff!important;

  }
  .abrir-mobile {
    position: absolute;
    float: left;
    right: 20px;
  }
}

@media screen and (max-width: 1024px) and (max-height: 768px) {
  .banner img {
    margin-top: 80px;
  }
  section.mainContent.promocaoagro .menu-nav-item {
    margin-right: 0;
  }
  .c-uteis__content.is-open {
    flex-wrap: wrap;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 20px 0;
    margin-right: 0;
    display: flex;
  }
}

/* CSS novo guide */
@media screen and (max-width: 768px) {
  div#topBar.headertopBar div.holderMobile {
    width: 700px;
  }
  div#topBar.headertopBar {
    height: 75px;
  }
  #topBar > div.holderMobile > div {
    margin-top: 5px;
    margin-left: -200px;
  }
  #topBar > div.menu-mobile.active > ul {
    margin-top: -290px;
  }
  .banner {
    margin-top: 60px;
  }
  .menu-mobile {
    top: 70px;
  }
  section.mainContent.promocaoagro .como-funciona .draws {
    width: 85%;
  }
  section.mainContent.promocaoagro .como-funciona .trators {
    padding: 0px 0px 50px !important;
  }
  section.mainContent.promocaoagro .como-funciona .draws::before {    
    bottom: 0px;
    right: -50px;
  }
  section.mainContent.promocaoagro .como-funciona .slick-dots {
    bottom: 0px;
  }
  section.mainContent.promocaoagro .duvidas-frequentes {
    width: 80%;
  }
  section.mainContent.promocaoagro .footer {
    width: 80%;
  }
  section.mainContent.promocaoagro .ganhadores {
    min-height: 658px;
    position: relative;
    background: rgb(204,9,47);
    background: linear-gradient(180deg, rgba(204,9,47,1) 0%, rgba(157,13,33,1) 49%);
    background-repeat: no-repeat;
    background-position: 0 26px, 100% calc(100% - 68px), center center;
    height: 90px;
    width: 100%;
  }
  section.mainContent.promocaoagro .ganhadores {
    background: transparent;
    background-position: center center;
    min-height: 658px;
  }
  .ganhadores .winner {
    background: transparent url(https://assets.bradesco/content/dam/portal-bradesco/html/classic/promocoes/promocaoagro/css/img/Modulo2/BG.png) 0% 0% no-repeat padding-box;
    border-radius: 4px;
    opacity: 1;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
}
@media screen and (max-width: 520px) {
  section.mainContent.promocaoagro .duvidas-frequentes {
    width: 90%;
  }
  section.mainContent.promocaoagro .footer {
    width: 90%;
  }
  section.mainContent.promocaoagro .ganhadores {
    background: transparent;
  }
  .legal-text {
    background: transparent linear-gradient(180deg, #CC092F 0%, #CC092F 40%, #9D0D21 90%, #9D0D21 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
    max-width: 100%;
  }
  section.mainContent.promocaoagro .suas-chances-institucional:before {
    display: none;
  }
  .ganhadores .section-title span {
    font-size: 22px;
    line-height: 32px;
    font-weight: bold;
  }
  section.mainContent.promocaoagro .duvidas-frequentes .section-title {
    font-size: 22px;
    line-height: 32px;
    max-width: 250px;
    margin-bottom: 40px;
  }
  section.mainContent.promocaoagro .como-funciona .chances h2 {
    font-size: 40px;
    line-height: 40px;
  }
  section.mainContent.promocaoagro .como-funciona .chances p {
    max-width: calc(100% - 100px);
    line-height: 40px;
  }
  section.mainContent.promocaoagro .como-funciona .draws {
    margin-top: 20px;
    height: auto;
    padding-bottom: 40px;
  }
  section.mainContent.promocaoagro .como-funciona .draws h3 {
    padding-top: 40px;
  }
  section.mainContent.promocaoagro .como-funciona .draws::before {
    display: none;
  }
  section.mainContent.promocaoagro .como-funciona .draws .regulamento {
    font-size: 16px;
  }
  section.mainContent.promocaoagro .ganhadores {
    width: 100%;
  }
  .legal-text {
    font-size: 16px;
    padding: 40px 10px 40px;
    text-align: left;
  }
  section.mainContent.promocaoagro .ganhadores {
    margin: 0 auto;
  }
  div#topBar div.holderMobile {
    min-width: 300px !important;
  }
}
@media screen and (max-width: 320px) {
  section.mainContent.promocaoagro .como-funciona .chances h2 {
    font-size: 30px;
    line-height: 30px;
  }
  section.mainContent.promocaoagro .como-funciona .chances p {
    max-width: calc(100% - 100px);
    line-height: 30px;
  }
}

#acessib-menu-feat {
  margin-top: -5px !important;
}
div#topBar.headertopBar div.holder form .legenda-acessa-conta {
  top: 15px;
  padding: 0 0 0 25px;
}
div#topBar.headertopBar div.holder form fieldset .ico-cadeado {
  padding-top: 7px;
}
