    #cursos {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 20px;
        padding: 20px;
        color: #6A9C5C;
        min-height: 100vh;
    }

    #cursos img {
        margin-bottom: 5%;
        width: 150px;
        height: 150px;
    }

    #cursos h1 {
        font-size: 2rem;
        margin: 5px;
        color: #ffff;

    }

    .cursos-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 25px;
        padding: 50px;
        text-align: center;
        margin: 20px;

    }

    .cursos-container h2 {
        font-size: 2rem;
        margin: 10px;

    }

    .cursos-container p {
        font-weight: 100;
        font-size: 1.5rem;
        padding: 5px;
    }

    .btn-saiba-mais {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
        background: #6A9C5C;
        padding: 10px;
        color: #ffff;
        margin: 30px 20px;
        border-radius: 999px;
        max-width: 500px;
        text-align: center;
        transition: background 0.5s ease-in-out, box-shadow 0.5s ease-in-out;

    }

    .btn-saiba-mais a {
        text-decoration: none;
        color: #ffff;
        font-weight: 500;
    }

    .btn-saiba-mais:hover {
        background-color: #c1deaf;
        color: #6A9C5C;
        border: 0.5px solid #FFF;
        box-shadow: 1px 1px 8px rgba(255, 255, 255, 1);
    }


    @media (min-width: 300px) and (max-width: 900px) {
        #cursos img {
            margin-bottom: 5%;
            width: 100px;
            height: 100px;
        }

        #cursos h1 {
            font-size: 1.3rem;
            margin-bottom: 5%;
        }

        .cursos-container {
            padding: 30px;

        }

        .cursos-container h2 {
            font-size: 1.3rem !important;
            margin: 10px;

        }

        .cursos-container p {
            font-size: 1rem;
            font-weight: 100;
            padding: 5px;
        }

        .btn-saiba-mais {
            max-width: 150px;

        }

    }