:root {
    --primary-color-rosa: #fac2b4;
    --primary-color-rosa-shade: #d29585;
    --primary-color: #466b7d;
    --primary-color-shade: #334e5b;
    --primary-color3: #466b7d4b;
    --secondary-color: #b3b3b3;
    --e-global-color-text: #fff;
    --azul-color: #151e6a;
    --black-color: #3b3b3b;
    --gray-color: #b0b0b0;
    --white-color: #f5f5f5;
}

header h3 strong {
    color: #d29585;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.bg-primary h2 {
    color: var(--e-global-color-text);
}

.btn {
    font-size: 16px;
    font-weight: 700;
    border: 0;
    text-transform: capitalize;
    line-height: 1.8em;
    border-radius: 4px 4px 4px 4px;
    padding: 20px 40px 20px 40px;
}

.btn.btn-primary {
    background-image: linear-gradient(
            35deg,
            var(--primary-color-rosa-shade) 0%,
            var(--primary-color-rosa) 100%
    );
    transition: 0.5s;

    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

#navbar .btn.btn-primary:hover{
    background-image: linear-gradient(
            35deg,
            var(--primary-color-shade) 0%,
            var(--primary-color) 100%
    );
}

.btn.btn-primary.bg-primary.btn-lg {
    width: 100%;
    background: var(
            --Button-Gradient,
            linear-gradient(87deg, #d29585 48.03%, #fac2b4 95.04%)
    );
}

.btn.btn-primary:hover {
    transform: scale(1.1);
}

.btnZoom{
    transition: 0.5s;
}

.btnZoom:hover{
    transform: scale(1.06);
}

/* button Zap */
.group-btnZap{
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
}
.bar-btnZap{
    display: block;
    width: 0px;
    overflow: hidden;
    background: white;
    height: 32px;
    border: 2px solid #25d366;
    border-radius: 18px;
    margin-right: -40px;
    padding-left: 14px;
    font-weight: bold;
    transition: 0.3s linear all;
}

.circleZap{
    display: block;
    width:60px;
    height:60px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 1px 1px 2px #888;
}

.group-btnZap:hover .bar-btnZap{
    width: 200px;
}

.circleZap i{
    margin-top: 15px;
    font-size: 30px;
}
/* end default button Zap */

.btnZoom.circleZap:hover{
    transform: scale(1.2);
}

.moving-div {
    position: relative;
    animation: moveSideToSide 3s infinite;
    transition: all 0.5s ease;
}

.obverflow_2.moving-div {
    animation: moveSideToSide 2.5s infinite;
}

@keyframes moveSideToSide {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: 10px;
    }
    100% {
        margin-left: 0;
    }
}

.header-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
}
.header-box .box_one{
    background-image: url(./assets/img/header/box-1.png);
}
.header-box .box_two {
    background-image: url(./assets/img/header/box-2.png);
}
.header-box .box_one,
.header-box .box_two {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.header-box .box_one .content {
    margin-right: 50px;

    /* Estilo padrão */
    padding: 110px 0 110px 15px;

    /* Breakpoints específicos */

    @media (min-width: 768px) and (max-width: 991px) {
        padding-left: calc((100vw - 720px) / 2);
    }

    @media (min-width: 992px) and (max-width: 1199px) {
        padding-left: calc((100vw - 960px) / 2);
    }

    @media (min-width: 1200px) and (max-width: 1399px) {
        padding-left: calc((100vw - 1140px) / 2);
    }

    @media (min-width: 1400px) {
        padding-left: calc((100vw - 1320px) / 2);
    }
}

.header-box .box_two .content {
    /* Breakpoints específicos */
    @media (min-width: 576px) and (max-width: 767px) {
        padding-left: calc((100vw - 540px) / 2);
        padding-right: calc((100vw - 540px) / 2);
    }

    @media (min-width: 768px) and (max-width: 991px) {
        padding-right: calc((100vw - 720px) / 2);
    }

    @media (min-width: 992px) and (max-width: 1199px) {
        padding-right: calc((100vw - 960px) / 2);
    }

    @media (min-width: 1200px) and (max-width: 1399px) {
        padding-right: calc((100vw - 1140px) / 2);
    }

    @media (min-width: 1400px) {
        padding-right: calc((100vw - 1320px) / 2);
    }
}

.header-box .box_one .content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.817);
    margin-top: 25px;
}
.header-box .box_one .content h3 {
    line-height: 100%;
    font-size: 41.29px;
    font-weight: bold;
    margin-top: 50px;
}
.header-box .box_one .content .header_logo {
    width: 100%;
}
.header-box .box_one .content h3 > span {
    color: white;
}
.box_one .content .button-action {
    margin-top: 25px;
}

.header-box .box_two {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.header-box .box_two::after {
    position: absolute;
    content: "";
    left: 0%;
    height: 100%;
    width: 4px;
    filter: blur(4px);
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.446),
            rgb(255, 255, 255),
            rgba(255, 255, 255, 0.446)
    );
    box-shadow: 10px white;
}
.header-box .box_two::before {
    content: "";
    position: absolute;
    top: 40%;
    left: -1%;
    width: 60px;
    height: 300px;
    background: radial-gradient(
            circle,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 30%
    );
    transform: translate(-50%, -50%);
    filter: blur(20px);
}

img.header_image{
    object-fit: contain;
}

.header-box .box_two .header_image {
    max-height: 620px;
    max-width: 100%;
    padding-left: 10px;

    @media (max-width: 575px){
        padding-right: 10px;
    }
    @media (min-width: 576px){
        padding-left: 30px;
    }
    @media (min-width: 768px){
        padding-left: 40px;
    }
    @media (min-width: 992px){
        padding-left: 50px;
    }
}

.header-box .box_two .obverflow_1 {
    position: absolute;
    bottom: 25%;
    left: 5%;
}
.header-box .box_two .obverflow_2 {
    position: absolute;
  bottom: 7.1%;
  left: 42%;
}
@media only screen and (max-width: 1440px) {
  .header-box .box_two .obverflow_2 {
    left: 52%;
  }
}

.header-box .box_two .obverflow_3 {
    position: absolute;
    right: 0%;
    bottom: 40%;
}

.header-bottom {
    position: relative;
    overflow: hidden;
  background-image: linear-gradient(-90deg, white, var(--primary-color3));
}

.header-bottom .container {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 170px;
}

.header-bottom .header-bottom-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header-bottom .header-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  /* margin: 0 10%; */
}

.header-bottom .header-bottom-content .header-bottom-content-img {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-bottom .header-bottom-content .header-bottom-content-img2 {
    padding-left: 10%;
}

section {
    padding: 140px 0 40px 0;
    @media (max-width: 767px) {
        padding: 120px 0 0 0;
    }
}

.paragraph {
    color: #4c4c4c;
    max-width: 550px;
    font-size: 20px;
    line-height: 120%;
    margin: 15px 0;
}

.heading {
    font-size: 42px;
    color: #4c4c4c;
    font-weight: 400;
    line-height: 45px;

    @media (max-width: 991px) {
        margin-top: 1rem !important;
    }
}

.btn-holder {
    max-width: 580px;
}

.gradient-border-button {
    position: relative;
    padding: 15px 30px;
    margin: 5px;
    font-weight: 600;
    background-color: #fff;
    border-radius: 15px;
    font-size: 16px;
    color: #5a5a5a;
    cursor: pointer;
    outline: none;
    border: none;
    display: inline-block;
    transition: 0.3s;
}

.gradient-border-button:hover{
    background: linear-gradient(90deg, hsla(200, 28%, 38%, 1), hsla(200, 28%, 38%, 0.25));
    color: white;
}

.border-button-service {
    width: 100%;
    padding: 10px 15px;
    margin: 5px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    border: 2.10px #D29585 solid;
    display: inline-block;

    color: #4C4C4C;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 14.06px;
}

.border-button-service .button-service-content{
    justify-content: flex-start;
    display: inline-flex;
    align-items: center;
}

.border-button-service img{
    margin-right: 20px;
    max-width: 64px;
}

.border-button-service h1{
    color: #4C4C4C;
    font-size: 19px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.border-button-service span{
    font-weight: 400;
    line-height: 10px;
}

#quandoProcurar{
    overflow: hidden;
}

#sectionServices .modal-dialog{
    margin-top: 100px;
}

#sectionServices .modal-content{
    border: none;
    border-radius: 10px;
}

#sectionServices .modal-header {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: #4C4C4C;
    justify-content: center;
    border-bottom: none;
}
#sectionServices .modal-body {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #4C4C4C;
}

#sectionServices .modal-body h1{
    color: #4C4C4C;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 30px;
}

#sectionServices .modal-body img{
    width: 95px;
    height: 95px;
}

#sectionServices .modal-footer .btn{
    width: 100%;
}

#sectionServices .modal-footer {
    justify-content: center;
    border-top: none;
}

#sectionServices .close-button {
    width: 33px;
    height: 33px;
    position: absolute;
    right: 19px;
    top: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sectionServices .btn-close {
    background: #D29585;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
}

@media only screen and (max-width: 767px) {
    .gradient-border-button {
        padding: 10px;
        font-size: 12.9px;
    }
    .btn.btn-primary.bg-primary.btn-lg {
        width: 100%;
        display: flex;
        padding: 14px 20px;
        justify-content: center;
        align-items: center;
        gap: 6.014px;
    }
}

.gradient-border-button:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
            90deg,
            hsla(200, 28%, 38%, 1),
            hsla(200, 28%, 38%, 0.25)
    );
    border-radius: 15px;
    z-index: -1;
    padding: 2px;
}

.heading span {
    color: #315567;
    font-weight: bold;
}

@media only screen and (max-width: 1440px) {
    .obverflow_2 {
        left: 62%;
    }
}
@media only screen and (max-width: 1024px) {
    .header-box .box_one .content h3 {
        font-size: 21.29px;
        margin-top: 20px;
    }

    .header-box .box_two .obverflow_3 {
        width: 100px;
    }
    .header-bottom .header-bottom-bg {
        width: fit-content;
    }
}

.icon-container {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
}

@media only screen and (max-width: 767px) {
    .header-box .box_one .content {
        margin-left: 0%;
    }
    .header-box {
        grid-template-columns: 1fr;
        grid-auto-flow: row dense;
    }

    .header-box > *:nth-child(2) {
        order: -1;
    }

    .header-box .box_one .content {
        max-width: 100%;
        text-align: center;
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-right: 0;
    }

    .header-box .box_two {
        padding-top: 120px;
    }
    .header-box .box_two .obverflow_1 {
        bottom: 10%;
    }
    .header-box .box_two .obverflow_3 {
        bottom: -10%;
        width: 50px;
    }
    .header-box .box_two::after {
        position: absolute;
        content: "";
        left: 0%;
        bottom: 0%;
        width: 100%;
        height: 5px;
        background: linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.446),
                rgb(255, 255, 255),
                rgba(255, 255, 255, 0.446)
        );
        box-shadow: 10px white;
    }
    .header-box .box_two::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -1%;
        bottom: 0%;
        width: 60px;
        height: 300px;
        background: radial-gradient(
                circle,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, 0) 30%
        );
        transform: translate(-50%, -50%);
        filter: blur(20px);
    }
    .header-box .box_one .content p {
        max-width: 300px;
        text-align: center;
    }
    .icon-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .header-box .box_one .content h3 {
        font-size: 30px;
        margin-top: 20px;
    }
}

.header-box .box_one .content .header_logo_mobile {
    width: 300px;
    margin: 0px auto;
}
.header_logo_mobile {
    display: none;
}

@media only screen and (max-width: 767px) {
    .header_logo {
        display: none;
    }

    .header_logo_mobile {
        display: block;
    }
}

@media only screen and (min-width: 768px) {
    .header_logo_mobile {
        display: none;
    }

    .header_logo {
        display: block;
    }
}
@media only screen and (min-width: 768px) {
    header h3 strong {
        display: block;
    }
}

footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 50px 0px;
    @media (max-width: 767px) {
        margin-top: 70px;
    }
}

footer:hover img.footer_logo{
    /*content: url("./assets/img/logo-500w.png");*/
}

footer .content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5rem;
}
@media only screen and (max-width: 1024px) {
    footer .content {
        gap: 1rem;
    }
}
@media only screen and (max-width: 767px) {
    footer .content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
        gap: 2rem;
        padding: 0px 80px;
    }
}
footer .content .items {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 16px;
}

footer .content .social a.item:hover {
    background: var(--primary-color-rosa-shade);
}

footer .content .items a.item {
    color: white;
    text-decoration: none;
}

footer .content .items a.item i{
    color: var(--primary-color-rosa-shade);
}

footer .content .items a.item:hover, footer .content .items a.item:hover i {
    color: var(--gray-color);
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    footer .content .items {
        align-items: center;
        text-align: center;
    }
}
footer .content .items .item {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 5px;
}
footer .content .items .item span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.14px;
}
@media only screen and (max-width: 767px) {
    footer .content .items .item span {
        font-size: 15px;
    }
}
footer .content .social {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 16px;
}
footer .content .social a{
    color: #fff;
    text-decoration: none;
}
@media only screen and (max-width: 767px) {
    footer .content .social {
        justify-content: center;
    }
}
footer .content .social .item {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid white;
}

footer p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.14px;
}
footer h1 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.2px;
}

.footer_logo {
    width: 256px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
    footer .container .box:nth-child(2) {
        order: 3;
    }
}

.copy_write {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    letter-spacing: -0.14px;
    text-align: center;
    margin-top: 50px;
}
.copy_write span {
    color: var(--primary-color-rosa-shade);
}

.copy_write.desktop {
    display: none;
}

@media only screen and (min-width: 768px) {
    .copy_write.desktop {
        display: block;
    }
    .copy_write.mobile {
        display: none;
    }
}
#sectionLocation iframe {
    width: 100%;
}
#sectionLocation h1 {
    color: #484747;
    font-family: Raleway;
    font-size: 38.213px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 38.213px */
}
#sectionLocation h2 {
    color: var(--primary-color);
    font-family: Raleway;
    font-size: 38.213px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
#sectionLocation p {
    color: #858585;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    letter-spacing: -0.16px;
}

@media only screen and (max-width: 767px) {
    #sectionLocation p {
        text-align: center;
        width: 100%;
        font-size: 15px;
        letter-spacing: -0.15px;
    }

    #sectionLocation h1,
    #sectionLocation p,
    #sectionLocation h2 {
        text-align: center;
    }
}

.reviews .title {
    color: #484747;
    text-align: center;
    font-family: Raleway;
    font-size: 38.213px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 38.213px */
}
.reviews .title > span {
    color: var(--primary-color);
    font-weight: 700;
}
.reviews .card {
    border-radius: 8px;
    border: 2px solid #d29585;
    padding: 20px;
}

@media only screen and (max-width: 767px) {
    .reviews .card {
        margin: 0px auto;
        padding: 15px;
    }
}
.reviews .card h1 {
    font-size: 20px;
}
.reviews .card i {
    color: #f6bb06;
}
.reviews .card .card_text {
    margin-top: 12px;
    height: 100px;
    overflow: hidden;
}

.review_items .prev_icon {
    position: relative;
    left: 15px;
}
.review_items .next_icon {
    position: relative;
    right: 15px;
}
.review_items {
    display: flex;
    gap: 12px;
}

swiper-slide {
    display: flex;
    justify-content: center;
}
.custom-button {
    z-index: 99999;
    position: relative;
    margin-top: 5.3%;
}
.custom-button svg {
    width: 71px;
    height: 71px;
    flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
    .custom-button {
        margin-top: 7.3%;
    }
}
@media only screen and (max-width: 425px) {
    .custom-button {
        margin-top: 15%;
    }
    .custom-button svg {
        width: 49.7px;
        height: 49.7px;
    }
}
.custom-button-prev {
    left: 2%;
}
.custom-button-next {
    right: 2%;
}

.image-content {
    position: relative;
    @media (min-width: 992px) and (max-width: 1399px) {
        padding-left: 40px;
    }
}
.obverflow_image {
    position: absolute;
    top: -15.9%;
    right: -15.9%;
    width: 184px;
    height: 190px;
    flex-shrink: 0;
}

/*.image_content_img {
    max-width: 100%;
}*/

@media only screen and (max-width: 767px) {
    .image-content {
        width: 100%;
    }
    .image_content_img {
        width: 100%;
    }
}
@media only screen and (max-width: 425px) {
    .obverflow_image {
        width: 100.716px;
        height: 104px;
        top: -11.9%;
        right: -11.9%;
    }
}

.service_title {
    color: #333;
    font-family: Raleway;
    font-size: 41.288px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.service_button {
    width: 57.818px;
    height: 57.818px;
    flex-shrink: 0;
}

.service_items_button {
    gap: 96px;
}
.service_item_card {
    text-align: center;
    padding: 35px 20px 20px 20px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}
.service_item_card:hover {
    border: 2px solid var(--primary-color-rosa-shade);
}
.service_item_card img{
    text-align: center;
    height: 64px;
    padding-bottom: 15px;
}
.service_item_card h1{
    height: 45px;
}
.service_item_card p{
    height: 140px;
}
.service_item_card h1 {
    color: #4c4c4c;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16.744px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 20.092px */
    letter-spacing: -0.167px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.service_item_card p {
    color: #4c4c4c;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 14.4px */
    letter-spacing: -0.12px;
    height: 160px;
    overflow: hidden;
}
.service_item_card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

@media only screen and (max-width: 1024px) {
    .service_item_card {
        height: 320px;
    }
}
@media only screen and (max-width: 767px) {
    .service_item_card h1 {
        font-size: 11.72px;
        letter-spacing: -0.117px;
    }
    .service_item_card p {
        font-size: 8.4px;
        letter-spacing: -0.084px;
    }
    .service_item_card {
        height: 200px;
        padding: 20px;
    }
    .service_title {
        font-size: 30px;
    }
    .service_items_button {
        gap: 6px;
    }
}
@media only screen and (max-width: 425px) {
    .service_item_card img {
        width: 31.316px;
        height: 35px;
        flex-shrink: 0;
    }
}
.prazer {
    overflow: hidden;
}
@media only screen and (max-width: 767px) {
    .prazer {
        overflow: visible;
    }

    .prazer_content{
        border: 2px solid #eaeaea;
    }
}
.prazer_content_container {
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;

    @media (min-width: 1025px){
        padding-right: 3%;
        border: 2px solid #eaeaea;
    }
}

#sectionAbout{
    padding-top: 40px;
    @media (max-width: 767px) {
        padding-top: 0px;
    }
}

#sectionAbout{
    overflow: hidden;
    max-width: 100%;
}

.prazer_content_container .image{
    position: relative;
}

.obverflow_prazer_image {
    width: 90px;
    height: 90px;
    @media (max-width: 767px){
        width: 60px;
        height: 60px;
    }
    border-radius: 10px;
    background: rgb(70 107 125 / 70%);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.prazer_content_container .image .obverflow_1{
    position: absolute;
    top: 40.9%;
    /*right: -9%;*/
    left: 83%;

    @media (max-width: 767px){
        top: 40%;
        left: 75%;
    }
}

.prazer_content_container .image .obverflow_2{
    position: absolute;
    bottom: 10%;
    left: 63%;

    /*@media (max-width: 767px){*/
    /*    top: 10%;*/
    /*    bottom: auto;*/
    /*    left: 4%;*/
    /*}*/
}

.icon-prazer-flutuante-01{
    content: url("./assets/icons/icon-prazer-1.svg");

    @media (max-width: 767px){
        width: 32px;
    }
}

.icon-prazer-flutuante-02{
    content: url("./assets/icons/icon-prazer-2.svg");

    @media (max-width: 767px){
        width: 32px;
    }
}

.icon-flutuante-clock{
    content: url("./assets/icons/clock.svg");
    @media (max-width: 767px){
        width: 32px;
    }
}

.icon-flutuante-paciente{
    content: url("./assets/icons/paciente.svg");
    @media (max-width: 767px){
        width: 32px;
    }
}

@media only screen and (max-width: 1024px) {
    .prazer_content_container {
        flex-direction: column;
        height: 100%;
    }
}
.prazer_content_container .image {
    width: 428px;
    height: 100%;
    /*background: #d29585;*/
}

@media only screen and (max-width: 1024px) {
    .prazer_content_container .image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: start;
    }
}
.prazer_content_container .image img {
    position: relative;
    top: -14%;
}
@media only screen and (max-width: 1024px) {
    .prazer_content_container .image img {
        width: 100%;
        top: -25%;
    }
}
.prazer_content {
    max-width: 520px;
}
@media only screen and (max-width: 1024px) {
    .prazer_content {
        max-width: 480px;
        padding: 0px 4px;
    }
}
@media only screen and (max-width: 1320px) {
    .obverflow_image {
        top: -10.7%;
    right: 2.8%;
        width: 104px;
        height: 110px;
    }
}
@media only screen and (max-width: 767px) {
    .obverflow_image {
        top: -6.7%;
    right: -4.3%;
    }
}
@media only screen and (max-width: 425px) {
    .obverflow_image {
        top: -14.7%;
        right: -6.8%;
    }
}

.prazer_content h1 {
    color: #484747;
    font-family: Raleway;
    font-size: 38.213px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.prazer_content h1 span {
    color: var(--primary-color);
    font-weight: 700;
}
.prazer_content .list span,
.prazer_content p {
    color: #858585;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    letter-spacing: -0.16px;
    margin-top: 10px;
}
.prazer_content h4 {
    color: #858585;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.16px;
}
.prazer_content .list span {
    display: inline-block;
}
@media only screen and (max-width: 1024px) {
    .prazer_content {
        max-width: 100%;
        padding: 32px 16px;
    }
    .prazer_content h1 {
        font-size: 25px;
    }
    .prazer_content .list span,
    .prazer_content p {
        font-size: 16px;
        text-align: justify;
    }
    .prazer_content h4 {
        font-size: 16px;
    }
}
.navbar_container {
  position: fixed;
  top: 4.4%;
  z-index: 999999999;
  transition: background-color 0.3s ease;
  width: 100%;
}
.navbar_container.scroll {
  background-color: white;
  top: 0%;
}
.navbar {
  height: 123px;
  border-radius: 10px;
  border: 1.5px solid #fff;
  background: rgba(254, 254, 254, 0.59);
  box-shadow: 0px 2.8px 84px 0px rgba(0, 0, 0, 0.25);
  /*backdrop-filter: blur(4.400000095367432px);*/ /*removido pq tava embaçando a logo e font*/
  margin: 0px auto;
  flex-wrap: nowrap;
}

.navbar_container.scroll .navbar {
  box-shadow: 0px 2.8px 84px 0px rgba(0, 0, 0, 0);
  background: white;
  border-radius: 0px;
  border: 1.5px solid #ffffff00;
}

@media only screen and (max-width: 1024px) {
  .navbar {
    width: 100%;
  }
}

.navbar .logo {
  flex-shrink: 0;
  padding: 8px 11px 8px 3%;
}

.navbar .logo img {
  width: 320px;
}

.navbar_container.scroll .navbar .logo {
  padding-left: 0px;
}
.navbar_container.scroll .navbar .logo img {
  width: 320px;
}
@media only screen and (max-width: 1024px) {
  .navbar .logo {
    padding-left: 20px;
  }
  .navbar_container.scroll .navbar .logo {
    padding-left: 0px;
  }
}
.nav_items {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

@media only screen and (max-width: 1024px) {
  .navbar {
    height: 55px;
    border-radius: 10px;
    border: 1px solid #fff;
    background: rgba(232, 235, 236, 0.7);
    box-shadow: 0px 2.8px 84px 0px rgba(0, 0, 0, 0.25);
    /*backdrop-filter: blur(4.400000095367432px);*/
    padding: 0px 20px;
    top: 7%;
  }
  .nav_items {
    position: absolute;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    top: 100%;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #fff;
    background: rgba(232, 235, 236, 0.7);
    box-shadow: 0px 2.8px 84px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4.400000095367432px);
    left: 50%;
    display: none;
  }

  .navbar .logo {
    padding: 0px 0px;
    margin-left: 0px;
  }

  .navbar .logo img {
    width: 134px;
  }

  .nav_items.show {
    display: flex;
  }
  .navbar_container.scroll .navbar .logo img {
    width: 135px;
  }
}

.nav_items .nav_item {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-size: 16.8px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 20.16px */
  letter-spacing: -0.168px;
  text-decoration: none;
}

.nav_items .nav_item:hover{
    color: #2e4550;
    font-weight: 700;
}

.navbar .btn {
  display: flex;
  width: 200px;
  padding: 19.2px 8.247px;
  justify-content: center;
  align-items: center;
  gap: 8.247px;
  border-radius: 2.88px;
  /*background: #315567;*/
  color: #fff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 15.36px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 18.432px */
  letter-spacing: -0.154px;
  margin: 0px 3% 0px 18px;
}
.navbar_container.scroll .navbar .btn {
  margin: 0px 0px;
}
@media only screen and (max-width: 1024px) {
  .navbar .btn {
    display: none;
  }
}

.bar_icon {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .bar_icon {
    display: block;
  }
}

@media only screen and (min-width: 1025px) {
    .header-box .box_one,
    .header-box .box_two {
        padding-top: 90px;
    }
    .nav_items{
        gap: 19px;
    }
    .nav_items .nav_item{
        font-size: 15.2px;
    }
}

@media only screen and (min-width: 1200px) {
    .header-box .box_one,
    .header-box .box_two {
        padding-top: 170px;
    }

    .navbar .logo img{
        width: 340px;
    }

    .nav_items .nav_item{
        font-size: 16px;
    }

    .navbar .btn{
        width: 240px;
    }

    .header-box .box_two{
        padding-top: 170px; /*evitar imagem ficar por baixo do menu*/
    }
}

.obverflow_header_image {
    padding: 10px 12.5px;
    border-radius: 15px;
    border: 1.148px solid #fff;
    background: rgba(255, 255, 255, 0.29);
    backdrop-filter: blur(7px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.obverflow_header_image svg {
  width: 52.422px;
  height: 52.422px;
}
.obverflow_header_image .text {
  color: #5a5a5a;
  font-family: 'Inter', sans-serif;
  font-size: 22.073px;
  font-style: normal;
  font-weight: 400;
  line-height: 107%;
}
.obverflow_header_image .text span {
  font-weight: 600;
}

@media only screen and (max-width: 1420px) {
  .obverflow_header_image {
    border-radius: 8.4px;
    border: 0.643px solid #fff;
    background: rgba(255, 255, 255, 0.29);
    backdrop-filter: blur(2.5px);
    gap: 10px;
  }

  .obverflow_header_image svg {
    width: 32.156px;
    height: 32.156px;
  }
  .obverflow_header_image .text {
    font-size: 12.361px;
    font-style: normal;
    font-weight: 400;
    line-height: 107%;
  }
  .obverflow_2.obverflow_header_image .text {
    font-size: 11.5px;
  }
  .obverflow_header_image .text span {
    font-weight: 600;
  }
  img.image_content_img {
    max-width: 90%;
  }
  .nav_items {
    gap: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .header-box .box_two .obverflow_2 {
      bottom: 12%;
      left: 12%;
  }
  .header-box .box_two .obverflow_1 {
    bottom: 32%;
  }
  img.image_content_img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 423px) {
  .btn-holder {
    max-width: 300px;
  }
  .btn.btn-primary.bg-primary.btn-lg {
    width: 100%;
  }
  .footer_logo {
    width: 176px;
  }
}
