@media(max-width: 768px) {
    .info-card {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .img-logo {
        width: 280px;
    }

    .info-card span {
        text-align: center;
    }

    /* Inicialmente invisível */
    .suave {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    /* Quando a classe 'mostrar' é adicionada */
    .mostrar {
        opacity: 1;
        transform: translateY(0);
    }
}


.img-logo {
    width: 300px;
}


.suave {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}


.mostrar {
    opacity: 1;
    transform: translateY(0);
}


.container {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
}

.btn-blue-primary {
    background-color: transparent;
    border: 1px solid #25335D;
    padding: 5px;
    border-radius: 5px;
    color: #25335D;
    transition: ease-in-out 0.2s;
}

.btn-blue-primary:hover {
    background-color: #25335D;
    scale: 1.02;
    color: #ffff;
}