<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100%;
    font-family: "Athiti", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}


/*===  VARIABLES  ===*/
:root {
    --header-height: 4.5rem;

    /*=== COLORS ===*/
    --base-color: #719701;
    --base-color-second: #ffffff;
    --second-color: #9BBE0A;
    --text-color: #50462d;

    /*=== FONTS ===*/
    --title-font-size: 1.875rem;
    --subtitle-font-size: 1rem;

    --title-font: 'Montserrat', sans-serif;
    --logo-font: 'Indie Flower', cursive;
}

ul {
    list-style: none;
}


.header1 {

    padding: 0 10%;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.header1 img {
    width: 8%;
    min-width: 60px;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #50462d;
}



.menu-desktop{
display: flex;
justify-content: center;
background-color: transparent;
}


.menu-desktop ul {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 20px;
}
.menu-desktop li a {
    font-weight: 600;
    color: #50462d;
    font-size: 1.4rem;
    font-family: "Indie Flower", cursive;
    cursor: pointer;
}


.menu-desktop li a:hover {
   color: #98AF81;
}
/* Ícone do Menu Mobile */
.menu-mobile-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 15%;
}

/* Menu Mobile */
.menu-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background-color: #98af81dc;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-mobile ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-mobile ul li {
    margin: 15px 0;
}

.menu-mobile ul li a {
    font-weight: 600;
    color: #50462d;
    font-size: 1.6rem;
    font-family: "Indie Flower", cursive;
    cursor: pointer;
}

.menu-mobile ul li a:hover{
    color: #fff;
}

.menu-mobile.show {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.conteiner-principal {
    background: url('../assets/img/thom-masat-FWLoDRwB0Cw-unsplash.jpg');
    width: 100%;
}

.conteiner-sec {
    margin: 0px 10%;
    background-color: rgba(255, 255, 255, 0.801);
    color: #50462d;
   
}

/*HOME*/

#inicio {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.conteudo-inicio {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.img-left img {
    width: 400px;
    height: 600px;
    margin-left: -60px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    width: 140px;
   border-radius: 50%;
    color: #98AF81;
    border: 2px solid #50462d;
}

.logo .title h1 {
    font-family: var(--logo-font);
    color: var(--text-color);
    font-size: 4rem;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.title span {
    font-size: 4.5rem;
}

.logo .title h2 {
    font-family: var(--title-font);
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.4rem;
    text-align: center;
}

.btn-agendamento {
    display: flex;
    justify-content: center;
    border-top: 0;
}

.btn-agendamento button:hover {
   color: #50462d;
}

.img-right img {
    width: 400px;
    height: 600px;
    margin-right: -60px;
}

.logo {
    text-align: start;
    margin-bottom: 20px;
}


/* Beneficios*/

#beneficios {

    background: url('../assets/img/fundo.png');
    border-right: none;
    border-left: none;
    width: 100%;
    padding: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titulo-beneficios {
    text-align: center;
}

.titulo-beneficios h2 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #50462d;
    font-family: var(--logo-font);
}

.titulo-beneficios h4 {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 10px;
    font-weight: 500;
    color: black;
    font-family: var(--title-font);
}

.cards-beneficios {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.box-card {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.card {
    width: 260px;
    height: 300px;
    background-color: #fff;
    border: 2px solid #50462d;
    box-shadow: 2px 2px 10px #50462d;
    border-radius: 10px;
    margin: 20px 20px;
    padding: 20px;
   
}

.card h4 {
    color: #50462d;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--title-font);
    text-transform: uppercase;
}

.card p {
    color: var(--text-color);
    text-align: center;
    font-size: 16px;
}

/*banner*/

#banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 1%;
    width: 96%;
    padding: 1%;
    background-color: #98AF81;
}

#banner i {
    font-size: 2rem;
    color: #50462d;
    margin: 3%;
}

#banner h3 {
    font-size: 1.8rem;
    font-family: var(--logo-font);
    margin: 30px 0px;
    text-align: center;
    color:#50462d ;
}

#banner img {
    width: 200px;
}

/*Quem sou*/

#quem-sou {
    background-color: var(--base-color-second);
    display: flex;
    width: 100%;
    padding: 5%;
}

.img-sobre {
    width: 50%;
}

.img-sobre img {
    width: 80%;
    height: 600px;
    border-radius: 80px 0px;
    border: 4px solid #50462d;

}

.text-sobre {
    width: 50%;
    margin: 0px 5%;
    display: flex;
    flex-direction: column;
    align-self: center;
}

.text-sobre h2 {
    margin-bottom: 42px;
    font-family: var(--logo-font);
    font-size: 30px;
    color: #50462d;
}

.text-sobre p {
    font-weight: 500;
    font-family: var(--body-font);
    line-height: 20px;
    font-size: 18px;
    margin-bottom: 6px;
    text-align: start;
}

.btn-agendamento button {
    border: none;
    padding: 16px 28px;
    border-radius: 10px;
    background-color: transparent;
    color: #50462d;
    border: 2px solid #50462d;
    font-weight: bold;
    font-size: 14px;
    font-family: var(--title-font);
    margin-top: 50px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #98AF81;
    color: #fff;
}

/*reiki*/

#reiki {
    display: flex;
    justify-content: space-between;
    padding: 8% 0px;
    width: 100%;
}

.text-reiki {
    width: 50%;
    padding: 0px 5%;
}

.text-reiki h2 {
    margin-bottom: 40px;
    font-family: var(--logo-font);
    color: #50462d;
}

.text-reiki p {
    font-weight: 500;
    font-family: var(--body-font);
    line-height: 20px;
    font-size: 18px;
    margin-bottom: 6px;
    text-align: start;
}

.img-sobre-reiki {
    width: 50%;
    padding: 0px 5%;

}

.img-sobre-reiki img {
    width: 80%;
    height: auto;
    margin-left: 16%;
    border: 4px solid #50462d;
    border-radius: 0px 60px;
}


/*area de atuação*/
#area-atuacao {
    border-right: none;
    border-left: none;
    width: 100%;
    padding: 10%;
    background-color: #98AF81;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-atuacao {
    text-align: center;
}

.title-atuacao h2 {
    margin-bottom: 20px;
    font-family: var(--logo-font);
    font-size: 30px;
    color: #50462d;
}

.title-atuacao h4 {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 40px;
    font-family: var(--body-font);
    font-style: italic;
}

.box-atuacao {
    width: 70%;
    height: 100%;
    background-color: #fff;
    padding: 20px;
    border: 4px solid #50462d;
    border-radius: 0px 60px;
}


.title {
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--logo-font);
    color: #50462d;
    text-align: center;
    margin-top: 20px;

}

p {
    font-size: 14px;
    font-family: var(--body-font);
    text-align: center;
    margin-bottom: 10px;
}

.img-atuacao {
    display: flex;
    justify-content: center;
}

.img-atuacao img {
    width: 60px;
    border: 2px solid #98AF81;
}

/*Depoimentos*/

#depoimentos {
    width: 100%;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url('../assets/img/teste.png');
}

.title-depoimentos {
    font-family: var(--title-font);
    color: #50462d;
}

.title-depoimentos h2 {
    margin-bottom: 30px;
    font-size: 26px;
    font-family: var(--logo-font);
    text-align: center;
}

.title-depoimentos p {
    font-size: 18px;
    max-width: 600px;
    font-style: italic;
}

.info-user img {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    object-fit: cover;
}

.cards-depoimentos {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.card-depoimento {
    margin: 20px;
    width: 300px;
    background-color: #98AF81;
    color: var(--title-color);
    font-size: 12px;
    padding: 30px;
    border-radius: 20% 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.info-user {
    display: flex;
    align-items: end;
    margin-top: 10px;
    font-weight: 600;
}

.info-user img {
    margin-right: 10px;
    margin-top: 10px;
}

.nome-idade p {
    font-size: 14px;
}

#perguntas-frequentes {
    width: 100%;
    padding: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #98AF81;
}

.perguntas-frequentes{
    width: 60%;
}

.title-perguntas-frequentes {
    font-family: var(--logo-font);
    
}

.title-perguntas-frequentes h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #50462d;
    text-align: center;
}

.title-perguntas-frequentes h4 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    font-family: var(--title-font);
    color: black;
}

details[open] summary {
    font-style: italic;
    font-weight: 500;
}

details {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    font-family: var(--body-font);
    margin-bottom: 20px;
}

summary {
   
    color: #50462d;
    font-family: var(--body-font);
    font-size: 18px;
    cursor: pointer;
}

.text-resposta {
    margin-top: 20px;
    color: black;
    line-height: 20px;
}
/*contato*/

#contato{
    width: 100%;
    height: 100%;
    display: flex;
}

.text-contato{
    width: 50%;
    margin: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-contato h3{
    font-family: var(--logo-font);
    font-size: 40px;
    color: #50462d;
    text-align: center;
    margin-bottom: 40px;
}

.text-contato h5{
    font-weight: 400;
    font-family: var(--body-font);
    line-height: 20px;
    font-size: 20px;
   
    margin-bottom: 60px;
    text-align: center;
}

.text-contato button{
    padding: 12px 50px;
    border: 2px solid #50462d;
    font-family: var(--title-font);
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 10px;
    background-color: transparent;
    text-transform: uppercase;
    transition: 0.3s;
    color: #50462d;
}

.text-contato button:hover{
    background-color: #98AF81;
}

.img-contato{
    width: 50%;
    height: 100%;
}

.img-contato img{
      height: 100%;
}
/*footer*/
footer {
    background-color: #98AF81;
    width: 100%;
    padding: 4% 10%;
    display: flex;
    height: 100%;
}

.logo-footer {
    width: 50%;
}

.logo-footer img {
    width: 200px;
    margin-top: 60px;
    border-radius: 50%;
    border: #50462d 2px solid;
    cursor: pointer;
}

.formas-de-contato {
    width: 50%;
}

.contato {
    display: flex;
    margin: 40px;
    color: #50462d;
    font-family: var(--logo-font);
    font-size: 26px;
    font-weight: 800;
}

.contato p{
    font-size: 18px;
}

.contato a {
    margin-right: 10px;
   
    color: #50462d;
    cursor: pointer;
}

.direitos {
    color: #50462d;
    font-family: var(--logo-font);
    font-size: 16px;
    font-weight: 800;
    display: none;
}

.direitos2{
    display: block;
    color: #50462d;
    font-family: var(--logo-font);
    font-size: 18px;
    font-weight: 800;
}

/*Estilos para telas maiores*/


@media (max-width: 300px) {

    #next,
    #prev {
        position: -webkit-sticky;
        position: sticky;
 
    }

}

@media screen and (max-width: 768px) {
  
    .menu-desktop {
        display: none;
    }

    .menu-mobile-icon {
        display: block;
    }

    .menu-mobile {
        display: flex;
    }

    #quem-sou{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .img-sobre{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .img-sobre img{
        width: 200px;
       height: 200px;
        margin-bottom: 40px;
    }

    .text-sobre {
        width: 80%;
    }

    .text-sobre h2{
        text-align: center;
    }

    .text-sobre p{
        text-align: center;
    }

    .titulo-beneficios h4{
        font-size: 16px;
       
    }

    .box-card{
        display: flex;
        flex-direction: column;
    }

    #reiki{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .img-sobre-reiki{
    width: 100%;
    display: flex;
    justify-content: center;
    }

    .img-sobre-reiki img{
        width: 200px;
        height: 200px;
        object-fit: cover;
        margin: 0px;
        margin-bottom: 40px;
       
    }

    .text-reiki{
        width: 80%;
        text-align: center;
    }

    .text-reiki p{
        text-align: center;
    }

    .cards-depoimentos{
        display: flex;
        flex-direction: column;
    }

    #contato{
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .text-contato{
      display: flex;
      flex-direction: column;
      align-self: center
    }

    .img-contato img{
     margin-bottom: -10px;
     max-height: 500px;
    }

    footer{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-footer{
        display: flex;
        justify-content: center
    }

    .logo-footer img{
        width: 100px;
    }

    .formas-de-contato{
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .formas-de-contato p {
        display: none;
    }

    .direitos{
      text-align: center;
      display: block;
    }

    .direitos2{
        display: none;
    }
}



@media screen and (min-width: 768px) and (max-width: 1024px) {



    /* Estilos para telas entre 768px e 1024px de largura */
}

@media screen and (min-width: 820px) {

    /* Estilos para telas maiores que 1024px de largura */



}</pre></body></html>