/* .imgMoveParceria {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(270deg,
            #e0f7ff,
            #b3e5fc,
            #81d4fa,
            #4fc3f7,
            #29b6f6,
            #0288d1,
            #e0f7ff);
    background-size: 800% 800%;
    animation: wave 8s ease infinite;
    color: #002f4b;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    flex-direction: column;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 30rem;
}

@keyframes wave {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
} */

.imgMoveParceria {
    background-image: url('./background_parceria.webp');
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 30rem;
    animation: movimentoLuz 5s ease-in-out infinite;
    filter: brightness(1.1) saturate(1.3);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

/* Efeito de movimento suave na imagem de fundo */
@keyframes movimentoLuz {
    0% { background-position: 50% 50%; }
    50% { background-position: 60% 40%; }
    100% { background-position: 50% 50%; }
}


.bg-image {
    background-image: url('./background_parceria.webp');
    background-position: center;
    background-size: cover;
}

.cardInfo {
    background-color: #1167b8d2;
    color: white;
    position: absolute;
    border-radius: 10px;
}