@font-face {
    font-family: 'AdobeBlank';
    src: url('../../fonts/campanha-2024/AdobeBlank.woff2') format('woff2');
    font-variation-settings: "wght" 400;
    font-style: normal;
}


body {
    margin: 0;
    font-family: Inter;
    font-weight: 400;
}

p {
    margin: 0
}

/*TOPO*/
.topo {
    background-color: #060e22;
    min-height: 888px;
    background-image: url(../../img/campanha-2024/bannertopo.png);

    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

header {
    padding-top: 55px;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1416px;
    margin: auto;
}

.topo_menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topo_menu-logo img {
    width: 16vw;
    min-width: 200px;
}

.menu-container {
    position: fixed;
    right: 9vw;
    z-index: 100;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 7px;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
    background-color: #008FB0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-items {
    display: none;
    position: absolute;
    top: 0;
    right: 70px;
    height: 42px;
    background-color: #008FB0;
    border-radius: 32px;
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    transition: width 0.3s ease;
}

.menu-items a {
    color: #fff;
    font-size: 14px;
    font-family: Inter;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
}

.menu-open .menu-items {
    display: flex;
    width: 414px;
    animation: slide-in-left 0.5s cubic-bezier(.25, .46, .45, .94) both;
    align-items: center;
    justify-content: center;
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
}

@keyframes slide-in-left {
    0% {
        transform: translateX(62px);
        opacity: 0;
    }

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

/*Carousel*/
#carousel2.carousel .slideshow-container {
    position: relative;
    padding-top: 9vw;
    width: 100%;
    max-width: 1416px;
    margin: auto;
    margin-bottom: 50px;
}

#carousel2.carousel .mySlides {
    display: none;
    color: white;
    border-radius: 8px;
    max-width: 1143px;
    margin: auto;
}

#carousel2.carousel .mySlides small {
    font-size: clamp(14px, 1.3vw, 24px);
    width: fit-content;
    padding: 6px 26px;
    font-weight: 200;
    display: block;
    max-width: 500px;
    border: 1px solid white;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#carousel2.carousel .mySlides p.font-gia b {
    font-variation-settings: "wght" 800;
    color: #6BC986;
}

#carousel2.carousel .mySlides p.font-gia {
    font-size: clamp(14px, 3.5vw, 53px);
    font-family: 'AdobeBlank';
    margin: 0;
    font-variation-settings: "wght" 600;
    width: 53vw;
    max-width: 800px;
}

#carousel2.carousel .mySlides p.font-gia br {
    display: none;
}

#carousel2.carousel .prev,
#carousel2.carousel .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

#carousel2.carousel .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

#carousel2.carousel .dot-container {
    text-align: center;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 40px;
}

#carousel2.carousel .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

#carousel2.carousel .active {
    background-color: #008FB0;
    width: 47px;
    height: 13px;
    border-radius: 6px;
}

#carousel2.carousel .fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}



.content-box-double {
    max-width: 1143px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-box-double .content-box:first-child {
    background-color: #DFE1E7;
    border-radius: 26px;
    flex: 1%;
    z-index: 99;
    position: relative;
    padding: 30px 60px;
}

.content-box-double .content-box:last-child {
    background-color: #2380A8;
    border-radius: 0 26px 26px 0;
    flex: 1;
    position: relative;
    left: -19px;
    padding: 30px 40px 30px 80px;
}

.content-box-double .content-box {
    height: 186px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-box-double .content-box .title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
}

.content-box-double .content-box:first-child .title {
    color: #0D1935;
    position: relative;
}

/* .content-box-double .content-box:first-child .title:after {
    content: ',00*';
    font-size: 21px;
    position: absolute;
    bottom: 18px;
    margin-left: 2px;
} */

.content-box-double .content-box:last-child .title {
    color: white;
}

.content-box-double .content-box .sub {
    font-size: 23px;
}

.content-box-double .content-box:first-child .sub {
    color: #0D1935;
}

.content-box-double .content-box:last-child .sub {
    color: white;
    font-weight: 300;
}

.content-box-double .content-box svg.flutuante {
    position: absolute;
    right: -1px;
    top: 31px;
}

.content-box-double .content-box:first-child a {
    background-color: #6BC986;
    padding: 13px 30px;
    border-radius: 27px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    gap: 20px;
    color: #010614;
    font-weight: 600;
    text-decoration: unset;
    font-size: 19px;
}

main.carousel>small {
    color: white;
    width: 100%;
    max-width: 1054px;
    margin: auto;
    display: block;
    margin-top: 20px;
}

main.carousel>small.mob {
    display: none;
}

section.dobra-dois {
    background-color: #060e22;
    padding: 100px 0;
    border-radius: 0 0 40px 40px;

}

section.dobra-dois .img-text {
    width: 100%;
    max-width: 1143px;
    margin: auto;
    display: flex;
    align-items: center;
    position: relative;
}

section.dobra-dois .img-text .mob-anvisa {
    display: none;
}

section.dobra-dois .img-text p {
    position: absolute;
    color: white;
    font-size: 32px;
    left: 230px;
}

section.dobra-dois .img-text p span {
    color: #6BC986;
}

section.dobra-dois .double-col {
    width: 100%;
    max-width: 1410px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 86px;
    margin-top: 105px;
}

section.dobra-dois .double-col .box-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    max-width: 540px;
}

section.dobra-dois .double-col .box-content .barline-mob {
    display: none;
}

section.dobra-dois .double-col .box-content a {
    background-color: #6BC986;
    padding: 8px 30px;
    border-radius: 27px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    gap: 20px;
    color: #010614;
    font-weight: 600;
    text-decoration: unset;
    font-size: 19px;
}


section.dobra-dois .double-col .box-content .double p {
    color: white;
    font-size: 20px;
}

section.dobra-dois .double-col .box-content .double {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 30px;
}

/*Beneficios*/
section#beneficios {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 40px 40px;
    /* margin-bottom: 50px; */
    background-color: white;
    z-index: 99;
    position: relative;
}

section#beneficios .titlebox {
    margin: 40px 0 63px;
}

section#beneficios .titlebox h2 {
    font-family: 'AdobeBlank';
    color: #008FB0;
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
}

section#beneficios .titlebox p {
    font-size: 26px;
    max-width: 796px;
}

section#beneficios .boxes {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 80px;
    gap: 30px;
}

section#beneficios .boxes .group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 236px;
    text-align: center;
    gap: 20px;
}

section#beneficios .boxes .group img.barline {
    width: 100%;
}

section#beneficios .boxes .group p {
    font-size: 21px;
    font-weight: 500;
}

/* Carousel base styles */
.carousel {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slideshow-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.mySlides {
    min-width: 50%;
    transition: transform 0.5s ease-in-out;
    /* opacity: 0.5; */
}

.mySlides.active {
    min-width: 100%;
    opacity: 1;
}

.mySlides.prev,
.mySlides.next {
    min-width: 50%;
    opacity: 0.5;
}

.mySlides.prev {
    transform: translateX(-50%);
}

.mySlides.next {
    transform: translateX(50%);
}



.container.carousel-mob {
    display: none;
}

#beneficios .container .carousel-view {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    /* padding: 44px 0; */
    transition: all 0.25s ease-in;
    max-width: 100%;
}

#beneficios .container .carousel-view .item-list {
    max-width: 950px;
    width: 95vw;
    padding: 20px 10px;
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    transition: all 0.25s ease-in;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    overflow: auto;
    scroll-snap-type: x mandatory;
    align-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
}

#beneficios .container .carousel-view .item-list::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari e Opera */
}

#beneficios .container .carousel-view .group {
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 236px;
    text-align: center;
    gap: 20px;
    opacity: 0.5;
    /* Opacidade padrão */
    transition: opacity 0.3s;
}

#beneficios .container .carousel-view .group.active {
    opacity: 1;
    /* Opacidade do slide ativo */
}

#beneficios .container .carousel-view .prev-btn,
#beneficios .container .carousel-view .next-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

#beneficios .container .carousel-view .prev-btn svg,
#beneficios .container .carousel-view .next-btn svg {
    width: 20px;
    height: 20px;
}

#beneficios .container .carousel-view .group .barline {
    margin-bottom: 10px;
    /* max-width: 165px; */
}

#beneficios .container .carousel-view .group p {
    font-size: 14px;
    color: black;
}

#beneficios .carousel-dots {
    text-align: center;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 40px;
}

#beneficios .carousel-dots .dot {
    cursor: pointer;
    height: 8px;
    width: 8;
    margin: 0 2px;
    background-color: #060E22;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

#beneficios .carousel-dots .dot.active {
    background-color: #008FB0;
    width: 30px;
    height: 8px;
    border-radius: 6px;
}

section#depoimentos {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    background-color: #010614;
    margin-top: -36px;
}

section#depoimentos .titlebox {
    margin: 75px 0 63px
}

section#depoimentos .titlebox h2 {
    font-family: 'AdobeBlank';
    color: #008FB0;
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
}


.container.carousel-view-2 .group p {
    color: white;
}

.container.carousel-view-2 .group small {
    color: #5E6B7E;
    font-size: 16px;
}

.container.carousel-view-2 .group .rodape {
    display: flex;
    align-items: center;
    gap: 10px;
}

.container.carousel-view-2 .group .rodape .text {
    text-align: left;
}

.container.carousel-view-2 .group .rodape .text p {
    font-size: 22px;
    font-weight: bold;
}

.carousel-view-2 .carousel-view .group {
    width: 800px;
}

section.sobre {
    margin-top: -50px;
    background-color: #060e22;
}

section.sobre .content-card {
    max-width: 1412px;
    margin: auto;
    padding: 80px 0 80px;
}

section.sobre .content-card .double {
    background-color: white;
    border-radius: 41px;
    display: flex;
    justify-content: flex-start;
    gap: 50px;
}

section.sobre .content-card .double .text {
    padding-top: 40px;
}

section.sobre .content-card .double .text h2 {
    font-family: 'AdobeBlank';
    font-size: 40px;
    font-variation-settings: "wght" 700;
    color: #008FB0;
    margin-bottom: 10px;
}

section.sobre .content-card .double .text p.sub {
    color: #060E22;
    font-weight: 600;
    font-size: 22px;
}

section.sobre .content-card .double .text p.content {
    padding-top: 30px;
    font-size: 22px;
    line-height: 1.5;
    padding-right: 76px;
}

section.sobre .content-card .double .text svg {
    float: right;
    margin: 20px 40px;
    cursor: pointer;
}

section.aproveite {
    background-color: #010614;
}

section.aproveite .content-block {
    max-width: 1412px;
    margin: auto;
    padding: 80px 0 80px;
}

section.aproveite .content-block .double {
    display: flex;
    justify-content: space-between;
}

section.aproveite .content-block .double .left p {
    color: white;
    margin-left: 235px;
    margin-top: 30px;
    font-size: 26px;
}

section.aproveite .content-block .double .right h2 {
    font-family: 'AdobeBlank';
    color: white;
    font-size: 46px;
    line-height: 1.3;
}

section.aproveite .content-block .double .right h2 span {
    color: #6BC986;
    white-space: nowrap;
}

section.aproveite .content-block .double .right h2 span sup {
    display: inline-block;
    vertical-align: text-top;
    font-size: 24px;
}

section.aproveite .content-block .double .right a {
    background-color: #6BC986;
    padding: 13px 30px;
    border-radius: 27px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    gap: 20px;
    color: #010614;
    font-weight: 600;
    text-decoration: unset;
    font-size: 19px;
}

section.aproveite .content-block .double .right small {
    color: white;
    margin-top: 20px;
    display: block;
}

footer {
    background-color: #062E42;
}

footer .content-box {
    max-width: 90%;
    margin: auto;
}

footer .content-box .double-apart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 70px;
}

footer .content-box .double-apart img {
    max-width: 184px;
}

footer .content-box .double-apart .links {
    display: flex;
}

footer .content-box .double-apart .links a {
    color: white;
    text-decoration: unset;
    padding: 40px 20px;
    display: block;
}

footer .content-box .navegation {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7%;
    padding: 25px 0;
}

footer .content-box .navegation .group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
    color: white;
}

footer .content-box .navegation .group a {
    color: #DDDDDD;
    text-decoration: unset;
    font-size: 14px;
}

footer .content-box .navegation .group p.title {
    font-size: 16px;
    font-weight: bold;
}

footer .content-box hr {
    border-color: #008FB0;
}

footer .content-box .rodape {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

footer .content-box .rodape p {
    color: #5E6B7E;
    font-size: 14px;
}

footer .content-box .rodape .social-links {
    display: flex;
    gap: 25px;
}

footer .content-box a:hover {
    opacity: 0.5;
}

section.sobre .content-card .double img.mobile {
    display: none;
}

.carousel-depo {
    background-color: #010614;
    margin-top: -51px;
    padding-top: 40px;
    padding-bottom: 140px;
}
.carousel-depo .slick-dots {
    position: unset;
}
.carousel-depo .main {
    font-family:Arial;
    width:90%;
    display:block;
    margin:0 auto;
  }
  
  .carousel-depo .group {
    border: 1px solid #2380A8;
    border-radius: 40px;
    padding: 60px 80px;
    margin:0 40px;
    width: 70vw!important;
    max-width: 900px;
    min-height: 481px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

.carousel-depo .group p {
    color: white;
    font-size: 26px;
}

.carousel-depo .group .rodape {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-depo .group .rodape .text {
    text-align: left;
}

.carousel-depo .group .rodape .text p {
    font-size: 22px;
    font-weight: 700;
}

.carousel-depo .group .rodape .text small {
    color: #5E6B7E;
    font-size: 16px;
}

.slick-initialized .slick-slide {
    height: auto;
}
.slick-initialized .slick-slide:not(.slick-current) {
    opacity: 0.5;
}

.carousel-depo .control {
    float: right;
    display: flex;
    gap: 20px;
}

.carousel-depo .control svg {
    width: 47px;
    height: 47px;
}


#beneficios .carousel-dots {
    text-align: center;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 40px;
}

#beneficios .carousel-dots .dot {
    cursor: pointer;
    height: 8px;
    width: 8;
    margin: 0 2px;
    background-color: #060E22;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

#beneficios .carousel-dots .dot.active {
    background-color: #008FB0;
    width: 30px;
    height: 8px;
    border-radius: 6px;
}
.carousel-depo .carousel-dots {
    text-align: center;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 40px;
    flex-direction: row-reverse;
}
section.dobra-dois .double-col .mob-btn {
    display: none;
}
.carousel-depo .carousel-dots .dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: #C1C7D0;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.carousel-depo .carousel-dots .dot.active, .carousel-depo .carousel-dots .slick-active .dot {
    background-color: #008FB0;
    width: 30px;
    height: 8px;
    border-radius: 6px;
}


.slick-dots li {
    width: unset;
    height: unset;
}
a.flutuante {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    z-index: 9999999999;
}

a.flutuante img {
    width: 100%;
}




section#formulario {
    background-color: #060e22;
    margin-top: -17px;
    background-image: url(../../img/campanha-2024/background-form.png);
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 800px;
}

section#formulario .container-form {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    height: 100%;
}

section#formulario .container-form .card-form {
    background-image: url(../../img/campanha-2024/card-form.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    min-height: 580px;
    max-width: 627px;
    width: 100%;
    margin-right: 10%;
}


section#formulario .container-form .card-form div#form-container .custom-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section#formulario .container-form .card-form div#form-container .custom-form > p:first-child {
    text-align: center;
    font-size: 32px;
    max-width: 378px;
    font-weight: 600;
    margin: 30px auto;
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"] {
  width: 100%;
  height: 49px;
  padding-left: 45px;
  border: 1px solid #DFE1E7;
  border-radius: 100px;
  box-sizing: border-box;
  outline: none;
}

section#formulario .container-form .card-form div#form-container .custom-form .icon-input p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

section#formulario .container-form .card-form div#form-container .custom-form .icon {
  position: absolute;
  left: 15px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

section#formulario .container-form .card-form div#form-container .custom-form .icon-person {
  background-image: url(../../img/campanha-2024/icon-person.png);
}

section#formulario .container-form .card-form div#form-container .custom-form .icon-email {
  background-image: url(../../img/campanha-2024/icon-email.png);
}

section#formulario .container-form .card-form div#form-container .custom-form .icon-tel {
  background-image: url(../../img/campanha-2024/icon-tel.png);
}

/* Estilos do botão submit */
section#formulario .container-form .card-form div#form-container .custom-form [submit] {
  background-color: #DFE0E4;
  color: #000;
  border: 1px solid red;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  width: 200px;
  height: 49px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
}

section#formulario .container-form .card-form div#form-container .custom-form [submit]:hover {
  background-color: #cfcfcf; 
}

section#formulario .container-form .card-form div#form-container .custom-form .input-wrapper {
  margin-bottom: 20px;
  width: 80%;
}


section#formulario .container-form .card-form div#form-container .custom-form .icon-input p span.wpcf7-form-control-wrap {
    width: 100%;
}

section#formulario .container-form .card-form div#form-container .custom-form .input-wrapper > p {
    margin-bottom: 10px;
}

section#formulario .container-form .card-form div#form-container .custom-form p .radio-group > span label {
    background-color: #dfe0e4;
    border-radius: 20px;
    padding: 10px 20px;
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
}

section#formulario .container-form .card-form div#form-container .custom-form p .radio-group span.wpcf7-form-control.wpcf7-radio {
    display: flex;
    gap: 20px;
}

section#formulario .container-form .card-form div#form-container .custom-form input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background-color: #008FB0;
    border: 0;
    border-radius: 30px;
    padding: 10px;
    width: 100%;
    color: white;
    font-weight: 600;
    font-family: 'Inter';
    font-size:16px;
    cursor:pointer;
}
section#formulario .container-form .card-form div#form-container .custom-form input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    opacity:0.8;
}
section#formulario .container-form .card-form #form-container > div.custom-form > p:nth-child(6) {
    margin-bottom: 20px;
    width: 52%;
}

section#formulario .container-form  span.wpcf7-not-valid-tip {
    position: absolute;
    left: 80px;
    top: -30px;
    color: red;
}

section#formulario .container-form .card-form  .wpcf7-response-output {
    color: red;
    margin-left: 30px;
    bottom: 10px;
    position: relative;
}

.screen-reader-response {
    display: none;
}


.content-box-double .content-box:first-child small.mob {
    display: none;
}
#beneficios > div.boxes > div:nth-child(3) > p {
    max-width: 170px;
}

div#card-sucesso {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 580px;
    flex-direction: column;
    text-align: center;
}
div#card-sucesso img {
    margin-top: 40px;
}
.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}



.carousel-bene .control {
    float: right;
    display: flex;
    gap: 20px;
}

.carousel-bene .control svg {
    width: 47px;
    height: 47px;
}


#beneficios .carousel-dots {
    text-align: center;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 40px;
}

#beneficios .carousel-dots .dot {
    cursor: pointer;
    height: 8px;
    width: 8;
    margin: 0 2px;
    background-color: #060E22;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

#beneficios .carousel-dots .dot.active {
    background-color: #008FB0;
    width: 30px;
    height: 8px;
    border-radius: 6px;
}
.carousel-bene .carousel-dots {
    text-align: center;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 40px;
    flex-direction: row-reverse;
}
.carousel-bene .carousel-dots .dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: #C1C7D0;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.carousel-bene {
    display: none;
}
.carousel-bene .group {
    flex-direction: column;
    align-items: center;
    border-radius: 40px;
    margin: 0 20px;
    /* width: 20vw !important; */
    max-width: 266px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
}
.carousel-bene .main .group p {
    font-weight: 500;
    font-family: 'Inter';
}
.carousel-bene .main {
    font-family: Arial;
    width: 100%;
    display: block;
    margin: 0 auto;
}

#beneficios .carousel-dots ul.slick-dots {
    position: unset;
}

#beneficios .carousel-bene .carousel-dots .dot.active, 
#beneficios .carousel-bene .carousel-dots .slick-active .dot {
    background-color: #008FB0;
    width: 30px;
    height: 8px;
    border-radius: 6px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width: 1450px) {
    section.sobre .content-card {
        padding: 80px 5%;
    }

    section.sobre .content-card .double img {
        object-fit: cover;
        border-radius: 41px 0 0 41px;
    }

    section.aproveite .content-block {
        padding: 80px 5%;
    }

    section.aproveite .content-block .double .left {
        width: 552px;
    }

    section.aproveite .content-block .double .left img {
        width: 100%;
    }

    section.aproveite .content-block .double .left p {
        margin-left: 163px;
        font-size: 22px;
    }

    section.aproveite .content-block .double .right h2 {
        font-size: 40px;
    }
}

@media (min-width: 1180px) and (max-width: 1390px) {
    #carousel2.carousel .mySlides {
        max-width: 900px;
    }

    #carousel2.carousel .mySlides small {
        width: fit-content;
        padding: 10px 26px;
    }

    section.dobra-dois {
        padding-top: 40px;
    }

    section.dobra-dois .double-col {
        width: 90%;
        gap: 40px;
    }


    section.dobra-dois .double-col .box-content .double img.barline {
        width: 3.8vw;
        max-width: 100px;
    }


    .double-col .box-content .double p {
        font-size: clamp(16px, 1vw, 20px);
    }

    .double-col .box-content>img {
        width: 90%;
    }

    .double-col .box-content a {
        font-size: 18px;
    }

    .double-col .box-content {
        max-width: 540px;
        min-width: 349px;
    }

    section#beneficios .boxes .group {
        width: 193px;
    }

    
}

@media (max-width: 1180px) {

.content-box-double .content-box:first-child small.mob {
    display: block;
}
main.carousel>small.desk {
    display: none;
}

    .topo {
        background-size: cover;
        background-position: -800px 0;
    }

    #carousel2.carousel .slideshow-container {
        max-width: 90%;
    }

    #carousel2.carousel .mySlides {
        max-width: 68%;
    }

    .content-box-double {
        flex-direction: column;
        row-gap: 10px;
    }

    .content-box-double .content-box svg.flutuante {
        display: none;
    }

    .content-box-double .content-box:last-child {
        flex: 1;
        z-index: 99;
        padding: 30px 60px;
        border-radius: 26px;
        position: unset;
        max-width: 414px;
    }

    main.carousel>small {
        max-width: 510px;
    }

    section.dobra-dois .img-text {
        max-width: 815px;
    }


    section.dobra-dois .img-text img {
        width: 100%;
    }

    section.dobra-dois .img-text p {
        font-size: clamp(24px, 3vw, 26px);
        left: 180px;
    }

    section.dobra-dois .double-col {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    section.dobra-dois .double-col>img.barline {
        display: none;
    }

    section#beneficios .boxes {
        flex-wrap: wrap;
    }

    section.sobre .content-card .double img.mobile {
        display: block;
    }

    section.sobre .content-card .double img.desktop {
        display: none;
    }

    section.aproveite .content-block .double {
        flex-direction: column;
        align-items: center;
    }
    
    section.aproveite .content-block .double .left p {
        text-align: center;
        margin: 30px 0 0;
    }
    
    section.aproveite .content-block .double .right h2 {
        text-align: center;
    }
    
    section.aproveite .content-block .double .right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    section.aproveite .content-block .double .right small {
        font-size: 14px;
    }
    
    section.sobre .content-card .double {
        flex-direction: column;
        border-radius: 58px 58px 28px 28px;
    }
    
    
    section.sobre .content-card .double .text {
        padding: 0 30px;
    }
    
    section.sobre .content-card .double .text p.content {
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    section.sobre .content-card .double .text svg {
        margin: 20px 0;
    }
}

@media (max-width: 980px) {
    .carousel-bene {
        display: flex;
    }
    section.dobra-dois .double-col .mob-btn {
        background-color: #6BC986;
    padding: 8px 30px;
    border-radius: 27px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    gap: 20px;
    color: #010614;
    font-weight: 600;
    text-decoration: unset;
    font-size: 17px;
    margin: 40px 0 0;
    }
    #carousel2.carousel .prev,
    #carousel2.carousel .next {
        display: none;
    }

    .topo {
        background-image: url(../../img/campanha-2024/bannertopo-mob.png);
        background-size: 100%;
        padding: 0 25px;
        background-color: #010614;
        background-position: top;
    }

    header {
        justify-content: space-between;
    }

    .menu-container {
        right: 25px;
        position: absolute;
    }

    #carousel2.carousel .mySlides small {
        border: 0;
        font-size: 18px;
        text-align: center;
        max-width: 238px;
        font-weight: 400;
        margin: auto;
    }

    #carousel2.carousel .slideshow-container {
        max-width: 100%;
        margin: auto;
        width: fit-content;
        padding-top: 40vw;
        margin-bottom: 50px;
    }

    #carousel2.carousel .mySlides {
        max-width: unset;
    }

    #carousel2.carousel .mySlides p.font-gia {
        font-size: 28px;
        text-align: center;
        width: 100%;
    }

    #carousel2.carousel .mySlides p.font-gia br {
        display: block;
    }

    main.carousel>small.desk {
        display: none;
    }

    main.carousel>small.mob {
        display: block;
    }

    section.dobra-dois {
        padding: 100px 0;
        border-radius: 0 0 40px 40px;
        background: linear-gradient(to bottom, #010614 10%, #060e22 70%);
    }

    .content-box-double .content-box:first-child {
        align-items: center;
    }

    .content-box-double .content-box .title {
        text-align: right;
    }

    .content-box-double .content-box .sub {
        text-align: center;
        font-size: 18px;
    }

    .content-box-double .content-box .title {
        font-size: 28px;
    }

    .content-box-double .content-box:first-child .title:after {
        font-size: 15px;
        font-weight: 800;
        bottom: 11px;
    }

    .content-box-double .content-box:last-child {
        padding: 50px 41px;
    }

    .content-box-double {
        max-width: 453px;
    }

    .content-box-double .content-box:last-child .title {
        color: white;
        text-align: center;
    }

    section.dobra-dois .img-text .mob-anvisa {
        display: block;
        width: fit-content;
    }

    section.dobra-dois .img-text .desk-anvisa {
        display: none;
    }

    section.dobra-dois .double-col .box-content .barline-mob {
        display: block;
    }

    section.dobra-dois .double-col .box-content .barline-mob {
        display: block;
    }

    section.dobra-dois .img-text {
        width: 83%;
        max-width: 493px;
    }

    section.dobra-dois .double-col .box-content a {
        display: none;
    }

    section.dobra-dois .double-col .box-content {
        align-items: center;
    }

    section.dobra-dois .double-col {
        margin-top: 60px;
        row-gap: 35px;
        width: 72%;
        max-width: 443px;
    }

    section.dobra-dois .double-col .box-content .double p {
        font-size: 18px;
    }

    section.dobra-dois {
        padding-top: 50px;
    }

    section.dobra-dois .img-text p {
        font-size: 18px;
        left: 160px;
        position: unset;
    }

    section.dobra-dois .double-col {
        margin-top: 45px;
        width: 88%;
    }

    section.dobra-dois .double-col .box-content {
        /* padding: 0 25px; */
        max-width: 393px;
    }

    section.dobra-dois .double-col .box-content img.barline-desk {
        width: 90% !important;
    }


    section.dobra-dois .double-col .box-content .double p {
        font-size: 18px;
    }

    section.dobra-dois .img-text .mob-anvisa {
        /* max-width: 36%; */
        width: 35%;
    }

    .content-box-double .content-box:last-child {
        padding: 40px 14px;
    }

    .content-box-double .content-box:first-child {
        width: 94%;
        padding: 30px 12px;
    }

    .topo_menu-logo img {
        min-width: 132px;
    }

    header {
        padding-top: 30px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        gap: 3px;
        background-color: white;
        position: absolute;
        right: 20px;
        top: -28px;
    }

    .menu-toggle span {
        width: 15px;
        height: 2px;
        background-color: #060E22;
    }

    .menu-open .menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 3px);
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -3px);
    }


    .menu-container.menu-open {
        width: 100%;
        position: fixed;
        z-index: 999999;
        right: 0;
        height: 100vh;
        background-color: #008FB0;
        top: 0;
        display: flex;
    }

    .menu-open .menu-items {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 100%;
        margin-top: 75px;
        right: 0;
    }

    .menu-items a {
        padding: 20px 0;
        font-size: 28px;
        font-weight: 300;
        width: 70%;
        text-align: center;
    }

    .menu-items a:nth-child(-n+3) {
        border-bottom: 1px solid #01698A;
    }

    .menu-container.menu-open div#menuToggle {
        top: 20px;
    }

    .container.carousel-mob {
        display: block;
    }

    section#beneficios .boxes {
        display: none;
    }

    footer .content-box .navegation {
        flex-direction: column;
        row-gap: 40px;
        padding: 25px;
    }

    footer .content-box .double-apart .links {
        display: none;
    }

    footer .content-box .double-apart {
        justify-content: center;
        padding-bottom: 40px;
    }

    footer .content-box .rodape {
        flex-direction: column-reverse;
        row-gap: 40px;
    }

    .container .carousel-view {
        max-width: 360px;
    }


    section#formulario .container-form .card-form {
        background-image: none;
        background-color: white;
        border-radius: 30px;
        margin: 0;
        width: 100%;
        max-width: unset;
    }
    
    section#formulario .container-form {
        display: block;
        height: fit-content;
    }
    
    section#formulario {
        background-image: none;
        min-height: unset;
        padding-bottom: 40px;
    }
    section#formulario .container-form .card-form div#form-container .custom-form > p:first-child {
        font-size: 26px;
    }
}

@media (max-width: 650px) {
    section.aproveite .content-block .double .left {
        width: 100%;
    }
    
    section.aproveite .content-block .double .right h2 {
        font-size: clamp(23px, 7vw, 38px);
    }
    
    section.aproveite .content-block .double .right a {
        font-size: clamp(16px, 4vw, 18px);
    }
    
    section.aproveite .content-block .double .left p {
        font-size: clamp(15px, 4vw, 20px);
    }
    
    section.sobre .content-card .double .text h2 {
        font-size: clamp(29px, 7vw, 38px);
    }
    
    section.sobre .content-card .double .text p.sub {
        font-size: clamp(18px, 7vw, 20px);
    }
    
    section.sobre .content-card .double .text p.content {
        font-size: clamp(18px, 7vw, 20px);
    }
    .carousel-depo .group {
        padding: 30px;
    }
    .carousel-depo .control {
        display: none;
    }
    section#beneficios .titlebox p {
        font-size: 20px;
        width: 85%;
        text-align: center;
    }
    
    section#beneficios .titlebox h2 {
        font-size: 45px;
    }
    
    section#beneficios .titlebox {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    section#depoimentos .titlebox h2 {
        font-size: 35px;
        max-width: 238px;
        margin-bottom: 0;
    }
    
    section#depoimentos .titlebox {
        margin-bottom: 20px;
    }
    
    .carousel-depo .group p {
        font-size: 16px;
    }
    
    .carousel-depo .group .rodape img.barline {
        width: 80px;
    }
    
    .carousel-depo .group .rodape .text p {
        font-size: 18px;
    }
    
    .carousel-depo .group {
        min-height: unset;
    }
    .carousel-depo .carousel-dots {
        margin: 0;
    }
    
    .carousel-depo .slick-dots {
        position: unset;
    }
}
@media (max-width: 550px) {
    .carousel .mySlides p.font-gia {
        font-size: 22px;
    }

    .content-box-double .content-box:first-child a {
        font-size: 17px;
    }

    .content-box-double .content-box:last-child .sub {
        font-size: 16px;
    }

    .content-box-double .content-box .title {
        font-size: 26px;
        text-align: center;
    }

    .content-box-double .content-box:first-child .title:after {
        position: relative;
        margin: 0;
    }

    section.dobra-dois .double-col .box-content .double img.barline {
        width: 58px;
    }

    section.dobra-dois .double-col .box-content .double p {
        font-size: 16px;
        max-width: 236px;
    }

    section.dobra-dois .double-col .box-content .double {
        gap: 15px;
        align-items: flex-start;
    }
}

