:root {
    --cor-azul: #1d4e6a;
    --cor-rosa: #c79f98;
    --cor-creme: #f2e7df;
    --cor-branco: #ffffff;
    --cor-marrom: #65564e;
    --font-family: raleway, sans-serif;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.aparecerAoCarregar {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

html,
body {
    margin: 0;
    padding: 0;
}

body,
main {
    font-family: var(--font-family);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

header {
    width: 90vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0;
}

figure {
    margin: 0;
}

img.logo-inicio {
    max-width: 246px;
    width: 25vw;
    min-width: 150px;
}

header .header-email a,
header .header-email a:link,
header .header-email a:visited,
header .header-email a:hover,
header .header-email a:active {
    /* min 12px, ideal 2vw, max 15px */
    font-size: clamp(12px, 2vw, 15px);
    color: var(--cor-azul);
}

/* MENU */
nav {
    width: 100%;
}

nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
}

nav ul li {
    list-style-type: none;
}

nav ul a {
    text-decoration: none;
    color: var(--cor-azul);
    transition: color .4s ease 0s;
    font-weight: bold;
    font-size: 0.9em;
}

nav ul a.ativo {
    color: var(--cor-rosa);
}

nav ul a:hover {
    color: var(--cor-rosa);
    cursor: pointer;
}

/* FIM MENU */


h2:before {
    content: "";
    background-image: url(../img/ico-arvore.webp);
    width: 50px;
    display: inline-block;
    height: 50px;
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: left;
    vertical-align: -10px;
    padding: 0 15px 0 0;
}

h2 {
    color: var(--cor-rosa);
    font-weight: normal;
    font-size: 2.5em;
    margin: 25px 0;
    line-height: 50px;
}

h3 {
    color: var(--cor-rosa);
    font-size: 1.4em;
}

p {
    margin: 0;
}

.fundo-azul {
    background-color: var(--cor-azul);
}

.fundo-branco {
    background-color: var(--cor-branco);
}

.fundo-rosa-claro {
    background-color: var(--cor-creme);
}

.uppercase {
    text-transform: uppercase;
}


p.citacao {
    font-size: clamp(18px, 2.8vw, 25px);
    font-weight: bold;
    text-align: justify;
}

p.autor {
    font-style: italic;
}

p.autor::before {
    content: "- ";
}

button {
    padding: 10px 35px;
    background: #00000000;
    line-height: 21px;
    width: fit-content;
    transition: 0.5s;
}

button:hover {
    cursor: pointer;
}

button.botao-branco {
    border: solid 1px var(--cor-branco);
    color: var(--cor-branco);
}

button.botao-branco:hover {
    background-color: var(--cor-branco);
    color: var(--cor-rosa);
}

button.botao-azul {
    border: solid 1px var(--cor-azul);
    color: var(--cor-azul);
}

button.botao-azul:hover {
    background-color: var(--cor-azul);
    color: var(--cor-branco);
}

section.inicio-banner {
    background: linear-gradient(0deg, rgba(199, 159, 152, 0.8), rgba(199, 159, 152, 0.8)), url("../img/inicio-maos.webp");
    background-position: center;
    background-size: 100vw;
    background-repeat: no-repeat;

    width: 90vw;
    max-height: 700px;
    margin: 0 5vw 5vw 5vw;

    aspect-ratio: 3 / 1.8;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5em;

    color: var(--cor-branco);
}

section.inicio-banner .citacao {
    width: 700px;
    line-height: 40px;
}

section.inicio-banner button {
    font-weight: bold;
}

section.inicio-sobremim {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 5vh 0;
}

section.inicio-sobremim .sobre-mim {
    /* Posicao */
    grid-column: 2/3;
    z-index: 1;
    aspect-ratio: 1/0.8;

    /* Conteudo */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 40px 50px;
    gap: 20px;
    min-width: 300px;
}

section.inicio-sobremim h2 {
    margin: 0;
}

section.inicio-sobremim figure {
    margin-left: -80px;
}

section.inicio-sobremim p {
    font: normal normal normal 15px/1.88em raleway, sans-serif;
    color: var(--cor-azul);
    text-align: justify;
}

section.inicio-citacao {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 295px;
}

section.inicio-citacao article {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 50px;
    color: var(--cor-rosa);
    font-size: 1.2em;
}

section.inicio-servicos {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 5vw;
    text-align: center;
    height: 1050px;
}

section.inicio-servicos h2::before {
    background-image: url(../img/ico-arvore-branco.png);
}

section.inicio-servicos h2 {
    color: var(--cor-creme);
    margin: 4vw 0;
}

section.inicio-servicos .inicio-servicos-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 35px;
}

section.inicio-servicos .inicio-servico {
    width: 300px;
}

section.inicio-servicos .inicio-servico div.imagem {
    height: 550px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 460px;
}

section.inicio-servicos .inicio-servico div.conteudo {
    background-color: var(--cor-branco);
    color: var(--cor-azul);
    padding: 50px 35px 50px;
    height: 220px;
}

section.inicio-servicos .inicio-servico div.conteudo p {
    font: normal normal normal 15px/1.88em raleway, sans-serif;
    height: 100px;
    padding: 20px 0 0;
}

/*
section.inicio-depoimentos {
    text-align: center;
}
section.inicio-depoimentos h2 {
    margin: 0;
    padding: 70px 0;
}
section.inicio-depoimentos p {
    font-size: 0.9em;
    font-weight: normal;
    line-height: 1.75em;
    text-align: center;
    margin-bottom: 25px;
}

section.inicio-depoimentos .inicio-depoimentos-wrapper {
    display: flex;
    height: 600px;
}

section.inicio-depoimentos .inicio-depoimento {
    padding: 50px 100px;
    flex: 0 0 100vw;
    height: 100%;
}

section.inicio-depoimentos .inicio-depoimento:nth-child(even) {
    background-color: var(--cor-azul);
    color: var(--cor-branco);
}
section.inicio-depoimentos .inicio-depoimento:nth-child(odd) {
    background-color: var(--cor-creme);
    color: var(--cor-azul);
} */
section.inicio-depoimentos {
    text-align: center;
}

section.inicio-depoimentos h2 {
    margin: 0;
    padding: 70px 0;
}

section.inicio-depoimentos p {
    font-size: 0.9em;
    font-weight: normal;
    line-height: 1.75em;
    text-align: center;
    margin-bottom: 25px;

    text-wrap: balance;
}

section.inicio-depoimentos .inicio-depoimentos-wrapper {
    overflow: hidden;
}

.slide-controller:nth-child(1):checked~ul {
    --selected-item: 0;
}

.slide-controller:nth-child(2):checked~ul {
    --selected-item: 1;
}

.slide-controller:nth-child(3):checked~ul {
    --selected-item: 2;
}

.slide-controller:nth-child(4):checked~ul {
    --selected-item: 3;
}

.slide-controller:nth-child(5):checked~ul {
    --selected-item: 4;
}

.slide-controller:nth-child(6):checked~ul {
    --selected-item: 5;
}

section.inicio-depoimentos .inicio-depoimentos-wrapper ul {
    --selected-item: 0;
    --total-items: 6;
    position: relative;
    left: calc(var(--selected-item) * -100%);
    width: calc(var(--total-items) * 100%);
    transition: left 0.4s cubic-bezier(0.680, -0.550, 0.265, 1.550);

    list-style-type: none;
    margin: 0;
    padding: 0;

    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
}

/* FIXME fundo rosa e azul alternadamente, começa pelo rosa */
section.inicio-depoimentos .inicio-depoimento:nth-child(even) {
    background-color: var(--cor-azul);
    color: var(--cor-branco);
}

section.inicio-depoimentos .inicio-depoimento:nth-child(odd) {
    background-color: var(--cor-creme);
    color: var(--cor-azul);
}

section.inicio-contato {
    background-color: var(--cor-rosa);
    color: var(--cor-branco);
    display: flex;
    width: 100%;
    height: 700px;
}

section.inicio-contato>div {
    flex: 0 0 50%;
}

section.inicio-contato h2 {
    color: var(--cor-branco);
}

section.inicio-contato h2:before {
    background-image: url("../img/ico-arvore-branco.png");
}

section.inicio-contato a,
section.inicio-contato a:link,
section.inicio-contato a:hover,
section.inicio-contato a:visited {
    color: var(--cor-branco);
}

section.inicio-contato .esquerda .esquerda-conteudo {
    padding: 50px 50px 0;
}

section.inicio-contato .esquerda .esquerda-conteudo .info-contatos {
    margin: 50px 0;
    line-height: 30px;
}

section.inicio-contato div.info-contatos a,
section.inicio-contato div.info-contatos a:hover,
section.inicio-contato div.info-contatos a:visited,
section.inicio-contato div.info-contatos a:link,
section.inicio-contato div.info-contatos a:active {
    text-decoration: none;
}

section.inicio-contato .direita {
    width: 100%;
    background-image: url(../img/contato.webp);
    background-size: cover;
    background-position-y: bottom;
}

section.inicio-contato form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

section.inicio-contato form .linha-toda {
    grid-column: 1/3;
}

section.inicio-contato form input,
section.inicio-contato form textarea {
    border: none;
    background: inherit;
    border-bottom: solid 1px var(--cor-branco);
    resize: none;
    padding: 15px;
}

section.inicio-contato form textarea {
    height: 6em;
}

section.inicio-contato form input::placeholder,
section.inicio-contato form textarea::placeholder {
    color: var(--cor-branco);
    font-family: var(--font-family);
    font-size: 1em;
}

section.inicio-contato form button {
    color: var(--cor-branco);
    background-color: var(--cor-azul);
    border: none;
    width: 100%;
    height: 50px;
    margin: 30px 0 50px;
    font-size: 1em;
}

section.inicio-contato form button:hover {
    background-color: var(--cor-branco);
    color: var(--cor-azul);
}

div.google-maps {
    width: 100vw;
    height: 450px;
}

footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    width: 100%;
    height: 150px;

    background: var(--cor-azul);
    color: var(--cor-creme);
}

aside {
    position: fixed;
    bottom: 0;
    right: 0;

    text-align: center;
    padding: 25px;
}

aside p {
    margin: 25px 0 0;
}

aside p:hover {
    cursor: pointer;
}

aside img {
    width: 50px;
}

aside svg {
    width: 40px;
    height: 40px;
    transform: rotate(180deg);
}

aside svg path {
    fill: #5B7C8F;
}


/* SOBRE MIM */
div.sobremim-wrapper {
    display: flex;
    flex-direction: column;
    background-color: var(--cor-creme);
}

div.sobremim-wrapper section {
    display: grid;
    grid-template-columns: repeat(2, 500px);
    margin: 70px;
}

div.sobremim-wrapper section img {
    width: 500px;
}

div.sobremim-wrapper section div.texto {
    background-color: var(--cor-branco);
    padding: 25px;
    text-align: center;
}

div.sobremim-wrapper section div.texto button {
    margin-top: 25px;
}

div.sobremim-wrapper section div.texto h2 {
    font-size: 2em;
}

div.sobremim-wrapper section div.texto p,
div.sobremim-wrapper section div.texto ul li {
    line-height: 25px;
    font-size: 0.8em;
    text-align: justify;
}

div.sobremim-wrapper section div.texto p {
    margin-bottom: 25px;
}

div.sobremim-wrapper section div.texto ul li {
    font-weight: bold;
}

/* SERVICOS */
div.servicos-wrapper section {
    display: grid;
    grid-template-columns: repeat(2, 50%);
}

div.servicos-wrapper div.figura {
    background-size: cover;
}

div.servicos-wrapper section.servicoPag-psicologia div.figura {
    background-image: url('../img/servicoPag-psicologia.webp');
}

div.servicos-wrapper section.servicoPag-constelacao div.figura {
    background-image: url('../img/servicoPag-constelacao.webp');
}

div.servicos-wrapper section.servicoPag-focalizacao div.figura {
    background-image: url('../img/servicoPag-focalizacao.webp');
}

div.servicos-wrapper section div.texto {
    padding: 50px 100px;
    text-align: center;
}

div.servicos-wrapper section div.texto h2 {
    font-size: 2em;
}

div.servicos-wrapper section div.texto p {
    line-height: 25px;
    font-size: 0.8em;
    text-align: justify;
    margin-bottom: 25px;
}

nav.socialmedia {
    display: none;
}

/* https://www.w3schools.com/css/css_rwd_mediaqueries.asp */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    h2 {
        font-size: 1.7em !important;
        text-align: center;
    }

    header figure,
    header div.header-email {
        display: none;
    }

    section.inicio-banner {
        margin: 0;
        width: 100%;
        max-height: 300px;
    }

    section.inicio-banner .citacao {
        width: 90vw;
        line-height: 30px;
    }

    p.citacao {
        font-size: 1em;
        line-height: 30px;
    }

    section.inicio-sobremim {
        grid-template-rows: auto;
        grid-template-columns: auto;
        width: 100vw;
        padding: 30px 0;
        justify-items: center;
    }

    section.inicio-sobremim>* {
        width: 90vw;
    }

    section.inicio-sobremim .sobre-mim {
        grid-column: auto;
        grid-row: 2;
        align-items: center;
        padding: 0;
    }

    section.inicio-sobremim .sobre-mim p {
        padding: 0 20px;
    }

    section.inicio-sobremim figure {
        grid-column: auto;
        grid-row: 1;
        margin: 0;
    }

    section.inicio-sobremim figure img {
        width: 90vw;
    }

    section.inicio-citacao {
        width: 100vw;
        height: auto;
    }

    section.inicio-citacao article {
        width: auto;
        padding: 40px;
        gap: 30px;
    }

    section.inicio-servicos {
        height: auto;
    }

    section.inicio-servicos .inicio-servicos-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    section.inicio-servicos .inicio-servico {
        width: 90vw;
    }

    section.inicio-servicos .inicio-servico div.imagem {
        height: 300px;
        background-size: 90vw;
    }

    section.inicio-servicos .inicio-servico div.conteudo {
        height: auto;
        padding: 20px 30px;
    }

    section.inicio-contato>div {
        flex: auto;
        max-width: 100vw;
    }

    section.inicio-contato .direita {
        display: none;
    }

    section.inicio-contato .esquerda .esquerda-conteudo {
        padding: 0 20px;
    }

    section.inicio-contato form input, section.inicio-contato form textarea {
        padding: 15px 0;
    }

    footer {
        display: grid;
        justify-items: center;
        padding: 25px 0;
        height: auto;
    }

    footer div.rodape-direita {
        grid-row: 1;
    }

    footer div.rodape-esquerda {
        grid-row: 2;
        width: 75%;
        text-align: center;
    }

    footer div.rodape-esquerda a {
        display: none;
    }

    footer div.rodape-esquerda p {
        font-size: small;
        line-height: 20px;
        padding: 10px 0;
    }

    aside p.whastapp {
        display: none;
    }

    aside p.scrollToTop {
        padding: 0;
    }

    aside {
        padding: 0 15px 75px;
    }

    body {
        padding-bottom: 50px;
    }

    nav.socialmedia {
        position: fixed;
        bottom: 0;
        width: 100vw;
        height: 50px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: grey;
        z-index: 9;
    }

    nav.socialmedia a {
        background: var(--cor-branco);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav.socialmedia a svg {
        width: 30px;
        height: 20px;
    }

    nav.socialmedia a.email svg {
        fill: #be1867;
    }

    nav.socialmedia a.instagram svg {
        fill: black;
    }

    nav.socialmedia a.linkedin svg {
        fill: #0a66c2;
    }

    nav.socialmedia a.whatsapp svg {
        fill: #25d366;
    }

    /* SOBRE MIM */
    div.servicos-wrapper section,
    div.sobremim-wrapper section {
        grid-template-columns: 1fr;
        margin: 0;
    }

    div.servicos-wrapper section .figura,
    div.sobremim-wrapper section .figura {
        grid-row: 1;
    }

    div.servicos-wrapper section .texto,
    div.sobremim-wrapper section .texto {
        grid-row: 2;
    }

    div.sobremim-wrapper section img {
        width: 100vw;
        height: 350px;
        object-fit: cover;
        object-position: 100% 15%;
    }

    div.servicos-wrapper section .figura {
        height: 350px;
        background-position: center;
    }

    div.servicos-wrapper section div.texto {
        padding: 25px;
    }

}



/* RESPONSIVE MAX WIDTH 700 PX */
/* menu começa a ficar apertado */
@media only screen and (min-width: 601px) and (max-width: 768px) {
    /* PAGINA INICIAL */

    h2 {
        font-size: 2.0em;
    }

    h3 {
        font-size: 1.2em;
    }

    h2:before {
        width: 40px;
        height: 40px;
        background-size: 45px;
    }

    section.inicio-banner .citacao {
        width: 500px;
    }

    section.inicio-sobremim img {
        width: 350px;
    }

    section.inicio-sobremim .sobre-mim {
        gap: 10px;
        padding: 20px 25px;
    }

    section.inicio-sobremim p {
        font: normal normal normal 13px / 1.88em raleway, sans-serif;
    }

    section.inicio-servicos {
        height: 715px;
    }

    section.inicio-servicos .inicio-servico {
        width: 200px;
    }

    section.inicio-servicos .inicio-servico div.imagem {
        height: 350px;
    }

    section.inicio-servicos .inicio-servico div.conteudo {
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 250px;
    }

    section.inicio-servicos .inicio-servico div.conteudo h3 {
        margin: 0;
    }

    section.inicio-servicos .inicio-servico div.conteudo p {
        padding: 0;
    }

    section.inicio-depoimentos h2 {
        padding: 35px 0;
    }

    section.inicio-depoimentos .prev {
        left: 5px;
    }

    section.inicio-depoimentos .next {
        right: 5px;
    }

    section.inicio-depoimentos .mySlides {
        padding: 0;
    }

    section.inicio-contato .esquerda .esquerda-conteudo {
        padding: 5px 5px 0;
    }

    section.inicio-contato .esquerda .esquerda-conteudo .info-contatos {
        margin: 20px 0;
        font-size: 90%;
    }

    section.inicio-contato form {
        grid-template-columns: 1fr;
    }

    section.inicio-contato form .linha-toda {
        grid-column: auto;
    }

    section.inicio-contato .direita {
        background-size: cover;
    }

    footer {
        font-size: 80%;
        height: 110px;
    }

    footer .rodape-direita img {
        width: 90%;
    }

    /* SOBRE MIM e SERVICOS */
    div.servicos-wrapper section,
    div.sobremim-wrapper section {
        grid-template-columns: 1fr;
    }

    div.servicos-wrapper div.figura,
    div.sobremim-wrapper div.figura {
        grid-row: 1;
    }

    div.servicos-wrapper div.figura {
        height: 500px;
        width: 500px;
    }

    div.servicos-wrapper div.texto,
    div.sobremim-wrapper div.texto {
        grid-row: 2;
    }

    div.sobremim-wrapper section img {
        width: 600px;
        height: 500px;
        object-fit: cover;
        object-position: top;
    }

    div.sobremim-wrapper section {
        margin: 30px 70px;
    }

    div.servicos-wrapper section {
        justify-items: center;
    }

    div.servicos-wrapper section div.texto {
        padding: 0 100px 50px;
    }

}