.sec-matriculas { padding-top: 60px; padding-bottom: 40px; }
        .sec-cursos { margin-top: 0; padding-top: 50px; padding-bottom: 50px; }
        .sec-projetos { padding-top: 50px; padding-bottom: 80px; background: none; }
        .texto-full { flex: 1 1 100%; }
        .container-clean { box-shadow: none; justify-content: center; background: transparent; }
        .container-center { justify-content: center; }
        .subtitulo-center { text-align: center; }
        .desc-destaque { font-size: 1.1em; text-align: center; max-width: 900px; margin: 0 auto; }

        .box-documentos { background-color: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); margin-top: 20px; border-left: 6px solid #E67E22; }
        .box-documentos h3 { color: #145A32; font-size: 22px; margin-bottom: 15px; }
        .box-documentos ul { list-style: none; padding: 0; }
        .box-documentos li { font-size: 18px; margin-bottom: 12px; color: #333; display: flex; align-items: center; }
        .box-documentos li i { color: #145A32; margin-right: 15px; font-size: 20px; }

        .grid-cards { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 30px; width: 100%; }

        .card-curso { background-color: #145A32; color: white; padding: 25px 15px; border-radius: 15px; text-align: center; width: 200px; box-shadow: 0 4px 8px rgba(0,0,0,0.2); transition: transform 0.3s ease, background-color 0.3s ease; }
        .card-curso:hover { transform: translateY(-8px); background-color: #E67E22; }
        .card-curso i { font-size: 45px; color: #F1C40F; margin-bottom: 15px; }
        .card-curso h3 { font-size: 18px; font-weight: bold; }

        .card-projeto { background-color: #fff; color: #145A32; padding: 25px 15px; border-radius: 15px; text-align: center; width: 240px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border: 2px solid #145A32; transition: transform 0.3s ease, border-color 0.3s ease; }
        .card-projeto:hover { transform: translateY(-8px); border-color: #E67E22; }
        .card-projeto i { font-size: 45px; color: #E67E22; margin-bottom: 15px; }
        .card-projeto h3 { font-size: 18px; font-weight: bold; }
        .proj-desc { margin-top: 10px; font-size: 14px; color: #555; }


/* =======================================
   RESPONSIVIDADE - MATRÍCULAS / CURSOS / PROJETOS
======================================= */

/* Notebook */
@media (max-width: 1200px) {

    .grid-cards {
        gap: 18px;
    }

    .desc-destaque {
        width: 95%;
    }

}

/* Tablet */
@media (max-width: 992px) {

    .sec-matriculas {
        padding-top: 50px;
        padding-bottom: 35px;
    }

    .sec-cursos {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .sec-projetos {
        padding-top: 45px;
        padding-bottom: 60px;
    }

    .desc-destaque {
        font-size: 1rem;
        width: 100%;
    }

    .box-documentos {
        padding: 25px;
    }

    .box-documentos h3 {
        font-size: 20px;
    }

    .box-documentos li {
        font-size: 17px;
    }

    .card-curso {
        width: 190px;
    }

    .card-projeto {
        width: 220px;
    }

}

/* Celular */
@media (max-width: 768px) {

    .sec-matriculas,
    .sec-cursos,
    .sec-projetos {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .desc-destaque {
        font-size: .95rem;
        line-height: 1.7;
    }

    .box-documentos {
        padding: 20px;
    }

    .box-documentos h3 {
        font-size: 18px;
    }

    .box-documentos li {
        font-size: 16px;
        align-items: flex-start;
    }

    .box-documentos li i {
        font-size: 18px;
        margin-top: 2px;
    }

    .grid-cards {
        gap: 20px;
    }

    .card-curso,
    .card-projeto {
        width: 100%;
        max-width: 320px;
    }

    .card-curso i,
    .card-projeto i {
        font-size: 40px;
    }

    .card-curso h3,
    .card-projeto h3 {
        font-size: 17px;
    }

    .proj-desc {
        font-size: 15px;
    }

}

/* Celulares pequenos */
@media (max-width: 480px) {

    .sec-matriculas,
    .sec-cursos,
    .sec-projetos {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .desc-destaque {
        font-size: .9rem;
    }

    .box-documentos {
        padding: 18px;
    }

    .box-documentos h3 {
        font-size: 17px;
    }

    .box-documentos li {
        font-size: 15px;
    }

    .card-curso,
    .card-projeto {
        max-width: 100%;
        padding: 22px 15px;
    }

    .card-curso i,
    .card-projeto i {
        font-size: 36px;
    }

    .card-curso h3,
    .card-projeto h3 {
        font-size: 16px;
    }

    .proj-desc {
        font-size: 14px;
    }

}