/* === Bloco 1: Animação Progress Bar === */
.progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 15px;
            animation: .6s linear infinite animate-stripes;
            background-size: 30px 30px;
            background-color: #EEFF85;
            background-image: linear-gradient(135deg, rgba(0, 0, 0, .15) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .15) 50%, rgba(0, 0, 0, .15) 75%, transparent 75%, transparent);
        }

        @keyframes animate-stripes {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 60px 0;
            }
        }

/* === Bloco 2 === */
.quote:before {
        color: #ccc;
        content: "“";
        font-size: 64px;
        line-height: 0;
        margin-right: 5px;
        position: relative;
        bottom: -30px;
    }
    .quote * {
        display: inline;
    }

/* === Bloco 3 === */
@keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
    }
    .pulse-animation {
        animation: pulse 3s infinite;
    }

/* === Bloco 4 === */
@keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
    }
    .pulse-animation {
        animation: pulse 3s infinite;
    }

/* === Bloco 5 === */
@keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
    }
    .pulse-animation {
        animation: pulse 3s infinite;
    }

/* === Bloco 6 === */
@keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
    }
    .pulse-animation {
        animation: pulse 3s infinite;
    }

/* === Bloco 7 === */
@keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
    }
    .pulse-animation {
        animation: pulse 3s infinite;
    }
