body {
    background-image: url('../../assets/images/bgg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    overflow-x: hidden;
    min-height: 90vh;
    font-size: 1.2rem;
}

@font-face {
    font-family: "Outfit";
    src: url("../../fonts/outfit/OutfitRegular.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat";
    src: url("../../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
    font-weight: 700;
}

header {
    background-color: #19598d;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 0 0 30px 30px;
}

header .header-text {
    font-size: 1.2rem;
    font-weight: bold;
    flex: 1;
}

.alignCenter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}


.alignCenterOfScreen {
    position: fixed;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #19598d;
    color: #ffffff; 
    padding: 10px 20px;
    border-radius: 30px; 
    width: fit-content;
    margin: 30px auto;
    text-align: center; 
}

.describe {
    color: #19598d;
    font-size: 1.5rem;
    line-height: 1.6;
}

.describe b {
    font-weight: bold;
}

.chapter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.chapter-list li {
    color: #19598d;
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 1.5rem;
}

.justify{
    text-align: justify;
}

.title-text {
    font-size: 1.6rem;
}

@media (max-width:1024px) {
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .title-text {
        font-size: 1.2rem;
    }

    .title-container {
        padding-top: 12px;
        padding-bottom: 7px;
        padding-left: 20px;
        padding-right: 20px;
        margin: 30px auto;
    }

    .chapter-list li {
        font-size: 0.9rem;
    }

    .describe {
        font-size: 0.9rem;
    }

    .collapse-custom {
        padding: 20px;
    }

    .cartilha-title{
        font-size: 1rem!important;
    }

    .justify{
        text-align: left;
    }
}

