.image-container {
    position: relative;
    display: block;
}

.image-container img {
    display: block;
    width: 100%;
    height: 60vw;
    max-height: 28vw;
}

.img-logo img {
    position: absolute;
    bottom: 2vw;
    right: -40px;
    padding: 0 50px 20px 40px; /* Espaçamento interno */
    width: 150px;
    height: 60px;

}

.user-badge {
    position: absolute;
    top: 0;
    right: 0;
}

.img-text {
    position: absolute;
    top: 15vw;
    left: 0;
    width: 100%;
    padding: 0 50px 0 50px; /* Espaçamento interno */
}

.home-title {
    font-family: "Kaushan Script", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 4vw;
    color: white;
    display: block;
    line-height: 0.9;
    /*text-shadow: 3px 5px 7px black;*/
}

.home-body {
    display: block;
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3vw;
    color: white;
    width: 60%;
    line-height: 1;
    margin-top: 1vw;
    text-shadow: 3px 5px 7px black;
}

.card-container {
    perspective: 1000px; /* Dá um efeito 3D */
    display: inline-block;
    width: 100%;
}

.card-home {

    width: 100%;
    /*background-color: white;*/
}


.pintar {
    background-color: white;
    margin-top: 1.6vh;
    padding: 10px;
    border-radius: 10px;
}

.card-home .card-title {
    margin: 10px 10px 20px 10px;
    text-align: center;
    font-family: Quicksand, sans-serif;
}

.card-description {
    font-family: Quicksand, sans-serif;
    text-align: center;
    display: block;
    margin: 10px;
}

.card-home:hover {
    /*box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);*/
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease, box-shadow 0.3s ease;
}

.card-home .card-border-top {
    background-color: #fd7e14;
    height: 5px;
    border-radius: 2rem;
}

.card-button {
    margin-top: 25px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
}

.card-button button {
    border: none;
    border-radius: 5px;
    font-family: Quicksand, sans-serif;
    background-color: transparent;
    font-size: 16px;
    color: #fd7e14;
    font-weight: bold;
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Suaviza a transição */
}

.card-button button:hover {
    background-color: #fd7e14; /* Cor ao passar o mouse */
    color: white;
    /*transform: scale(1.05); !* Leve aumento no tamanho para destacar *!*/
}
