.home {

    min-height: 100vh;
    width: 100%;
    overflow: hidden;

    background: url('/img/principal/ChatGPT\ Image\ 1\ de\ mar.\ de\ 2026\,\ 11_07_38.png') no-repeat top center;
    background-size: cover;
    background-position: top center;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;

}

.home-content {
    background: rgba(255, 255, 255, 0.15);
    padding: 0 20px;
    border-radius: 20px;
    text-align: center;
    z-index: 2;
    max-width: 100%;
    backdrop-filter: blur(12px);
    animation: fadeUp 1s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    

}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home::before {
    pointer-events: none;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 200%;
    background-size: cover;

}

.home-content p {

    color: #7a4a4a;
    margin-bottom: 25px;
    font-family: 'Dancing Script', cursive;

}

.home-content h2 {
    color: #6b3f3f;
    font-size: 10rem;
    margin-bottom: 20px;
    font-family: 'Dancing Script', cursive;
}



.home h2 {
    font-size: 64px;
    color: var(--marrom);
    font-family: 'Dancing Script', cursive;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);

}

.home p {
    font-size: 29px;
    color: #6b3f3f;
    margin-top: 10px;
    font-style: italic;

}



.produtos h2 {
    text-align: center;
}

.caricatura img {
    width: 280px;
    opacity: 0;
    transform: translateY(50px);
    animation: aparecer 1s ease-out forwards, mexerMassa 4s ease-in-out infinite;
}


/*Entrada suave*/
@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*movimento divertido*/
@keyframes mexerMassa {
    0% {
        transform: rotate(0deg) translateY(0);
    }

    25% {
        transform: rotate(3deg) translateY(-2px);
    }

    50% {
        transform: rotate(0deg) translateY(0);
    }

    75% {
        transform: rotate(-3deg) translateY(-2px);
    }

    100% {
        transform: rotate(0deg) translateY(0);
    }
}