html,
body {
    /* overflow-x: hidden; */
    width: 100%;
    margin: 0;
    padding: 0;
}

.bricks--section > div {
    max-width: 100%;
}

@media (min-width: 1240px) {
    .container {
        max-width: 1028px;
    }
}

@media (min-width: 1300px) {
    .container-1264 {
        max-width: 1264px;
    }
}

.f-16 {
    font-size: 16px;
}

.fs-32 {
    font-size: 32px;
}

.ff-go {
    font-family: "gotham", sans-serif;
}

.ff-gn {
    font-family: "gotham-narrow", sans-serif;
}

.ff-pa {
    font-family: "paralucent", sans-serif;
}

.ff-co {
    font-family: "Cormorant", serif;
}

.fw-negrito {
    font-weight: bold;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.lh-120 {
    line-height: 120%;
}

.lh-130 {
    line-height: 130%;
}

.c_black {
    color: #2d2d2d;
}

.c_black_2 {
    color: #111;
}

.c_gray {
    color: #d9dbe9;
}

.c_gray_2 {
    color: #f7f7f7;
}

.c_blue {
    color: #008caa;
}

.c_red {
    color: #d10132;
}

p {
    margin: 0;
}

.header {
    position: fixed;
    padding-top: 22px;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 113px;
    transition: ease all 0.4s;
    display: flex;
    justify-content: center;
    left: 0 !important;
}

.header .container {
    max-width: 987px;
}

header .container .bg-menu {
    border-radius: 20px;
    border: 1px solid #fff;
    background: rgba(124, 62, 24, 0.4);
    box-shadow: 0px 483px 135px 0px rgba(0, 0, 0, 0), 0px 309px 124px 0px rgba(0, 0, 0, 0.01), 0px 174px 104px 0px rgba(0, 0, 0, 0.05), 0px 77px 77px 0px rgba(0, 0, 0, 0.09), 0px 19px 42px 0px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

header .menu {
    display: flex;
    padding: 0;
    margin: 0;
    max-width: 987px;
    justify-content: center;
    padding: 20px 24px;
}

header .menu li {
    font-size: 16px;
    line-height: 140%;
    list-style: none;
    padding: 0 8px;
    position: relative;
}

header .menu li a.active:before,
header .menu li a:hover:before {
    width: 38px;
    height: 1px;
    display: block;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
}

header .menu li a {
    color: #fff;
    text-decoration: none;
    position: relative;
}

header .menu li.last a {
    color: #fff;
    background: #de6c50;
    padding: 2px 12px;
    border-radius: 8px;
    transition: ease all 0.4s;
    border: 1px solid transparent;
}

header .menu li {
    list-style: none;
}

header .menu li a {
    display: inline-block;
    white-space: nowrap;
    /* impede quebra de linha */
    text-decoration: none;
    color: inherit;
}

.menu-hover {
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: font-weight 0.3s;
}

.menu-hover .hover-img {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    /* distância abaixo do texto */
    height: 7px;
    /* altura da imagem */
    width: 103px;
    /* largura da imagem */
    background-image: url("../img/menu-hover.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-hover:hover .hover-img {
    opacity: 1;
}

.menu-hover.clicked {
    font-weight: bold;
}

@media (max-width: 991px) {
    .header .container {
        width: 768px;
        max-width: 100%;
    }
}

/*Menu mobile */
@media (max-width: 991.8px) {
    header .abrirMenu {
        width: 83px;
        float: right;
        z-index: 1000;
        position: relative;
        text-align: center;
        color: #fff;
        font-size: 25px;
        height: 40px;
        line-height: 17px;
        padding-left: 58px;
        margin-right: 23px;
        font-family: "Cormorant";
        padding-top: 8px;
    }

    header .abrirMenu span {
        position: absolute;
        left: 0;
        color: #fff;
    }

    header .abrirMenu.change span {
        opacity: 0;
    }

    header .abrirMenu div {
        width: 22px;
        height: 2px;
        background-color: #fff;
        margin: 4px 0 0;
        transition: 0.4s;
        position: relative;
        transform: rotate(0deg);
    }

    header .abrirMenu div.bar3 {
        margin-bottom: 0;
    }

    @keyframes topbarOpen {
        0% {
            top: 0px;
            transform: rotate(0deg);
            background: #fff;
        }

        50% {
            top: 6px;
            transform: rotate(0deg);
            background: #fff;
        }

        100% {
            top: 6px;
            transform: rotate(-45deg);
            background: #fff;
        }
    }

    @keyframes middlebarOpen {
        0% {
            width: 22px;
            left: 0;
        }

        100% {
            width: 0px;
            left: 11px;
        }
    }

    @keyframes bottombarOpen {
        0% {
            top: 0px;
            transform: rotate(0deg);
            background: #fff;
        }

        50% {
            top: -6px;
            transform: rotate(0deg);
            background: #fff;
        }

        100% {
            top: -6px;
            transform: rotate(45deg);
            background: #fff;
        }
    }

    header .abrirMenu.change .bar1 {
        animation: topbarOpen 1s;
        top: 6px;
        transform: rotate(-45deg);
        background: #fff;
    }

    /* Fade out the second bar */
    header .abrirMenu.change .bar2 {
        animation: middlebarOpen 0.5s;
        width: 0px;
        left: 11px;
    }

    /* Rotate last bar */
    header .abrirMenu.change .bar3 {
        animation: bottombarOpen 1s;
        top: -6px;
        transform: rotate(45deg);
        background: #fff;
    }

    @keyframes topbarClose {
        0% {
            top: 6px;
            transform: rotate(-45deg);
            background: #fff;
        }

        50% {
            top: 6px;
            transform: rotate(0deg);
            background: #fff;
        }

        100% {
            top: 0px;
            transform: rotate(0deg);
            background: #fff;
        }
    }

    @keyframes middlebarClose {
        0% {
            width: 0px;
            left: 11px;
        }

        100% {
            width: 22px;
            left: 0px;
        }
    }

    @keyframes bottombarClose {
        0% {
            top: -6px;
            transform: rotate(45deg);
            background: #fff;
        }

        50% {
            top: -6px;
            transform: rotate(0deg);
            background: #fff;
        }

        100% {
            top: 0px;
            transform: rotate(0deg);
            background: #fff;
        }
    }

    header .abrirMenu.close .bar1 {
        animation: topbarClose 1s;
        top: 0px;
        transform: rotate(0deg);
        background: #fff;
    }

    /* Fade out the second bar */
    header .abrirMenu.close .bar2 {
        animation: middlebarClose 0.5s;
        width: 22px;
        left: 0;
    }

    /* Rotate last bar */
    header .abrirMenu.close .bar3 {
        animation: bottombarClose 1s;
        top: 0px;
        transform: rotate(0deg);
        background: #fff;
    }

    header .menu {
        top: 45px;
        width: 100%;
        padding: 0 40px !important;
        display: block;
        background: rgb(124 62 24 / 76%);
        box-shadow: 0px 483px 135px 0px rgba(0, 0, 0, 0), 0px 309px 124px 0px rgba(0, 0, 0, 0.01), 0px 174px 104px 0px rgba(0, 0, 0, 0.05), 0px 77px 77px 0px rgba(0, 0, 0, 0.09), 0px 19px 42px 0px rgba(0, 0, 0, 0.1);
        border-radius: 40px;
        overflow: hidden;
        height: 0;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        left: 0;
        position: fixed;
        overflow-y: auto;
        display: block !important;
    }

    header .menu .nav-menu li a.active,
    header .menu .nav-menu li a:hover {
        color: #f1f1f1;
    }

    header .menu li {
        display: block;
        margin-bottom: 20px;
    }

    header .menu li a {
        display: inline-block;
    }

    header .menu li a:before {
        display: none;
    }

    header .menu.active {
        max-height: 1000px;
        z-index: 100;
        height: auto;
        padding: 40px !important;
    }

    header .menu li.last {
        position: relative;
        right: initial;
        margin: 0;
    }

    header .menu li .submenu li {
        margin: 10px 0 0;
        padding: 0;
    }

    header .menu li .submenu li a {
        max-width: 162px;
        border-radius: 50px;
    }
}

.header {
    padding-top: 22px;
}

.banner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    /* Cor de fundo para áreas não cobertas */
}

.banner-bg {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Mantém proporção em todas as resoluções */
    background-size: 100% auto;
    /* Preenche 100% da largura, ajusta altura proporcionalmente */
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
    /* Altura mínima padrão para evitar colapso */
}

/* Desktop: a partir de 992px */
@media (min-width: 992px) {
    .banner-bg {
        background-image: url(../img/banner-desk.png);
    }
}

/* Tablet: de 768px a 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .banner-bg {
        background-image: url(../img/banner-tablet.png);
    }
}

/* Mobile: até 767px */
@media (max-width: 767px) {
    .banner-bg {
        background-image: url(../img/banner-mobile.png);
    }

    .banner {
        width: 100%;
        max-width: 100%;
    }

    .banner-bg {
        width: 100%;
        aspect-ratio: 16 / 9;
        /* Mantém proporção */
        min-height: 150px;
        /* Altura mínima para mobile */
    }
}

/* Telas muito pequenas: até 360px */
@media (max-width: 360px) {
    .banner-bg {
        min-height: 120px;
        /* Altura mínima para telas pequenas */
    }
}


.info {
    background-image: url(../img/background-content.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.info_top {
    font-size: 24px;
    margin: 100px auto 80px auto;
    max-width: 1028px;
}

.info_block {
    background-image: url(../img/background-info-topv2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 80px;
    border: 1px solid #fff;
    background-blend-mode: multiply, normal;
    padding: 63px 120px;
    max-width: 1240px;
    margin: 0 auto;
}

.info_block_text {
    margin: 0;
    font-size: 28px;
    max-width: 874px;
}

.info_bottom {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    max-width: 1028px;
    margin: 56px auto 64px auto;
    padding: 30px 30px;
}

.info_bottom_text {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.info_bottom_bg::before {
    content: "";
    position: absolute;
    opacity: 0.4;
    top: 0;
    left: 0;
    background: #ed7485;
    box-shadow: 0px 124px 35px 0px rgba(92, 7, 20, 0), 0px 79px 32px 0px rgba(90, 8, 21, 0.01), 0px 45px 27px 0px rgba(93, 13, 25, 0.05), 0px 20px 20px 0px rgba(73, 6, 16, 0.09), 0px 5px 11px 0px rgba(128, 21, 37, 0.1);
    width: 100%;
    height: 100%;
    border-radius: 32px;
}

@media (max-width: 991px) {
    .info_block {
        padding: 63px 56px;
        max-width: 877px;
    }
}

@media (max-width: 820px) {
    .info_block {
        padding: 63px 56px;
        max-width: 777px;
    }
}

@media (max-width: 576px) {
    .info_top {
        font-size: 20px;
        margin: 50px auto 40px auto;
    }

    .info_block {
        padding: 33px 50px;
        border-radius: 40px;
        max-width: 550px;
    }

    .info_block_text {
        margin: 0 auto;
        font-size: 20px;
    }

    .info_bottom_text {
        font-size: 20px;
    }

    .info_bottom {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .info_top {
        font-size: 20px;
        margin: 50px auto 40px auto;
    }

    .info_block {
        padding: 33px 50px;
        border-radius: 40px;
        max-width: 450px;
    }

    .info_block_text {
        margin: 0 auto;
        font-size: 20px;
    }

    .info_bottom_text {
        font-size: 20px;
    }

    .info_bottom {
        max-width: 430px;
    }
}

@media (max-width: 401px) {
    .info_top {
        font-size: 20px;
        margin: 50px auto 40px auto;
    }

    .info_block {
        padding: 33px 50px;
        border-radius: 40px;
        max-width: 380px;
    }

    .info_block_text {
        margin: 0 auto;
        font-size: 20px;
    }

    .info_bottom_text {
        font-size: 20px;
    }

    .info_bottom {
        max-width: 370px;
    }
}

.projeto_titulo {
    background: #b3002e;
    color: white;
    padding-top: 100px;
}

.titulo {
    text-align: center;
    font-size: 48px;
    padding-bottom: 62px;
    margin-bottom: 0;
}

.projeto {
    background: #b3002e;
    color: white;
    padding-bottom: 100px;
}

.projeto .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.projeto h3 {
    font-size: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.projeto p {
    font-size: 20px;
    margin-bottom: 48px;
}

.botao {
    display: inline-flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #f18195;
    color: #fff;
    text-align: center;
    font-family: "gotham-narrow", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    text-decoration: none;
}


.botao:hover {
    background: #fff;
    color: #f18195;
    transition: all 0.5s ease;
}

.card-ep {
    max-width: 100%;
    width: 100%;
    border-radius: 32px 32px 0px 0px;
    margin-bottom: 32px;
}

.card-ep img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 32px 32px 0px 0px;
}

.card-texto {
    font-size: 16px;
    border: 1px solid #fff;
    border-radius: 0 0 32px 32px;
    border-top: none;
    background: transparent;
    flex: 1;
}

.card-texto p {
    font-size: 16px;
    padding: 24px;
    margin: 0;
}

.sticky-col {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    z-index: 1;
    /* height: fit-content;
    max-height: calc(100vh - 100px);
    overflow-y: auto; */
}

@media (max-width: 991px) {
    .sticky-col {
        all: revert !important;
    }
}

/* Empilhar colunas e desativar sticky em ≤ 991px */
@media (max-width: 991px) {

    .projeto .col-md-7,
    .projeto .col-md-5 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

/* Colunas lado a lado em ≥ 992px com sticky funcional */
@media (min-width: 992px) {
    .projeto .row.justify-content-center>.col-12 {
        display: flex;
    }

    .projeto .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .projeto .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
}

/* Ajustes para telas muito pequenas (≤ 360px) */
@media (max-width: 360px) {
    .titulo {
        font-size: 32px;
        /* Reduzir tamanho do título */
        margin-bottom: 40px;
    }

    .projeto h3 {
        font-size: 18px;
    }

    .projeto p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .botao {
        font-size: 16px;
        padding: 10px 20px;
    }

    .card-ep {
        max-width: 100%;
        /* Ajustar cards para telas pequenas */
    }

    .card-texto p {
        font-size: 14px;
        padding: 16px;
    }
}

@media (max-width: 576px) {
    .projeto p {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .botao {
        font-size: 16px;
        margin-left: 29px;
    }

    .card-ep {
        margin: 20px auto;
    }
}

@media (max-width: 500px) {
    .botao {
        margin-left: 0 !important;
        font-size: 12px;
    }

    .projeto p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .projeto h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.projeto .col-sm-5 .row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.projeto .col-sm-5 .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
}

.fixed {
    position: fixed;
    top: 100px;
    width: 41.666667%;
    /* Igual ao .col-sm-5 */
    max-width: 41.666667%;
}

/* Evita que o conteúdo da direita seja sobreposto */
.projeto .coluna-direita {
    margin-left: auto;
}

@media (max-width: 991px) {

    .projeto .col-sm-7,
    .projeto .col-sm-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .projeto {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .projeto p {
        font-size: 20px;
        margin-bottom: 14px;
    }

    /* Remover possíveis bordas verticais entre colunas */
    .projeto .col-sm-7,
    .projeto .col-sm-5 {
        border: none !important;
    }

    /* Ajustar o background do container para garantir que não apareça linha */
    .projeto .container {
        background: #b3002e;
        /* mesma cor do projeto para "fechar" a linha */
    }
}

@media (min-width: 992px) {}

.lupus {
    padding: 96px 0 68px 0;
    background-color: #f7f7f7;
}

.lupus h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.lupus h5 {
    font-size: 24px;
    margin: 44px 0 16px;
}

.lupus h6 {
    font-size: 24px;
    margin-bottom: 23px;
    max-width: 742px;
}

.lupus p {
    font-size: 16px;
    margin-bottom: 16px;
    max-width: 1028px;
}

.box-lupus {
    display: flex;
    padding: 32px;
    justify-content: center;
    align-items: flex-start;
    border-radius: 32px;
    max-width: 1028px;
    margin-bottom: 32px;
}

.box-bg {
    background: #FE4D5B;
}

.box-bg2 {
    background: #F1324D;
}

.box-bg3 {
    background: #E2143E;
}

.box-bg4 {
    background: #D10132;
}

.img-box-lupus {
    max-width: 360px;
    align-self: stretch;
    border-radius: 24px;
}

.box-lupus h6 {
    font-size: 24px;
    align-self: stretch;
    margin-bottom: 16px;
}

.box-lupus p {
    font-size: 16px;
    margin: 0;
}

.lupus .margin-ajuste {
    margin: 28px 0 40px;
}

.lupus .p-right {
    font-size: 16px;
    margin-bottom: 60px;
}

.lupus .p-left {
    font-size: 20px;
    margin-bottom: 60px;
    max-width: 372px;
}

.no-gutter-md {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.lupus-box {
    width: 180px;
    height: 112px;
    padding: 21px 0 16px;
    margin-bottom: 32px;
    flex-shrink: 0;
    border-radius: 24px;
    background: #fbd7d9;
    box-shadow: 0px 124px 35px 0px rgba(92, 7, 20, 0), 0px 79px 32px 0px rgba(90, 8, 21, 0.01), 0px 45px 27px 0px rgba(93, 13, 25, 0.05), 0px 20px 20px 0px rgba(73, 6, 16, 0.09), 0px 5px 11px 0px rgba(128, 21, 37, 0.1);
    max-width: 100%;
}

@media (min-width: 768px) and (max-width: 820px) {
    .lupus-box {
        width: 135px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .lupus-row {
        justify-content: center !important;
    }
}

.lupus .margin-ajuste-2 {
    margin: 0 0 24px 0;
}

.lupus .p-top {
    font-size: 20px;
    margin-bottom: 24px;
}

.lupus .p-bottom {
    font-size: 16px;
    margin-bottom: 32px;
}

.lupus .lupos-p-end {
    margin-bottom: 32px;
    padding-right: 0 !important;
}

/* Adicione uma media query para responsivo */
@media (max-width: 991px) {
    .box-lupus {
        padding: 12px;
    }

    .box-lupus p {
        font-size: 12px;
    }

    .box-lupus h6 {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

/* Adicione uma media query para responsivo */
@media (max-width: 768px) {
    .box-lupus {
        flex-direction: column;
        align-items: center;
        /* Centraliza os itens na vertical */
        text-align: center;
        flex-wrap: wrap;
        /* Adicionado para permitir quebra no responsivo */
    }

    .box-lupus .col-md-5,
    .box-lupus .col-md-7 {
        width: 100%;
        padding: 0;
    }

    .img-box-lupus {
        max-width: 100%;
        height: auto;
    }

    .box-lupus h6 {
        margin-top: 16px;
    }

    .lupus .p-right {
        font-size: 16px;
        margin-bottom: 60px;
        max-width: 372px;
        padding-left: 15px;
    }
}

@media (max-width: 500px) {
    .lupus .p-right {
        max-width: 300px;
        padding-left: 35px;
    }
}

.sintomas {
    padding: 100px 0 100px;
    background-image: url(../img/background-sintomas-section.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* border: 1px solid #fff; */
    background-blend-mode: multiply, normal;
    margin: 0 auto;
}

.sintomas h3 {
    font-size: 24px;
    margin-bottom: 40px;
}

.sintomas h5 {
    font-size: 24px;
    margin: 60px 0 16px;
}

.sintomas h6 {
    font-size: 24px;
    margin-bottom: 23px;
    max-width: 742px;
}

.subtitulo_sintomas {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    max-width: 1027px;
    margin: 0 auto 60px auto;
    padding: 33px 33px;
    /* background: rgba(237 116 133, 0.4);
    box-shadow: 0px 124px 35px 0px rgba(92, 7, 20, 0), 0px 79px 32px 0px rgba(90, 8, 21, 0.01), 0px 45px 27px 0px rgba(93, 13, 25, 0.05), 0px 20px 20px 0px rgba(73, 6, 16, 0.09), 0px 5px 11px 0px rgba(128, 21, 37, 0.1);
    border-radius: 32px; */
}

.subtitulo_sintomas_text {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.subtitulo_sintomas_bg::before {
    content: "";
    position: absolute;
    opacity: 0.4;
    top: 0;
    left: 0;
    background: #ed7485;
    box-shadow: 0px 124px 35px 0px rgba(92, 7, 20, 0), 0px 79px 32px 0px rgba(90, 8, 21, 0.01), 0px 45px 27px 0px rgba(93, 13, 25, 0.05), 0px 20px 20px 0px rgba(73, 6, 16, 0.09), 0px 5px 11px 0px rgba(128, 21, 37, 0.1);
    width: 100%;
    height: 100%;
    border-radius: 32px;
}

.sintomas .box-sintomas {
    max-width: 321px;
    height: 153px;
    flex-shrink: 0;
    border-radius: 32px;
    padding: 32px 116px;
    margin-bottom: 18px;
    background: #ed7485;
    box-shadow: 0px 124px 35px 0px rgba(92, 7, 20, 0), 0px 79px 32px 0px rgba(90, 8, 21, 0.01), 0px 45px 27px 0px rgba(93, 13, 25, 0.05), 0px 20px 20px 0px rgba(73, 6, 16, 0.09), 0px 5px 11px 0px rgba(128, 21, 37, 0.1);
}

.sintomas .icon-sintomas {
    width: 107px;
    height: 83px;
    flex-shrink: 0;
}

.sintomas .text-box-sintomas {
    font-size: 16px;
    margin-bottom: 60px;
}

.sintomas .sintomas-p {
    font-size: 16px;
    margin-bottom: 60px;
    max-width: 1028px;
}

.sintomas .box-sintomas-white {
    border-radius: 60px;
    border: 1px solid #fff;
    background: #ffffffe5;
    background-blend-mode: multiply, normal;
    padding: 60px 100px 60px 100px;
    max-width: 1240px;
}

@media (max-width: 1199px) {
    .sintomas .box-sintomas-white {
        padding: 60px;
    }
}

.sintomas .box-sintomas-white .text-red {
    font-size: 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.sintomas .box-sintomas-white .text-black {
    font-size: 16px;
    margin-bottom: 32px;
}

.linha-sintoma {
    border-top: 1px solid #ffa196;
    padding-top: 32px;
}

.linha-sintoma.no-border {
    border-top: 0;
    padding-top: 0;
}

@media (max-width: 1199px) {
    .img-box-lupus {
        width: 278px;
    }
}

@media (max-width: 991px) {
    .sintomas .box-sintomas {
        padding: 32px 0px;
    }

    .sintomas .box-sintomas-white {
        max-width: 874px;
    }
}

@media (max-width: 820px) {
    .sintomas .box-sintomas-white {
        max-width: 730px;
        padding: 30px 50px;
    }
}

@media (max-width: 768px) {
    .sintomas .box-sintomas-white {
        max-width: 702px;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .subtitulo_sintomas_text {
        font-size: 20px;
        position: relative;
        z-index: 1;
    }

    .sintomas h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .sintomas .box-sintomas {
        margin: 10px auto;
    }

    .sintomas .box-sintomas-white {
        max-width: 520px;
    }
}

@media (max-width: 480px) {
    .sintomas .box-sintomas-white {
        max-width: 430px;
    }
}

@media (max-width: 401px) {
    .sintomas .box-sintomas-white {
        max-width: 360px;
    }
}

.tratamento {
    padding: 100px 0 60px 0;
    background-color: #f7f7f7;
}

.tratamento h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.tratamento h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.tratamento p {
    font-size: 16px;
    margin-bottom: 24px;
}

.magin-ajuste-3 {
    margin: 36px 0 40px 0;
}

.columns-5-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 27px 23px 26px 23px;
    border-radius: 24px;
    background: #ee5e52;
    box-shadow: 0px 124px 35px 0px rgba(92, 7, 20, 0), 0px 79px 32px 0px rgba(90, 8, 21, 0.01), 0px 45px 27px 0px rgba(93, 13, 25, 0.05), 0px 20px 20px 0px rgba(73, 6, 16, 0.09), 0px 5px 11px 0px rgba(128, 21, 37, 0.1);
    max-width: 1028px;
    height: auto;
}

.column-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    white-space: nowrap;
    min-width: 0;
    box-sizing: border-box;
}

.column-item .icon-img {
    height: 27px;
    margin-right: 10px;
}

@media (max-width: 1199px) {
    .columns-5-wrapper {
        flex-direction: column;
        width: 675px;
    }
}

@media (max-width: 820px) {
    .columns-5-wrapper {
        display: flex;
        align-items: start;
    }
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
    .columns-5-wrapper {
        width: 376px;
        display: flex;
        flex-direction: column;
        align-items: inherit;
        margin: 0 auto;
    }

    .column-item {
        flex: 1 1 20%;
        /* A coluna ocupa 20% do espaço, mas se ajusta conforme necessário */
    }
}

@media (max-width: 401px) {
    .columns-5-wrapper {
        max-width: 335;
    }

}

.faq-box {
    padding: 40px 106px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    background: #fff;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #ffa196;
    padding: 24px 0 0 0;
}

.accordion-button {
    background: none;
    border: none;
    color: #000;
    font-family: "Go", sans-serif;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    text-align: left;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    box-shadow: none !important;
}

.accordion-button sup {
    font-size: 12px;
    vertical-align: super;
}

.accordion-button .toggle-icon {
    font-size: 20px;
    font-weight: bold;
    color: #2d2d2d;
    transition: transform 0.3s ease;
}

.accordion-item.active .toggle-icon::before {
    content: "X";
    font-size: 14px;
}

.accordion-button .toggle-icon::before {
    content: "+";
}

.accordion-content {
    display: none;
    padding-top: 12px;
    font-family: "Arial", sans-serif;
    font-weight: 300;
    color: #000;
    line-height: 1.5;
    font-size: 16px;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-button::after {
    display: none;
}

.accordion-button:not(.collapsed) {
    color: var(--black, #2d2d2d);
    font-family: gotham;
    font-size: 20px;
    font-style: normal;
    font-weight: 350;
    line-height: 130%;
    background-color: #fff;
    margin-bottom: 24px;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.accordion-button sup {
    margin-left: 2px;
    /* ou 0, se quiser completamente colado */
    font-size: 0.6em;
    vertical-align: top;
}

.accordion-title {
    display: inline-flex;
    align-items: flex-start;
    font-weight: bold;
}

.accordion-title sup {
    font-size: 10px;
    vertical-align: text-top;
    position: relative;
    top: 7px;
}

.mitos {
    background-color: #ee5e52;
    padding: 100px 0 68px 0;
}

.mitos h3 {
    margin-bottom: 24px;
    font-size: 24px;
}

.mitos h4 {
    margin-bottom: 16px;
    font-size: 20px;
}

.mitos p {
    margin-bottom: 24px;
    font-size: 16px;
}

.mitos .box-mitos {
    background-image: url("../img/background-mitos.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 498px;
    height: 321px;
    flex-shrink: 0;
    border-radius: 32px;
    margin: 0 4px 0 4px;
    margin-bottom: 32px;
}

.box-mitos-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mitos .box-mitos-body p {
    margin: 0;
    text-align: center;
    font-size: 28px;
}

.mitos .box-mitos-body .box-text1 {
    padding: 80px 0 72px 0;
}

.mitos .box-mitos-body .box-text2 {
    padding: 80px 0 72px 0;
}

.mitos .box-mitos-body .box-text3 {
    padding: 80px 0 72px 0;
}

.mitos .box-mitos-body .box-text4 {
    padding: 80px 0 36px 0;
}

.mitos .box-mitos-body .box-text5 {
    padding: 80px 0 36px 0;
}

.mitos .box-mitos-body .box-text6 {
    padding: 86px 0 72px 0;
}

.mitos .box-mitos-body .box-text7 {
    padding: 80px 0 36px 0;
}

.mitos .box-mitos-body .box-text8 {
    padding: 55px 0 25px 0;
}

.mitos .box-mitos-body img {
    text-align: center;
    cursor: pointer;
}

.box-mitos-body {
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
    background-color: transparent;
    border-radius: 32px;
    min-height: 180px;
}

.box-mitos.flipped .box-mitos-body {
    transform: rotateY(180deg);
}

.box-mitos-body p,
.box-mitos-body img {
    backface-visibility: hidden;
    position: relative;
    z-index: 2;
}

.card-back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 19px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotateY(180deg);
    max-width: 498px;
    height: 321px;
    border-radius: 32px;
    color: #fff;
    font-family: ;
    font-size: 16px;
    font-style: normal;
    font-weight: 325;
    line-height: 130%;
    z-index: 1;
}

.card-back .veredito {
    font-size: 20px;
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 16px;
}

.card-back .card-back-text {
    font-size: 16px;
    text-align: left;
}

.box-mitos.verdade .card-back {
    background-color: #28a745;
}

.box-mitos.mito .card-back {
    background-color: #dc3545;
}

@media (max-width: 991px) {
    .mitos .box-mitos-body p {
        font-size: 20px;
    }

    .card-back .card-back-text {
        font-size: 13px;
    }

    .card-back .veredito {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

@media (max-width: 576px) {
    .mitos .box-mitos-body p {
        font-size: 20px;
    }

    .card-back .card-back-text {
        font-size: 16px;
    }

    .card-back .veredito {
        font-size: 20px;
        margin-bottom: 4px;
    }
}

@media (max-width: 575px) {
    .row>* {
        padding-right: 31px;
        padding-left: 32px;
    }
}

.ref {
    padding: 68px 0 0 0;
    background-color: #f7f7f7;
}

@media (max-width: 991px) {
    .ref {
        padding: 89px 0 0 0;
    }
}

@media (max-width: 575px) {
    .ref {
        padding: 28px 0 0 0;
    }
}

.ref_title {
    font-size: 16px;
    margin: 0 0 0 0;
}

@media (max-width: 575px) {
    .ref_title {
        font-size: 12px;
    }
}

.ref_subtitle {
    font-size: 16px;
    margin: 44px 0 11px 0;
}

@media (max-width: 575px) {
    .ref_subtitle {
        font-size: 12px;
        margin: 31px 0 19px 0;
    }
}

.ref_wrapper {
    padding: 48px 0 68px 0;
    border-top: solid 2px #d9dbe9;
    max-width: 1033px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .ref_wrapper {
        padding: 50px 0 85px 0;
    }
}

@media (max-width: 575px) {
    .ref_wrapper {
        padding: 20px 0 36px 0;
    }
}

.ref_list {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    list-style-type: none;
}

.ref_list_item {
    position: relative;
    padding: 0 0 0 30px;
}

@media (max-width: 575px) {
    .ref_list_item {
        padding: 0 0 0 12px;
    }
}

.ref_list_item_text {
    font-size: 16px;
    margin: 0 0 0 0;
}

@media (max-width: 575px) {
    .ref_list_item_text {
        font-size: 7.373px;
    }
}

.ref_list_item_text::before {
    font-family: "paralucent", sans-serif;
    color: #111;
    font-size: 16px;
    position: absolute;
    left: 6px;
    top: 0px;
    font-weight: 300;
}

@media (max-width: 575px) {
    .ref_list_item_text::before {
        font-size: 7.373px;
    }
}

.ref_list_item_text_1.ref_list_item_text::before {
    content: "1.";
}

.ref_list_item_text_2.ref_list_item_text::before {
    content: "2.";
}

.ref_list_item_text_3.ref_list_item_text::before {
    content: "3.";
}

.ref_list_item_text_4.ref_list_item_text::before {
    content: "4.";
}

.ref_list_item_text_5.ref_list_item_text::before {
    content: "5.";
}

.ref_list_item_text_6.ref_list_item_text::before {
    content: "6.";
}

.ref_list_item_text_7.ref_list_item_text::before {
    content: "7.";
}

.ref_list_item_text_8.ref_list_item_text::before {
    content: "8.";
}

.ref_list_item_text_9.ref_list_item_text::before {
    content: "9.";
}

.ref_list_item_text_10.ref_list_item_text::before {
    content: "10.";
}

.ref_list_item_text_11.ref_list_item_text::before {
    content: "11.";
}

.ref_list_item_text_12.ref_list_item_text::before {
    content: "12.";
}

.ref_list_item_text_13.ref_list_item_text::before {
    content: "13.";
}

.ref_list_item_text_14.ref_list_item_text::before {
    content: "14.";
}

.ref_list_item_text_15.ref_list_item_text::before {
    content: "15.";
}

.ref_list_item_text_16.ref_list_item_text::before {
    content: "16.";
}

.ref_list_item_text_17.ref_list_item_text::before {
    content: "17.";
}

.ref_list_item_text_18.ref_list_item_text::before {
    content: "18.";
}

.ref_list_item_text_19.ref_list_item_text::before {
    content: "19.";
}

.ref_list_item_text_20.ref_list_item_text::before {
    content: "20.";
}

.footer {
    padding: 28px 0 28px 0;
}

@media (max-width: 575px) {
    .footer {
        padding: 19px 0 19px 0;
    }
}

.footer_link {
    text-transform: uppercase;
    font-size: 12px;
    width: 125px;
}

@media (max-width: 575px) {
    .footer_link {
        text-transform: uppercase;
        font-size: 7.406px;
    }
}

.underline {
    text-decoration: underline;
    cursor: pointer;
}

.footer_top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 575px) {
    .footer_top {
        gap: 8px;
    }
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.footer_disclaimer {
    font-size: 12px;
    padding-top: 40px;
}

@media (max-width: 575px) {
    .footer_disclaimer {
        font-size: 7.406px;
    }
}

.footer_logo {
    max-width: 189px;
}

@media (max-width: 575px) {
    .footer_logo {
        max-width: 132px;
    }
}

.info_icons sup {
    top: -0.55em;
    font-size: 0.6em;
    font-weight: 300;
}

@media (max-width: 991.8px) {

    html,
    body {
        overflow-x: hidden;
    }

    header .menu {
        width: 100%;
        box-sizing: border-box;
    }

    header .menu li a {
        white-space: normal;
    }
}

@media (max-width: 991px) {
    .mitos .row .row>* {
        padding-left: 0;
        padding-right: 0;
    }
}