/* Fonts */
@font-face {
    font-family: 'Helvetica Neue LT Pro';
    src: url('../fonts/HelveticaNeueLTPro-Roman.eot');
    src: url('../fonts/HelveticaNeueLTPro-Roman.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HelveticaNeueLTPro-Roman.woff2') format('woff2'),
        url('../fonts/HelveticaNeueLTPro-Roman.woff') format('woff'),
        url('../fonts/HelveticaNeueLTPro-Roman.ttf') format('truetype'),
        url('../fonts/HelveticaNeueLTPro-Roman.svg#HelveticaNeueLTPro-Roman') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue LT Pro';
    src: url('../fonts/HelveticaNeueLTPro-Bd.eot');
    src: url('../fonts/HelveticaNeueLTPro-Bd.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HelveticaNeueLTPro-Bd.woff2') format('woff2'),
        url('../fonts/HelveticaNeueLTPro-Bd.woff') format('woff'),
        url('../fonts/HelveticaNeueLTPro-Bd.ttf') format('truetype'),
        url('../fonts/HelveticaNeueLTPro-Bd.svg#HelveticaNeueLTPro-Bd') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue LT Pro';
    src: url('../fonts/HelveticaNeueLTPro-BlkCn.eot');
    src: url('../fonts/HelveticaNeueLTPro-BlkCn.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HelveticaNeueLTPro-BlkCn.woff2') format('woff2'),
        url('../fonts/HelveticaNeueLTPro-BlkCn.woff') format('woff'),
        url('../fonts/HelveticaNeueLTPro-BlkCn.ttf') format('truetype'),
        url('../fonts/HelveticaNeueLTPro-BlkCn.svg#HelveticaNeueLTPro-BlkCn') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

html {
    height: 100%;
}

/* Variables */

:root {
    --color-black:       #000;
    --color-white:       #fff;
    --color-pink:        #8A0351;
    --color-red:         #AC182E;
    --color-blue:        #eef3fa;
    --color-blue-dark:   #1E3971;
    --color-blue-light:  #7099D3;
    --color-yellow:      #EAC102;
    --color-neutral-100: #FAFAFA;
    --color-neutral-700: #3E4647;
    --color-neutral-900: #111827;
    --font-size-default: 20px;
    --font-family-default: 'Helvetica Neue LT Pro';
    --line-height-default: 28px;
}

/* General */
body {
    color: #3C4242;
    line-height: 1.5;
    height: 100%;
    font-family: 'Helvetica Neue LT Pro';
    background: #ffffff;
    font-weight: 400;
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {

}

a {
    transition: all .3s ease;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}
select:focus, :focus {
    outline: 0;
    box-shadow: none;
}
.container {
    padding: 0 60px;
    max-width: 1920px;
    margin: 0 auto;
}
ul {
    margin: 0;
    padding: 0;
}
ul li {
    position: relative;
    list-style: none;
}
/* banner */
.banner {
    position: relative;
    background: url(../img/home/banner.jpg) top center/cover no-repeat;
    display: flex;
    width: 100%;
    align-items: center;
    padding: 50px 0 70px;
}
.banner .bradcrumb p {
    margin: 0;
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 20px;
}
.banner .text {
    margin: 30px 0 50px;
    max-width: 650px;
}
.banner .text p {
    color: #ffffff;
}
.banner .shortcuts p {
    font-size: 12px;
    margin-bottom: 20px;
    color: #ffffff;
}
.banner .shortcuts ul li {
    position: relative;
    max-width: 580px;
    font-size: 18px;
    line-height: 1.5;
    background-color: #FFF8FA;
    padding: 25px;
    margin-bottom: 2px;
    border-left: #FFD6B0 solid 4px;
}
.banner .shortcuts ul li a {
    color: #505050;
}
.banner .shortcuts ul .blocked::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 18px;
    background-size: 12px;
    background-repeat: no-repeat;
    top: 28px;
    background-image: url(../img/home/cadeado.svg);
    margin-left: 10px;
}
.banner .shortcuts ul li.active {
    background-color: #FCF0E5;
    border-left: #B67C45 solid 4px;
}
.banner .shortcuts ul li.active a {
    color: #B67C45;
    font-weight: 700;
}
.about {
    background-color: #F8F8F8;
}
.about .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.about .grid .img {
    position: relative;
    background: url(../img/home/thumb-full.png) top center/cover no-repeat;
    display: flex;
    width: 100%;
    align-items: center;
}
.about .grid .text {
    padding: 70px 50px 50px;
}
.about .grid .text .item {
    position: relative;
    padding-left: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.about .grid .text .item .desc {
    margin-top: 10px;
}
.about .grid .text .item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    width: 3px;
    background-color: #D0006F;
}
.about .grid .text .item h3 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 0;
    color: #161649;
    font-weight: 700;
}
.about .grid .text .item p {
    margin: 0;
}
.about .grid  .title h2 {
    color: #161649;
    font-size: 34px;
    line-height: 34px;
    text-transform: uppercase;
    margin: 50px 0 30px;
}
.about .grid .title h2 strong {
    font-weight: 700;
}
.about .grid .ref {
    margin-top: 50px;
}
.about .grid .ref p {
    font-size: 12px;
    margin-bottom: 0;
}
.pillars {
    padding: 90px 0;
}
.pillars .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pillars .title h2 {
    font-size: 40px;
    text-transform: uppercase;
    color: #161649;
}
.pillars .title .bt {
    text-align: center;
}
.pillars .title .bt .btn {
    position: relative;
    background-color: #FFB000;
    color: #0D0F29;
    font-weight: 600;
    padding: 12px 60px 8px 30px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.pillars .title .bt .btn::after {
    content: '';
    position: absolute;
    width: 13px;
    background-size: 13px;
    height: 18px;
    margin-left: 12px;
    top: 12px;
    background-image: url(../img/home/cadeado-black.svg);
}
.pillars .title .bt p {
    font-size: 12px;
    color: #8D8D8D;
}
.pillars .title .bt p a {
    font-weight: 700;
    color: #8D8D8D;
}
.pillars .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
    padding-top: 70px;
}
.pillars .grid .item .icon {
    min-height: 90px;
}
.pillars .grid .item .text h3 {
    color: #161649;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 20px 0;
}
.pillars .grid .item .text a {
    color: #8B1D56;
    font-weight: 700;
}
.portfolio {
    padding: 90px 0;
    text-align: center;
    background-color: #8B1D56;
}
.portfolio h2 {
    font-size: 40px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.portfolio h5 {
    position: relative;
    font-size: 18px;
    color: #FFD684;
    font-weight: 700;
    margin-bottom: 30px;
    padding: 15px 0 10px;
}
.portfolio h5::after {
    content: '';
    position: absolute;
    top: 0;
    width: 640px;
    height: 4px;
    background-color: #D0006F;
    left: 50%;
    transform: translateX(-50%);
}
.portfolio h5::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 640px;
    height: 4px;
    background-color: #D0006F;
    left: 50%;
    transform: translateX(-50%);
}
.portfolio .btn {
    position: relative;
    background-color: #FFB000;
    color: #8B1D56;
    font-weight: 600;
    padding: 12px 60px 8px 30px;
    border-radius: 100px;
    margin-bottom: 30px;
}
.portfolio .btn::after {
    content: '';
    position: absolute;
    width: 13px;
    background-size: 13px;
    height: 18px;
    margin-left: 12px;
    top: 12px;
    background-image: url(../img/home/cadeado-roxo.svg);
}
.portfolio p {
    font-size: 12px;
    color: #ffffff;
    margin: 0;
}
.portfolio p a {
    font-weight: 600;
    color: #ffffff;
}
.therapeutic-lines {
    padding: 120px 0;
    background-color: #F5F5F5;
}
.therapeutic-lines h2 {
   color: #161649;
   font-size: 40px; 
   margin-bottom: 70px;
   text-align: center;
}
.therapeutic-lines .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.therapeutic-lines .grid .item {
    margin-bottom: 50px;
}
.therapeutic-lines .grid .item .text {
    display: grid;
    grid-template-columns: 1fr 35%;
}
.therapeutic-lines .grid .item .title {
    background: linear-gradient(to right, #F3F1F9, transparent);
    padding: 20px;
    display: flex;
    align-items: center;
}
.therapeutic-lines .grid .item .title .tag img {
    width: 40px;
    margin-right: 10px;
}
.therapeutic-lines .grid .item .title h3 {
    font-size: 18px;
    color: #78184F;
    font-weight: 700;
    margin: 0;
    margin-top: 5px;
}
.therapeutic-lines .grid .item a {
    background: #251860;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.articles {
    padding: 90px 0 50px;
}
.articles .title h2 {
    margin-bottom: 50px;
    font-size: 40px;
    color: #153762;
}
.articles .list-full .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.articles .list-full {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.articles .list-item {
    display: flex;
    border-radius: 100px;
    border: solid 2px #FCA1EA ;
    color: #78184F;
    font-weight: 600;
    padding: 10px 15px 7px;
}
.articles a.list-item.active {
    border: solid 2px #C42075;
    background-color: #FFF1F5;
}
.articles .list-item img {
    width: 35px;
    margin-right: 10px;
}
.articles .article-card .card {
    border-radius: unset;
    background: #F8F8F8;
    border: unset;
    padding: 20px;
    margin-bottom: 30px;
}
.articles .article-card .card h5 {
    color: #161649;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}
.articles .article-card .card a, .articles .bt a {
    color: #891D56;
    font-weight: 700;
}
.articles .article-card .card p.category {
    display: none;
}
.articles .bt {
    text-align: right;
}
.articles .ref {
    font-size: 12px;
    margin: 90px 0 0;
}
.banners .fazbem {
    margin-bottom: 5px;
}
.content-portfolio {
    padding: 50px 0 90px;
}
.content-portfolio.articles .itens {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}
.content-portfolio.articles .article-card .card {
    border-radius: unset;
    background: transparent;
    padding: 0;
    margin-bottom: 50px;
}
.content-portfolio.articles .article-card .card .thumb img {
    max-width: 280px;
}
.content-portfolio.articles .article-card .card .thumb {
    border-radius: 10px;
    background: transparent;
    border: solid 1px #E3E3E3;
    padding: 0;
    margin-bottom: 20px;
    min-height: 220px;
    display: flex;
    justify-content: center;
}
.content-portfolio.articles .card-body {
    padding: 0;
}
.content-portfolio.articles .article-card .card p {
    min-height: 120px;
}
.content-portfolio .bradcrumb p {
    font-size: 12px;
}
.content-portfolio .bradcrumb p strong {
    color: #C0136D;
}
.content-portfolio.articles .title h2 {
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 30px;
    font-size: 40px;
    color: #161649;
}
.content-portfolio.articles .title p {
    margin-bottom: 30px;
}
.port-int.therapeutic-lines {
    padding: 90px 0;
}
.port-int.therapeutic-lines h2 {
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 50px;
}
.port-int.therapeutic-lines .grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.port-int.therapeutic-lines .grid .item .text {
    display: grid;
    grid-template-columns: 1fr 14%;
}
.descktop-none {
    display: none;
}
/* Responsive */
@media (max-width: 1500px) {
    .port-int.therapeutic-lines .grid,   .content-portfolio.articles .itens  {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 1199px) {
    .about .grid {
        grid-template-columns: 1fr;
    }
    .therapeutic-lines .grid {
        grid-template-columns: 1fr 1fr;
    }
    .pillars .grid {
        grid-template-columns: 1fr 1fr;
    }
    .portfolio h2 br {
        display: none;
    }
    .port-int.therapeutic-lines .grid,   .content-portfolio.articles .itens  {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 991px) {
    .mobile-none {
        display: none;
    }
    .mobile-block {
        display: block;
    }
    .container {
        padding: 0 30px;
    }
    h2 {
        font-size: 32px!important;
    }
    h2 br, .about .grid p br {
        display: none;
    } 
    .about .grid .text {
        padding: 60px 30px;
    }
    .pillars .title {
        display: grid;
        justify-content: center;
    }
    .pillars .grid, .therapeutic-lines .grid {
        grid-template-columns: 1fr;
    }
    .therapeutic-lines .grid .item .thumb img {
        width: 100%;
    }
    .articles .col-lg-5 {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .portfolio h5::before, .portfolio h5::after {
        width: 100%;
    }
    .pillars {
        overflow: hidden;
        padding: 60px 0;
    }
    .pillars .title h2 {
        text-align: left;
    }
    .pillars .grid {
        text-align: center;
    }
    .portfolio, .therapeutic-lines, .articles {
        padding: 60px 0;
    }
    .therapeutic-lines h2 {
        margin-bottom: 30px;
    }
    .therapeutic-lines .grid .item .text {
        grid-template-columns: 1fr 40%;
    }
    .port-int.therapeutic-lines .grid,   .content-portfolio.articles .itens  {
        grid-template-columns: 1fr;
    }
    .port-int.therapeutic-lines {
        padding: 60px 0;
    }
    .banner {
        background-position-x: left;
    }
    .about .grid .img {
        display: none;
    }
    .pillars .title .bt {
        display: none;
    }
    .portfolio {
        border: solid 20px #fff;
        border-radius: 30px;
    }
    .portfolio .btn:after, .portfolio p {
        display: none;
    }
    .portfolio .btn {
        padding: 12px 30px 8px 30px;
        border-radius: 10px;
        margin-bottom: 0px;
    }
    .portfolio h5 {
        margin-bottom: 50px;
    }
    .therapeutic-lines .grid .item .title {
        gap: 10px;
    }
    .therapeutic-lines .grid .item .thumb img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .therapeutic-lines .grid .item .title {
        border-bottom-left-radius: 10px;
    }
    .therapeutic-lines .grid .item a {
        border-bottom-right-radius: 10px;
    }
    .articles {
        overflow: hidden;
    }
    .articles .list-full {
        margin-bottom: 30px;
    }
    .articles .list-full .swiper-wrapper {
        display: flex;
        align-items: center;
        flex-wrap: unset;
        gap: 0;
        margin-bottom: 0;
    }
    .articles .list-full .swiper-wrapper .swiper-slide, .swiper-wrapper {
        height: auto!important;
        min-height: 50px;
        align-items: center;
        text-align: center;
    }
    .articles a.list-item {
        gap: 5px;
        justify-content: center;
    }
    .articles a.list-item span{
        text-align: left;
    } 
    .articles .list-item {
        font-size: 14px;
        line-height: 16px;
    }
    .pillars .grid {
        display: flex; /* Swiper controlará a exibição dos slides no mobile */
    }
    .banners {
        display: grid;
        gap: 20px;
        padding: 30px;
    }
    .therapeutic-lines, .articles .article-card .card, .articles.mob  {
        background-color: #ffffff;
    }
    .articles {
        background: #F8F8F8;
    }
    .articles .article-card .card  {
        border-radius: 10px;
    }
    .articles .article-card .card p.category {
        background: #C42075;
        display: inline-block;
        padding: 10px 18px 8px;
        font-size: 14px;
        color: #fff;
        font-weight: 700;
        border-radius: 10px;
    }
    .articles .ref {
        margin-top: -40px;
    }
    .list-full.prod a.list-item span {
        margin-top: 5px;
    }
    .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
        display: none;
    }
    
}