.texto {
    padding: 2rem;

    background: rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 20px;

    box-shadow:
        0 10px 40px rgba(11, 13, 15, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    text-align: center;
}

.sobre {
    display: flex;
    flex-direction: column;
    align-items: center;
}


@media (min-width: 768px) {

    .texto:hover {
        transform: translateY(-4px);

        border-color: rgba(23, 105, 170, 0.35);

        box-shadow:
            0 16px 45px rgba(11, 13, 15, 0.12);
    }

}