@keyframes floatWoodcut {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes birdFly {
    0% {
        left: -10%;
        top: 10%;
        transform: scale(0.5);
    }

    25% {
        top: 15%;
    }

    50% {
        top: 5%;
    }

    75% {
        top: 10%;
    }

    100% {
        left: 110%;
        top: 15%;
        transform: scale(0.5);
    }
}

.carranca-decoration {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Carranca_do_Rio_S%C3%A3o_Francisco.jpg/640px-Carranca_do_Rio_S%C3%A3o_Francisco.jpg');
    /* Representative Image */
    background-size: cover;
    border-radius: 50%;
    border: 4px solid var(--ink-black);
    box-shadow: 4px 4px 0px var(--clay-red);
    filter: contrast(1.2) sepia(0.5);
    animation: floatWoodcut 6s ease-in-out infinite;
    z-index: 20;
}

.woodcut-bird {
    position: absolute;
    width: 50px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 30 Q 30 5 50 30 T 90 30' stroke='%231A1A1A' fill='none' stroke-width='5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    opacity: 0.6;
    animation: birdFly 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.woodcut-cangaceiro {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 120px;
    height: 150px;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/e/e8/Lampi%C3%A3o_e_Maria_Bonita.jpg');
    /* Representative Placeholder */
    background-size: cover;
    background-position: top;
    border: 4px solid var(--ink-black);
    transform: rotate(-5deg);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
    filter: grayscale(1) contrast(1.5);
    z-index: 15;
}

.woodcut-pattern-overlay {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
}