body {
    background-image: url(../images/fundo-site.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

/* Configurando as fontes do projeto */

body h1, h2 {
    font-family: 'Permanent Marker', cursive;
}

body h3, p {
    font-family: 'Outfit', sans-serif;
}

/* Início da configuração do cabeçalho */

.cabecalho {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 50px;
}

.cabecalho .titulo {
    color: rgb(255, 196, 0);
    opacity: 0.5;
    text-shadow: 0px -8px rgb(255, 0, 0);
}

/* Configurações dos cartões */

.tarot-slider {
    margin: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

ul img {
    width: 300px;
    height: 320px;
}

.lista-cartas {
    width: 300px;
    height: 530px;
    position: relative;
}

.btn-seta {
    background-color: #f1ecff;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.btn-seta.btn-voltar {
    transform: rotateY(180deg);
}

.btn-seta:hover {
    background-color: rgb(223, 173, 10);
}

.cartao {
    background-color: blueviolet;
    opacity: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    padding: 12px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: opacity 0.3s ease-in-out;
}

.cartao.selecionado {
    opacity: 1;
    z-index: 1;
}

.fundo {
    background-color: #000;
}

.cartao .titulo-cartao {
    background-color: rgba(170, 177, 185, 0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 5px;
}

.titulo-cartao .numero {
    background-color: #333;
    padding: 6px 10px;
    border-radius: 20px;
}

.container-imagem {
    text-align: center;
}

.imagem-tarot {
    max-width: 100%;
    max-height: 280px;
}

.cartao .descricao {
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cartao .descricao .titulo-descricao {
    background-color: #333;
    color: #f1ecff;
    font-size: 15px;
    padding: 5px;
    height: 30px;
}

.cartao .descricao p {
    font-size: 14px;
    padding: 5px;
    text-align: justify;
    max-height: 115px;
    overflow-y: auto;
}




