.header_categoria {
    background-color: #f4f4f4;
}

.header_categoria .top.ctn_center {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 15px;
}

.header_categoria .top.ctn_center svg {
    fill: var(--azul);
    width: 35px;
    height: 35px;
    margin-right: 15px;
}

.header_categoria .top.ctn_center h4 {
    font-size: 25px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
}

.header_categoria .top.ctn_center h4:hover {
    color: var(--azul);
}

.header_categoria .bottom.ctn_center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15px;
}

.header_categoria .bottom.ctn_center svg {
    fill: var(--azul);
    width: 50px;
    height: 50px;
}

.header_categoria .bottom.ctn_center h3 {
    color: var(--azul);
    font-size: 30px;
    font-weight: 600;
    margin-top: 5px;
    text-align: center;
}

.header_categoria .bottom.ctn_center h4 {
    color: #333333;
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
}

.header_categoria .bottom.ctn_center h4 b {
    font-weight: 600;
}

.title_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 20px;
}

.title_top h1 {
    color: var(--azul);
    font-size: 30px;
    font-weight: 600;
}

.title_top a.btn_iniciar {
    background-color: #268744;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    border: 10px solid #ededed;
    transition: 0.2s;
}

.title_top a.btn_iniciar:hover {
    scale: 1.05;
}

.exp h2 {
    margin-top: 30px;
    font-size: 25px;
    font-weight: 600;
}

.exp h2:first-child {
    margin-top: 0;
}

.exp p {
    margin-top: 10px;
    color: #555555;
    font-size: 16px;
    font-weight: 500;
}

.exp ul {
    margin-left: 15px;
    margin-top: 10px;
}

.exp ul li {
    margin-top: 5px;
    color: #555555;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width:1000px) {

    .header_categoria .top.ctn_center svg {
        width: 25px;
        height: 25px;
    }

    .header_categoria .top.ctn_center h4 {
        font-size: 18px;
    }

    .header_categoria .bottom.ctn_center {
        margin-top: 5px;
    }

    .header_categoria .bottom.ctn_center h3 {
        font-size: 20px;
    }

    .title_top {
        flex-direction: column;
    }

    .title_top h1 {
        font-size: 25px;
        text-align: center;
    }

    .title_top a.btn_iniciar {
        margin-top: 15px;
        padding: 15px 50px;
        font-size: 18px;
        font-weight: 600;
    }
}