* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wrapper {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

/* Geral */

a:hover {
    text-decoration: none;
}

body {
    font-family: 'Comfortaa', cursive;
    overflow-x: hidden;
}

img {
    height: auto;
    max-width: 100%;
}

.bold {
    font-weight: 700;
}

.row {
    margin-left: 0px;
    margin-right: 0px;
}

.texto-centro {
    text-align: center;
}

/* Ícones */
.icones-fixos {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
}

.icones-fixos img {
    width: 35px;
}

.etiqueta-whatsapp {
    background-color: #25d366;
    border-radius: 5px;
    color: #fff;
    font-size: 0.8em;
    font-weight: bold;
    margin-right: 10px;
    padding: 5px 10px;
    white-space: nowrap;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    visibility: visible;
}

body.whatsapp-label-hidden .etiqueta-whatsapp {
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    visibility: hidden;
}

body.whatsapp-label-hidden .icones-fixos .whatsapp:hover .etiqueta-whatsapp {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
}

/* Menu */

.menu {
    background-color: #2678bc;
    padding: 10px;
}

.menu .container {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.menu a {
    color: #fff;
    display: flex;
}

/* Banner */

.banner {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0 1em 2.5em 1em;
    position: relative;
}

.banner .wrapper, .banner .conteudo, .banner .row, .banner .col-lg-12 {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: linear-gradient(rgba(255,255,255,.67), rgba(255,255,255,.67)), url(../imagens/banner_psicologia.webp);
  background-position: center;
  background-size: cover;
}

.banner .conteudo {
    align-items: center;
    display: grid;
    position: relative;
}

.banner .conteudo .imagem img {
    width: 250px;
}

.banner .conteudo .banner-destaque {
    gap: 80px;
}

.banner .conteudo .texto {
    margin: 2em 0em;
}

.banner .conteudo .texto p,
.banner .conteudo .texto h1 {
    font-size: 1.9em;
}

.banner .conteudo .botoes {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 7fr;
    justify-items: center;
}

.banner .conteudo .botoes i {
    color: #00a226;
    font-size: 3.5em;
}

.banner .conteudo .botoes a {
    background-color: #00a226;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-size: 1.5em;
    font-weight: bold;
    padding: 0.5em;
    text-align: center;
    width: 100%;
}

/* Textos */

.secao.texto {
    padding: 2em 1em;
}

.secao.texto p {
    font-size: 1.5em;
}

.secao.texto p.bold {
    font-size: 1.9em;
}

.secao.texto .botoes {
    align-items: center;
    display: grid;
    justify-items: center;
}

.secao.texto .botoes a {
    background-color: #2678bc;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-size: 1.5em;
    font-weight: bold;
    padding: 0.5em 1em;
    text-align: center;
}

/* Info */

.secao.info {
    padding: 2em 1em;
}

.secao.info .col-lg-6 {
    align-items: center;
    display: grid;
    justify-content: center;
}

.secao.info .texto::before {
    content: " ";
    background-color: #2678bc;
    display: block;
    height: 3px;
    margin-bottom: 1em;
    width: 30%;
}

.secao.info .texto p {
    text-align: center;
}

.secao.info .imagem img {
    width: 200px;
}

.secao.info img {
    max-width: 100%;
}

/* Atendimento */

.secao.atendimento {
    padding: 2em 1em;
}

.secao.atendimento .conteudo {
    align-items: center;
    display: grid;
    justify-content: center;
}

.secao.atendimento .texto h3 {
    color: #2678bc;
}

.secao.atendimento .texto p::before {
    content: " ";
    background-color: #2678bc;
    display: block;
    height: 3px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1.5em;
    margin-top: 1.5em;
    width: 20%;
}

.secao.atendimento .botoes {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    margin: 0 auto;
    max-width: 520px;
    width: 100%;
}

.secao.atendimento .botoes i {
    color: #00a226;
    font-size: 3.5em;
}

.secao.atendimento .botoes a {
    align-items: center;
    background-color: #00a226;
    border-radius: 50px;
    color: #fff;
    display: inline-flex;
    font-size: 1.5em;
    font-weight: bold;
    gap: 0.5em;
    justify-content: center;
    padding: 0.5em;
    text-align: center;
    width: 100%;
}

.secao.atendimento .botoes a i {
    color: #fff;
    font-size: 1.25em;
}

/* Tratamento */

.secao.tratamento {
    background-color: #2678bc;
    color: #fff;
    padding: 2em 1em;
}

.secao.tratamento .conteudo {
    align-items: center;
    display: grid;
    justify-content: center;
}

.secao.tratamento .conteudo h3 {
    margin-bottom: 2em;
}

.secao.tratamento .conteudo ul {
    background-color: rgba(255,255,255,0.15);
    border: 1px solid #fff;
    border-radius: 25px;
    list-style-position: inside;
    padding: 2.5em 1.5em;
    text-align: left;
}

/* Dormir */

.secao.dormir {
    padding: 2em 1em;
}

.secao.dormir .conteudo {
    align-items: center;
    display: grid;
    justify-content: center;
}

.secao.dormir .conteudo h3 {
    color: #2678bc;
    margin-bottom: 2em;
}

.secao.dormir .conteudo .lista {
    font-weight: bold;
    position: relative;
    text-align: left;
}

.secao.dormir .conteudo .lista i {
    color: #a668ec;
}

.secao.dormir .conteudo .lista img {
    border-radius: 111px;
    position: absolute;
    right: 20px;
    top: 180px;
    width: 170px;
}

.secao.dormir .conteudo .botoes {
    align-items: center;
    display: grid;
    grid-gap: 1em;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    margin-top: 1em;
}

.secao.dormir .conteudo .botoes a {
    border: 2px solid #2678bc;
    color: #2678bc;
    font-weight: bold;
    padding: 15px;
    text-transform: uppercase;
}

.secao.dormir .conteudo .botoes a:hover {
    text-decoration: none;
}

.secao.dormir .conteudo .botoes a.colorido {
    background-color: #2678bc;
    color: #fff;
}

.secao.dormir .conteudo img.logo {
    margin-bottom: 2em;
    margin-top: 2em;
    width: 250px;
}

.secao.dormir .conteudo img.instagram {
    margin-bottom: 1em;
    margin-top: 1em;
    width: 35px;
}

/* Rodapé */

footer {
    background-color: #2678bc;
    color: #fff;
    padding: 2em 1em;
}

footer .info {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

footer .links {
    text-align: center;
}

footer .links a {
    border-radius: 10px;
    color: #fff;
    font-size: 0.9em;
    display: inline-block;
    padding: 5px 15px;
    text-align: center;
    text-transform: uppercase;
}

footer .links a.hover:hover {
    background-color: rgba(255,255,255,0.3);
}

footer .links img {
    margin-top: 1em;
    width: 35px;
}

.section-image0 {
    gap: 40px;
}

@media (min-width: 992px) {
    .section-image0 {
        gap: 80px;
    }
}

@media (min-width: 577px) {
    .banner .conteudo .col-lg-12 {
        position: relative;
    }

    .banner .conteudo .col-lg-12 > .imagem.texto-centro {
        left: 50%;
        position: absolute;
        top: 28px;
        transform: translateX(-50%);
        z-index: 1;
    }

    .banner .conteudo .banner-destaque {
        flex: 1;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        min-height: calc(100vh - 2.5em);
    }
}

/* Media Queries */

@media (max-width: 576px) {
    body {
        font-size: 15px;
    }

    .wrapper {
        max-width: 100%;
    }

    .secao {
        overflow-x: hidden;
    }

    .icones-fixos {
        bottom: 8px;
        right: 8px;
    }

    .icones-fixos .whatsapp {
        margin-right: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .etiqueta-whatsapp {
        display: none;
    }
    
    .banner .conteudo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .banner {
        min-height: calc(100svh - 38px);
        padding: 1.25em 1em 1.75em;
    }

    .banner .conteudo .col-lg-12 {
        justify-content: space-evenly;
    }

    .banner .conteudo .banner-destaque {
        flex-direction: column !important;
        gap: clamp(1.1rem, 3.6svh, 1.8rem);
        justify-content: center !important;
        margin: 0 !important;
        text-align: center;
        width: 100%;
    }

    .banner .conteudo .imagem img {
        width: min(210px, 70vw);
    }

    .banner .conteudo .banner-destaque .imagem img {
        width: min(190px, 58vw);
    }
    
    .menu span {
        font-size: 0.8em;
        text-align: center;
    }

    .section-image0 .imagem img {
        width: 140px;
    }
    
    .banner .conteudo .texto {
        margin: 1em 0em;
        width: 100%;
    }
    
    .banner .conteudo .texto p,
    .banner .conteudo .texto h1 {
        font-size: 1.1em;
        line-height: 1.45;
    }
    
    .banner .conteudo .texto p.bold,
    .banner .conteudo .texto h1.bold {
        font-size: 1.3em;
    }
    
    .banner .conteudo .botoes, .secao.atendimento .botoes {
        grid-template-columns: 1fr;
        grid-gap: 10px;
        width: 100%;
    }

    .secao.atendimento .botoes {
        grid-template-columns: 1fr;
        align-items: center;
        max-width: 100%;
    }

    .banner .conteudo .botoes i, .secao.atendimento .botoes i {
        font-size: 2.2em;
    }
    
    .banner .conteudo .botoes a, .secao.atendimento .botoes a {
        font-size: 1.1em;
        line-height: 1.3;
        padding: 0.8em 1em;
    }
    
    .secao.texto p.bold {
        font-size: 1.5em;
    }
    
    .secao.texto p {
        font-size: 1.1em;
        line-height: 1.5;
    }

    .secao.texto .botoes a {
        border-radius: 24px;
        font-size: 1.05em;
        line-height: 1.35;
        max-width: 100%;
        padding: 0.8em 1em;
    }

    .secao.info .col-lg-6 {
        padding-left: 0;
        padding-right: 0;
    }

    .secao.info .texto {
        width: 100%;
    }

    .secao.info .texto::before {
        margin-left: auto;
        margin-right: auto;
    }

    .secao.info .texto p,
    .secao.indicacao .texto p,
    .secao.atendimento .texto p,
    .secao.tratamento .conteudo li,
    .secao.dormir .conteudo .lista p {
        line-height: 1.5;
    }

    .secao.info .col-lg-6 > div:not(.texto) {
        text-align: center;
    }

    .secao.info .col-lg-6 > div:not(.texto) img {
        width: min(240px, 72vw);
    }

    .testimonial {
        margin: 0 0 32px;
    }

    .testimonial .testimonial-content {
        max-width: calc(100vw - 64px);
        padding: 28px 18px 28px 42px;
        width: 100%;
    }

    .testimonial .description {
        overflow-wrap: anywhere;
    }

    .secao.indicacao .texto h3,
    .secao.atendimento .texto h3,
    .secao.tratamento .conteudo h3,
    .secao.dormir .conteudo h3 {
        font-size: 1.25em;
        line-height: 1.4;
    }

    .secao.tratamento .conteudo ul {
        border-radius: 16px;
        list-style-position: outside;
        margin-left: 0;
        padding: 1.5em 1.25em 1.5em 2em;
    }
    
    .secao.dormir .conteudo .botoes {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .secao.dormir .conteudo .botoes a {
        justify-self: stretch !important;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }

    .secao.dormir .conteudo .lista {
        padding-bottom: 120px;
    }
    
    .secao.dormir .conteudo .lista img {
        border-radius: 111px;
        bottom: 0;
        left: 50%;
        right: auto;
        top: auto;
        transform: translateX(-50%);
        width: 105px;
    }

    .secao.dormir .conteudo img.logo {
        width: min(230px, 78vw);
    }
    
    footer .info {
        gap: 1em;
        grid-template-columns: 1fr;
    }
    
    footer .info p {
        text-align: center !important;
        line-height: 1.5;
    }

    footer .links a {
        display: inline-block;
        margin-bottom: 0.4em;
    }
    
}

 
.demo{ background-color: #2678bc;
padding-top: 10px;}
.testimonial{
    margin: 0 20px 40px;
}
.testimonial .testimonial-content{
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background: #fff;
    border: 1px solid #f0f0f0;
    position: relative;
}
.testimonial .testimonial-content:after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
}
.testimonial-content .testimonial-icon{
    width: 50px;
    height: 45px;
    background: #DDA5DE;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}
.testimonial-content .testimonial-icon:before{
    content: "";
    border-bottom: 16px solid #DC83DE;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}
.testimonial .description{
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}
.testimonial .title{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: #ff4242;
}
.owl-theme .owl-controls{
    margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span{
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #ff4242;
}

@media (max-width: 576px) {
    .testimonial {
        margin: 0 0 32px;
    }

    .testimonial .testimonial-content {
        max-width: calc(100vw - 64px);
        padding: 28px 18px 28px 42px;
        width: 100%;
    }

    .testimonial .description {
        line-height: 1.5;
        overflow-wrap: anywhere;
    }
}
