.bg-marrom-personalizado {
    background-color: #33221a;
}

.text-marrom-personalizado {
    color: #33221a;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
.font-zalando {
    font-family: 'Zalando Sans', Arial, sans-serif;
}

.serra {
    position: absolute;
    top: 40vh;
    left: -300px;
    width: 300px;
    height: 60px;
    background: repeating-linear-gradient(135deg,
            #3e2723 0 20px,
            #ffeb3b 20px 30px);
    border-radius: 25px;
    box-shadow: 0 6px 16px #3335;
}

/* Animação de flutuação (bounce) para projeto flutuante */
.floating-project {
    width: 300px;
    margin: 0 auto;
    animation: float-bounce 3s ease-in-out infinite;
}

@keyframes float-bounce {

    0%,
    100% {
        transform: translateY(60px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Estilo das gotas em formato de lágrima */
.droplet-shape {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border-top-right-radius: 0;
    transform: rotate(-45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Efeito hover nas gotas */
.droplet-shape:hover {
    transform: rotate(-45deg) scale(1.1);
}

.droplet-content {
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
}