/* cada section que tem dados da biblioteca */
#secao-biblioteca {
    gap: 2rem;
    display: flex;
    padding: 0 1rem;
    margin: 2.5rem 0;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Animação de entrada das seções */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay progressivo para cada seção */
#secao-biblioteca:nth-child(1) {
    animation-delay: 0.2s;
}

#secao-biblioteca:nth-child(2) {
    animation-delay: 0.4s;
    flex-direction: row-reverse;
}

#secao-biblioteca:nth-child(3) {
    animation-delay: 0.6s;
}

#secao-biblioteca:nth-child(4) {
    animation-delay: 0.8s;
    flex-direction: row-reverse;
}

/* Continua alternando para mais seções */
#secao-biblioteca:nth-child(odd) {
    flex-direction: row;
}

#secao-biblioteca:nth-child(even) {
    flex-direction: row-reverse;
}

/* imagens das sections */
#secao-biblioteca img {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    object-fit: cover;
    background-color: var(--vermelho);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

/* Efeito de zoom ao passar o mouse */
#secao-biblioteca img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* textos das sections */
#secao-biblioteca p {
    flex: 1;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    text-align: justify;
    text-indent: 2rem;
}

/* Responsivo para tablets */
@media (max-width: 768px) {
    main {
        padding: 30px 15px;
    }

    #secao-biblioteca,
    #secao-biblioteca:nth-child(odd),
    #secao-biblioteca:nth-child(even) {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    #secao-biblioteca img {
        width: 100%;
        height: 250px;
    }

    /* Ajusta o hover para mobile (reduz o zoom) */
    #secao-biblioteca img:hover {
        transform: scale(1.02);
    }

    #secao-biblioteca p {
        width: 100%;
    }
}

/* Responsivo para mobile */
@media (max-width: 480px) {
    main {
        padding: 4vw 2vw;
    }

    #secao-biblioteca {
        padding: 0;
        margin: 5vw 0;
        gap: 3vw;
    }

    #secao-biblioteca img {
        height: 42vw;
    }

    /* Remove o efeito de zoom em telas muito pequenas */
    #secao-biblioteca img:hover {
        transform: none;
        box-shadow: none;
    }

    #secao-biblioteca p {
        font-size: 3vw;
        text-indent: 5vw;
    }
}