#viver_experiencia {

    min-height: 100vh;

    background-color: var(--cor-verde);

    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url("../recursos/img/inicio/jornada_jogavel.gif");
    background-position: left;
     background-attachment: fixed;
       background-repeat: no-repeat;


    background-size: 100%;
    transition: background-size 0.8s ease;

    position: relative;

    overflow: hidden;

    border-bottom: 3px solid var(--cor-rosa);

}

#viver_experiencia a {

    padding: 15px 35px;
    border-radius: 30px;
    font-size: 2rem;

    z-index: 10;

}

#viver_experiencia:has(a:hover) {

    background-size: 150%;


}

.imagem_fundo {

    background-color: black;
    opacity: 0.6;

    height: 100%;
    width: 100%;

    position: absolute;

    transition: 0.5s;

    inset: 0;
    z-index: 0;
    pointer-events: none;

}

/* Seção quem sou */

#quem_sou {

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 90vh;

    background: linear-gradient(var(--cor-verde), var(--cor-azul));

    border-bottom: 3px solid var(--cor-laranja);

    gap: 50px;

}


#quem_sou #texto_apresentacao h2 {

    color: var(--cor-laranja);
    font-family: var(--font-titulo), sans-serif;
    font-size: 4rem;
    letter-spacing: 2px;


}

#quem_sou #texto_apresentacao h3 {

    color: var(--cor-creme);
    font-family: var(--font-body);
    font-weight: bold;
    font-size: 2rem;
}


#quem_sou #texto_descricao h3 {

    color: var(--cor-creme);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.5rem;
}

/*Seção o que eu faço*/

#o_que_faco {

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 90vh;

    background: linear-gradient(var(--cor-roxo), #6f4b85);

    border-bottom: 3px solid var(--cor-laranja);

    gap: 50px;

}



#o_que_faco #texto_apresentacao h2 {

    color: var(--cor-laranja);
    font-family: var(--font-titulo);
    font-size: 3rem;
    letter-spacing: 2px;


}



#o_que_faco #texto_descricao h3 {

    color: var(--cor-creme);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.5rem;

}


/* Seção porque faço - dos post-its */

.postits-area {
    padding: 32px 16px;
    min-height: 100vh;
    background-color: var(--cor-creme);
}

.postits-area h2 {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--cor-laranja-escuro);
    text-align: center;

    margin-top: 100px;
}

.postits-board {
    position: relative;
    width: 100%;
    overflow: visible;
    /* não corta */
    padding-bottom: 80px;
    /* folga no final */
}

/* Post-it */
.postit {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 100px;
    min-height: 140px;
    padding: 16px 14px 14px;
    border-radius: 1px;
    background: #F3A527;
    /* troca pelas suas vars se quiser */
    color: #1a1a1a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    transform: translate(calc(var(--x) * 1px), calc(var(--y) * 1px)) rotate(var(--r));
    cursor: grab;
    touch-action: none;
}

.postit:active {
    cursor: grabbing;
}

.postit p {

    font-family: var(--font-body);
    margin: 10px 0 0;
    line-height: 1.35;
    font-size: 1.5rem;

}

.postit.rosa {
    background: #FD9AE7;
    width: 220px;
    min-height: 200px;
}

.postit.laranja {
    background: #FFF7A0;
    width: 200px;
    min-height: 200px;
}

.postit.verde {
    background: #B3E55F;
    width: 150px;
    min-height: 150px;
}

.postit.verdeAgua {
    background: #81E7DE;
    width: 220px;
    min-height: 250px;
}

.postit.roxo {
    background: #B9ADFB;
    width: 250px;
    min-height: 220px;
}


#o_que_fiz {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 100vh;

    background: linear-gradient(var(--cor-azul), #262678);
  background-attachment: fixed;
  padding-top: 100px;

    border-bottom: 3px solid var(--cor-laranja);

    gap: 50px;

}


#o_que_fiz #texto_apresentacao h2 {

    color: var(--cor-creme);
    font-family: var(--font-body);
    font-weight: bold;
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}





@media (max-width: 900px) {

    #viver_experiencia a {

        padding: 15px 30px;
        border-radius: 30px;
        font-size: 1.3rem;
        letter-spacing: 2px;

        z-index: 10;

    }

    #viver_experiencia {

        min-height: 450px;

    }

    #quem_sou {
        flex-direction: column;
        min-height: 600px;

    }

    #o_que_faco {
        flex-direction: column;
        min-height: 600px;

    }

}

