/*style*/

@font-face {
  font-family: 'Poppins';
  font-display: swap;
  src: url('/fonts/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
    font-display: swap;
  src: url('/fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  font-display: swap;
  src: url('/fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  font-display: swap;
  src: url('/fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
    font-display: swap;
  src: url('/fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
    font-display: swap;
  src: url('/fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  font-display: swap;
  src: url('/fonts/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Oswald';
    font-display: swap;
  src: url('/fonts/Oswald-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}


@font-face {
    font-family: 'Apex New';
    font-display: swap;
    src: url(fonts/apex/ApexNew-Light.ttf) format('truetype');
}

.red{
    background: #c5636d;
}

.blue{
    background: #74a7ce;
}

.green{
background: #70d386;
}

.green-font{
    color: #70d386;
}

.purple{
    background: #c92c8d;
}

Body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

h1 {
    font-size: 4rem !important;
}

h2 {
    font-size: 3rem !important;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
    font-weight: 700 !important;
}

h4 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

h5 {
    font-size: 1rem !important;
    font-weight: 700 !important;
}

h6 {
    font-size: 0.7rem;
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    Font-family: 'Apex New' !important;
}

ul,
li,
a,
p {
    text-decoration: none !important;
    font-family: 'Poppins';
}

ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {}

.italic{
    font-style:italic;
}

/*---anim---*/
.anim-left,
.anim-right,
.anim-up,
.anim-down {
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.anim-left {
    transform: translateX(-40px);
    /* Deslocamento da esquerda para a direita */
}

.anim-left.active {
    opacity: 1;
    transform: translateX(0);
}

.anim-right {
    transform: translateX(40px);
    /* Deslocamento da direita para a esquerda */
}

.anim-right.active {
    opacity: 1;
    transform: translateX(0);
}

.anim-up {
    transform: translateY(40px);
    /* Deslocamento de baixo para cima */
}

.anim-up.active {
    opacity: 1;
    transform: translateY(0);
}

.anim-down {
    transform: translateY(-40px);
    /* Deslocamento de cima para baixo */
}

.anim-down.active {
    opacity: 1;
    transform: translateY(0);
}



.modal h2{
    font-size: 1.5rem;
}


#em-breve {
    background: url(img/background.webp) center center no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#em-breve .container {
    display: flex;
    justify-content: center;
}

#em-breve .bloco {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    float: left;
    border-radius: 15px;
}

#em-breve h1 {
    color: #1B2D73;
    margin-bottom: 20px;
}

#em-breve img {
    max-height: 75px;
    margin: 25px;
}

#em-breve a {
    background: #25d366;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    color: #fff;
    border-radius: 25px;
}

#em-breve i {
    font-size: 1.2rem;
}

header {
    padding: 15px;
    border-bottom: solid 1px #ededed;
    background: #fff;
}

header,
header .row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
}

header .logo {
    max-width: 165px;
}

header ul li{
    list-style-type: none;
}

header ul a {
    padding: 15px 25px;
    color: #4d4d4d;
    border-radius: 8px;
}

header ul a:hover {
    background: #86c7aa;
    color: #fff;
}

header .col-auto {
    align-content: center;
}

#header {
    z-index: 999;
    position: relative;
}

#header i,
#header-duplicate i {
    display: none;
}

#header-duplicate {
    position: fixed;
    left: 0;
    width: 100%;
    top: -100px;
    /* Altura inicial negativa, será ajustada pelo JavaScript */
    opacity: 0;
    /* Começa invisível */
    transition: top 0.4s ease, opacity 0.4s ease;
    /* Transição para top e opacidade */
    z-index: 999999;
}

#header-duplicate.duplicate {
    top: 0 !important;
    /* Transição suave para o topo */
    transition: top 0.4s ease;
    opacity: 1;
    /* Fica visível quando a classe .duplicate é adicionada */
}

.menu {
    display: flex;
    flex-direction: row;
    margin: 0;
    transition: 0.4s;
}

.contato-whats {
    background: #1B2D73;
    color: #fff;
    padding: 10px 25px;
    display: flex;
    border-radius: 10px;
    transition: 0.2s;
}

.contato-whats:hover {
    background: #86C7AA;
    color: #fff;
    transition: 0.2s;
}

#banner {
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-bottom: -120px;
    box-shadow: inset 2px -10px 16px rgba(0, 0, 0, 0.2);
}

.banner-parallax {
    background: url(img/background.webp) center center no-repeat;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -10;
    transition: top 0.4s ease-in-out;
    overflow: hidden;
}

#banner .contato-whats {
    background: #1B2D73;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B2D73;
    box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 8px;
    border-radius: 8px;
    float: left;
    padding: 0;
}

#banner .contato-whats:hover {
    background: #86C7AA;
}

#banner .contato-whats .col-auto:first-child {
    background: #fff;
    color: #1B2D73;
    border-radius: 8px;
    box-shadow: 2px 0px 3px rgba(27, 45, 115, 0.5)
}

#banner .contato-whats .col-auto {
    padding: 8px 16px;
}

#banner .contato-whats .col-auto:last-child {
    padding: 4px 16px;

    color: #fff;
}

#banner .contato-whats i {
    font-size: 2rem;
}

#banner h1 {


    text-wrap: nowrap;
}

#banner p {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
}

#banner span {
    font-weight: 300;
    font-size: 1rem;
    background: #fff;
    color: #1B2D73;
    padding: 4px 16px;
    border-radius: 8px;
    text-wrap: nowrap;
}

#banner .principal-banner {
    display: flex;
    align-items: center;
    height: 70vh;
    justify-content: center;
    padding: 0 0 0 5vw;
    margin-bottom: 120px;
}

#banner .foto {
    background: url(img/roberto.webp) top center no-repeat;
    display: flex;
    justify-content: center;
    background-size: 75%;
    z-index: -1
}

.links-cima,
.links-baixo {
    width: 100%;
    height: 30%;
    position: absolute;
    z-index: -2;
}

.links-cima {
    background: url(img/links-cima.webp) no-repeat;
    background-position: top left;
    background-size: contain;
    top: 0;

}

.links-baixo {
    background: url(img/links-baixo.webp) no-repeat;
    background-size: contain;
    background-position: bottom right;
    bottom: 0;

}

#banner .foto img {
    width: auto;
}

#tratamentos {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-tratamentos {}

.box-tratamentos,
.texto-sobre,
.card {
    background: linear-gradient(169deg, rgba(27, 45, 115, 0.9) 0%, rgba(31, 51, 117, 0.9) 89%, rgba(72, 96, 141, 0.9) 100%);
    border-radius: 24px;
    border: solid 2px rgba(134, 199, 170, 0.8) !important;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.3);
}

.box-tratamentos .row {
    display: flex;
    flex-direction: column;
    box-shadow: inset 10px 16px 24px rgba(134, 199, 170, 0.4);
    border-radius: 24px;
}

#tratamentos .container-tratamento {
    display: flex;
    flex-wrap: wrap;
}

.tratamento-cima {
    background: rgba(27, 45, 115, 0.5);
    border-radius: 24px 24px 0px 0px;
}

.box-tratamentos h2 {
    color: #fff !important;
    padding: 32px 0 !important;
}

#tratamentos h2,
#atendimento h2,
#depoimentos h2,
#FAQ h2,
#contato h2 {
    font-family: Oswald;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    color: #1B2D73;
    padding: 64px 0;
}



#tratamentos h3 {
    font-size: 1.1rem;
    font-weight: 300;
}

#tratamentos p {
    text-align: center;
}

#tratamentos .texto {
    display: flex;
    padding: 20px 0 0 0;
    text-align: left;
}

#tratamentos .texto-2 {
    padding: 8px 20px 28px 20px;
}

#tratamentos .thumbnail img {
    max-width: 120px;
    filter: brightness(2);
}

#tratamentos .box-tratamentos .tratamento {}

#tratamentos .tratamento {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 25px 0 25px;
    text-align: center;
    color: #ffffff;
}

.tratamento-2 {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

#tratamentos .list-group {
    margin: 30px 0;
    border-radius: 0;
    width: 100%
}

.list-dir {
    text-align: left;
}

.list-esq {
    text-align: right;
}

#tratamentos .list-group li {
    color: #1B2D73;
    transition: 0.5s;
    border: none;
    padding: 15px 10px;
    cursor: default;
    background-color: transparent;
}

#tratamentos .list-group li:hover {
    opacity: 0.3;
    background: #1B2D73;
    transition: 0.5s;
    color: #fff;
}

#tratamentos .list-group-item {}

.list-esq .list-group-item::after {
    content: "    +";
    font-weight: 700;
    color: #86C7AA;
}

.list-dir .list-group-item::before {
    content: "+   ";
    font-weight: 700;
    color: #86C7AA;
}

#tratamentos .lista {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-bottom: 64px;
}

#tratamentos .lista img {
    width: 100%;
    max-height: 400px;
}

.lista-esq,
.lista-dir {
    position: relative;
    height: 400px;
    width: 25%;
}

.lista-esq {
    background: url(img/lateral-dir.svg) no-repeat right;
}

.lista-dir {
    background: url(img/lateral-esq.svg) no-repeat left;
}

.tratamentos-background {
    width: 100%;
    height: 100%;
    background: url(img/background-branco.webp) no-repeat top;
    background-size: cover;
    position: absolute;
    top: 120px;
    ;
    z-index: -4;
}

#sobre {
    /*background: rgb(27,45,115);
    background: linear-gradient(24deg, rgba(27,45,115,1) 0%, rgba(134,199,170,1) 100%);*/
    color: #fff;
    overflow: hidden;
    position: relative;
}

#sobre img {
    height: 100%;
    float: right;
}

#sobre .titulos img {
    filter: invert(1);
    padding: 8px 16px 8px 0;
    max-height: 60px;
}

#sobre .titulos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
    justify-content: space-evenly;
    border-radius: 8px;
    border: solid 1px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0px 0px 18px rgba(43, 30, 100, 0.4);
}

#sobre .texto-sobre {
    padding: 25px;
}

#sobre .texto-sobre p {
    padding: 25px 0;
}

#sobre .titulos .col {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    font-weight: 400;

}

#sobre .titulacao {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

#sobre .titulacao h2 {}

#sobre .item {
    display: flex;
    flex-direction: row;
    padding: 15px;
    border-radius: 8px;
    /*background: rgba(134,199,170,0.8);*/
}

/* #sobre .item:nth-child(2n+1) {
    margin-left: -10px !important;
}

#sobre .item:nth-child(2n) {
    margin-right: -10px !important;
} */

#sobre .item li{
    list-style-type: none;
    font-size: 0.9rem;
    padding: 4px 0;
    display: flex;
}

#sobre .item li span{
    padding-right: 8px;
    text-wrap: nowrap;
}

#sobre .item li::before {
    content: "+ ";
    font-weight: 700;
    color: #86C7AA;
}

#sobre .item i {
}

#atendimento {
    position: relative;
}

.atendimento-background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    z-index: -2;
}

.foto-mesa img {
    width: 100%;
    display: flex;
    background-size: contain;

}

.box-atendimento {
    min-height: 500px;
    position: relative;
    justify-content: center;
    align-items: center;
    min-width: 50%;
}

.box-atendimento .col-lg-6 {
    position: relative;
}

.box-atendimento:first-child {
    background: rgba(27, 45, 115, 0.9);
}

.box-atendimento:last-child {
    background: rgba(134, 199, 170, 0.9);
}

.box-atendimento iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;

}

.cta-atendimento {
    bottom: 0;
    right: 0;
    width: 100%;
}

.card-deck {
    display: flex;
    justify-content: center;
}

.card {
    background: #fff !important;
}

.card-header {
    background: transparent !important;
    border-bottom: none !important;
}

.card-body {}

.card-title {
    color: #1B2D73 !important;
    margin: 24px 0 0 0;
}

.card-text {
    margin: 0 !important;
}

.planos {
    display: flex;
    flex-direction: row;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-top: 8px;

}

.legenda-planos{
    font-style: italic;
    margin: 16px 0px;
    font-size: 0.9rem;
    color: #636363;
}

.planos li {
    font-weight: 500;
    font-size: 0.8rem;
    padding: 4px 8px;
    margin: 0 4px 0 0;
    border-radius: 8px;
    color: #fff;
}

.planos li img {
    width: 100%;
    max-width: 100px;
}

.como-chegar,
.agendar {
    color: #fff !important;
    transition: 0.6s;
    margin: 24px 16px 24px 0px;
    padding: 0 !important;
    transition: 0.3s;
}

.como-chegar:hover,
.agendar:hover,
.form-button:hover {
    filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, 0.3));
    transition: 0.3s;
}

.como-chegar .col-auto:first-child,
.agendar .col-auto:first-child {
    background: #3b4c91;
    padding: 12px;
    border-radius: 8px 0px 0px 8px;
    display: flex;
    align-items: center;
}

.como-chegar i,
.agendar i {
    margin: 0 8px;
}

.como-chegar .col-auto:last-child,
.agendar .col-auto:last-child,
.form-button .col-auto:last-child {
    background: #1B2D73;
    padding: 12px 24px;
    text-align: left;
    border-radius: 0px 8px 8px 0px;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.como-chegar .col-auto:last-child:hover,
.agendar .col-auto:last-child:hover,
.form-button .col-auto:last-child:hover {
    background: #86c7aa;
    transition: 0.3s;
}

#depoimentos {
    background: #f5f5f5;
}

#depoimentos h2 {
    text-align: left;
}

#depoimentos .row {
    position: relative;
}

.opiniao {
    box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
    min-width: 400px !important;
    border-radius: 16px;
    margin: 64px 32px !important;
    padding: 16px;
    background: #fff;
    position: relative;
}

.depoimentos-container {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    overflow: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

@keyframes slide {
    0% {
        transform: translateX(0)px;
    }

    23% {
        transform: translateX(0px);
    }

    25% {
        transform: translateX(-400px);
    }

    48% {
        transform: translateX(-400px);
    }

    50% {
        transform: translateX(-800px);
    }

    73% {
        transform: translateX(-800px);
    }

    75% {
        transform: translateX(-1200px);
    }

    98% {
        transform: translateX(-1200px);
    }

    100% {
        transform: translateX(-1800px);
    }
}

.depoimentos-container .opiniao {
    animation: slide 15s linear infinite;
}

.scroll-button {
    background: transparent;
    color: #1B2D73;
    border: none;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    z-index: 10;
    width: 50px !important;
    height: 50px;
    top: calc(50% - 25px);
}

.scroll-button.left {
    left: calc(25% - 50px);
}

.scroll-button.right {
    right: -50px;
}

.scroll-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.opiniao a {
    background: #1B2D73;
    padding: 4px 8px;
    color: #fff !important;
    position: absolute;
    bottom: 18px;
    border-radius: 50px 0px 0px 50px;
    right: 0;
    font-size: 0.8rem;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.3);
}

.tag {
    position: absolute;
    top: -8px;
    right: -8px;

}

.tag img {
    width: 70px;
    height: 70px;
}

.fa-star {
    color: #fcd600;
}

.avatar {
    width: 50px;
    height: 50px;
    border: solid 4px #1B2D73;
    color: #1B2D73;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-size: 2.8rem;
}

.avatar i {}

.classificacao {
    margin: 0 0 0 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.classificacao h6 {
    margin: 0 !important;
}

.opiniao .texto {
    margin: 32px 0 16px 0;
    min-height: 112px;
}

#FAQ {
    padding: 64px 0;
    background: #fff;
}

#FAQ h2 {
    text-align: right;
    color: #fff;
    padding: 8px 36px 0 0;
}

.img-perguntas {
    background: url(img/foto\ mesa.webp) no-repeat;
    background-size: contain;
    background-position: top right;
    min-height: 630px;
}

.card-faq {

    color: #414141;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#accordion .card-body {
}

#accordion button {
    text-decoration: none;
    padding: 16px 0px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1B2D73;
    border-radius: 0;
    text-align: left;
    /*border-bottom: solid 1px #e6e6e6;*/

}

#accordion button:hover {
    background: rgba(27, 45, 115, 0.4);
}

#accordion button:before {
    content: "+";
    font-family: "Font Awesome 6 Free";
    color: #86C7AA;
}

#contato {
    position: relative;
    padding-bottom: 64px;
}

#contato h2 {
    color: #fff !important;
}

#contato h3 {
    text-align: center;
    color: #fff;
    margin: -56px 0 0 0;
    padding: 0 25%;
}

#form-container {
    margin: 64px 0;
}

.form-contato {
    display: flex;
    flex-direction: column;
    width: 100%;

}

.form-label {
    display: none;
}

.form-group input,
.form-group textarea {
    color: #fff;
    background: transparent;
    margin: 8px 0;
    width: 100%;
    border: none;
    border-bottom: solid 1px #adadad;
}

::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: solid 1px #86C7AA !important;
    Border-bottom: none !important;
}

.form-button {
    float: right;
    background: #86C7AA;
    color: #fff;
    border: solid 1px #4b856b;
    padding: 8px 40px;
    font-weight: 500;
    border-radius: 8px;
    display: flex;
}

.form-button:hover {
    background: #79b699;
}

footer {
    width: 100%;
    bottom: 0;
    z-index: 10;
    color: #fff;
    font-size: small;
    position: relative;
}

.background-footer {
    background: #3e414b;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -10;
    top: 0;
}

footer .endereco {
    text-align: center;
    padding: 16px 0;
}

footer .menu {
    padding: 15px 0 0 0;
    display: flex;
    justify-content: center;
}

footer .container .row {
    padding: 25px 0;
}

footer .footer-1 {
    display: flex;
    flex-direction: column;
}

footer .footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer img.logo {
    width: 160px;
    filter: contrast(0) brightness(2);
    color: #fff;
}


footer .footer-menu {
    padding: 15px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer .menu li {
    padding: 0 20px;
    font-weight: 400;
}

footer a {
    text-decoration: underline !important;
    color: #fff;
}

footer a:hover{
    color: #a9a9a9;
}

footer .footer-redes {
    padding: 25px 0 0 0;
}

footer i {
    border: solid 1px #fff;
    border-radius: 30px;
    margin: 0 15px 0 15px;
    align-content: center;
    padding: 8px;
    width: 40px !important;
    height: 40px;
}

footer .fa-facebook-f {
}

footer i:before {
    font-size: 1.1rem;

}

footer .copyright {
    text-align: center;
    padding: 5px;
    background: #292929;
}

footer .copyright,
footer .copyright a {
    font-size: small;
    color: #fff;
}

.modal{
    align-items: center;
    justify-content: center;
}

.modal-background{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: #000;
    opacity: 0.8;
}

.modal-content{
    width: 50% !important;
    border: none;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}

.modal-content button {
    padding: 8px 32px;
    margin: 1rem;
    border: none;
    color: #fff;
    background: #1B2D73;
    border-radius: 8px;
}



@media (max-width: 1400px) {

    #banner,
    #banner .foto {
        height: 85vh;
    }

    .como-chegar .col-auto:first-child,
    .agendar .col-auto:first-child,
    .form-button .col-auto:first-child {
        padding: 0.5rem;

    }

    .como-chegar .col-auto:last-child,
    .agendar .col-auto:last-child,
    .form-button .col-auto:last-child {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 720px) {


    /*-----menu----*/
    .menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: 0.4s;
    }

    .menu.active {
        display: flex;
        padding: 0;
    }

    .menu li {
        text-align: center;
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .contato-whats {
        display: none;
    }

    #header i {
        width: 60px;
        height: auto;
        font-size: 2.5rem;
        padding: 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }


    #banner,
    #tratamentos,
    #sobre,
    #depoimentos,
    #atendimento,
    #FAQ {
        overflow: hidden;
        padding-left: 16px;
        padding-right: 16px;
    }

 .atendimento-background,
    #atendimento .justify-content-center {
        margin: 0 -16px 0 -16px;
    }

    #header {
        position: fixed;
    }

    #header-duplicate {
        display: none;
    }

    #banner {
        margin-bottom: 0;
        height: auto;
    }

    #banner .foto {
        margin-top: 150px;
        height: 50vh;
        background-size: 90%;
    }

    #banner .principal-banner {
        background: linear-gradient(169deg, rgba(27, 45, 115, 0.9) 0%, rgba(31, 51, 117, 0.9) 89%, rgba(72, 96, 141, 0.9) 100%);
        border-radius: 24px 24px 0 0px;
        border-top: solid 2px rgba(134, 199, 170, 0.8) !important;
        border-left: solid 2px rgba(134, 199, 170, 0.8) !important;
        border-right: solid 2px rgba(134, 199, 170, 0.8) !important;
        box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.3);
        height: auto;
        padding: 5%;
        align-items: flex-start;
        padding: 7% 16px;
        text-align: center;
        margin-bottom: 0;
    }

    #banner .contato-whats {
        background: #86C7AA;
        width: 100%;
        font-size: 5vw;
    }

    #banner .contato-whats .col-auto:last-child {
        text-align: center;
    }

    #banner .container .row {
        flex-direction: column-reverse;
    }

    #banner h1 {
        text-wrap: wrap;
    }

    .banner-parallax {
        position: absolute;
    }

    #tratamentos {
        padding: 16px;
    }

    #tratamentos .lista {
        padding: 0 0 64px 0;
    }

    .tratamento-cima {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .box-tratamentos h2 {
        padding: 64px 0 !important;
    }

    .card-tratamento {
        width: 100%
    }

    #tratamentos .list-group {
        margin: 0;
    }

    #tratamentos .list-group li {
        font-size: 1.2rem;
    }

    .list-esq {
        text-align: left;
    }

    .list-esq .list-group-item::after {
        content: none;
    }

    .list-esq .list-group-item::before {
        content: "+ ";
        font-weight: 700;
        color: #86C7AA;
    }

    .lista-esq,
    .lista-dir {
        width: 50% !important;
    }

    .lista .lista-esq {
        order: -2;
    }

    .lista .lista-dir {
        order: -1;
    }

    .depoimentos-container .opiniao {
        animation: none;
        margin: 16px 0 !important;
        min-width: unset !important;
        width: 100%;
    }

    .depoimentos-container {
        flex-wrap: wrap;
    }

    .card {
        width: 90% !important;
        margin: 64px 0;
    }

    .cta-atendimento {
        flex-direction: column;
    }

    .como-chegar{margin: 12px 16px 12px 0px;
    width: 100%;}

    .modal-content{
        width: 50% !important;
    }

    .planos {
        flex-wrap: wrap;
    }

    .planos li{
        margin-bottom: 16px;
    }

    .depoimentos-container {
        overflow: visible;
    }

    .scroll-button {
        display: none;
    }

    #FAQ h2 {
        position: absolute;
        width: 100%;
        top: 0;
        text-align: unset !important;
        margin-top: -150px;
        color: #1B2D73;
        padding: 0;
    }

    #sobre .container .row {
        flex-direction: column-reverse;
    }

    #sobre img {
        height: auto;
        width: 130%;
        float: right;
        margin-bottom: -64px;
    }

    #sobre .titulacao {
        padding: 0 0 24px 0;
    }

    #sobre .item {
        margin: 0 !important;
        margin-left: 0 !important;
    }

    .titulos .item {
        width: 100%;
    }

    .como-chegar .col-auto:last-child,
    .agendar .col-auto:last-child,
    .form-button .col-auto:last-child {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .img-perguntas {
        background-position: bottom center;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        text-align: center;
        margin-top: 150px !important;
    }

}