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-family: "Outfit";
    src: url("../../fonts/outfit/OutfitRegular.ttf") format("truetype");
}

@font-face {
font-family: "Outfit";
src: url("../../fonts/outfit/OutfitRegular.ttf") format("truetype");
}

@font-face {
font-family: "AlumniItalic";
src: url("../../fonts/alumni/AlumniSansMediumItalic.ttf") format("truetype");
}

@font-face {
font-family: "Myriado";
src: url("../../fonts/myriad/MYRIADPRO-REGULAR.OTF") format("truetype");
}

.capitulo-card {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.capitulo-numeroTitle {
    background-color: #69c0e4;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 20px 0 0 20px;
    font-size: 1.6rem;
    font-family: "AlumniItalic";
    text-align: center;
}

.capitulo-tituloTitle {
    color: #19598d;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 1.2rem;
    white-space: nowrap;
    font-family: "OutfitMedium";
}

.capitulotituloTitle1 {
    color: #19598d;
    font-weight: bold;
    padding: 10px 20px;
    white-space: nowrap;
    font-family: "Outfit";
    line-height: 2vh;
}

.sumario {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.sumario-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 90%;
    max-width: 800px;
    min-width: 300px;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    gap: 10px;
}

.capitulo-numero {
    background-color: #69c0e4;
    flex: 0 0 25%;
    height: 100%;
    color: white;
    font-weight: bold;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 10px;
    border-radius: 30px 0 0 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "AlumniItalic";
}

.capitulo-titulo {
    flex-grow: 1; /* Permite que o elemento cresça */
    flex-shrink: 0; /* Evita que o elemento encolha além do seu tamanho mínimo */
    flex-basis: auto; /* Define a base como automática */
    padding: 15px 25px;
    font-size: 1.1rem;
    max-width: 70%; /* Limita a largura máxima */
    background-color: #4f81bd;
    color: white;
    border-radius: 0 30px 30px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal; /* Permite a quebra de linha */
    overflow: hidden;
    text-overflow: ellipsis;
    transition: transform 0.2s, box-shadow 0.2s;
}


.capitulo-titulo a {
    text-decoration: none;
    color: white;
    font-weight: normal;
    width: 100%;
    text-align: center;
    line-height: 1rem;
}

.sumario-container {
    background-color: #69c0e4;
    color: white;
    border-radius: 30px 0px 30px 30px;
    padding: 0px 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.sumario-text {
    font-weight: bold;
    margin-left: 10px;
    font-family: "AlumniItalic";
    font-size: 1.8rem;
}

.custom-list {
    padding: 0;
    margin-left: 25px;
    list-style: none;
}

.custom-list .list-group-item {
    font-size: 1.2rem;

    color: #19598d;
    border: none;
    padding-left: 0;
    background: transparent;
}

.custom-list .list-group-item span {
    font-size: 1.5rem;
    color: #19598d;
    margin-right: 10px;
}

.custom-list .list-group-item b {
    font-weight: bold;
    color: #19598d;
}

.titleCard {

    font-size: 1.6rem; /* Ajuste proporcional do tamanho da fonte */
    font-weight: bold;
    color: #19598d; /* Azul escuro */
    background-color: #19598d; /* Fundo azul escuro */
    text-align: center;
    border: 3px solid #69c0e4; /* Borda azul clara */
    border-radius: 30px; /* Bordas arredondadas */
    padding: 10px 20px; /* Espaçamento interno */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para realce */
    display: inline-block; /* Faz com que o texto ocupe apenas o espaço necessário */
    color: white; /* Texto branco */
}

.decision-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.decision-button {
    background-color: #69c0e4;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 10px;
    width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.line-connector {
    width: 3px;
    height: 50px;
    background-color: #69c0e4;
    position: relative;
    z-index: 0;
}

.decision-description {
    border: 2px solid #69c0e4;
    color: #19598d;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 15px;
    text-align: center;
    background-color: #ffffff;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.row.align-items-center {
    justify-content: space-around;
}

.alert-card {
    background-color: #e6f7ff; /* Azul claro */
    color: #19598d; /* Azul escuro */
    font-weight: normal; /* Remove o bold */
    font-size: 1rem;
    border-radius: 60px!important;
    padding: 20px 30px;
    text-align: center;
    line-height: 1.5; /* Ajusta o espaçamento entre as linhas */
}

.alert-card strong {
    color: #19598d; /* Azul mais forte */
    font-weight: bold;
}

.bgTransparent {
    background-color: #ffffffab;
    min-height: 90vh;
}

.custom-tableCard {
    width: 100%;
    border-collapse: collapse;
    margin: 0px;
    font-size: 1.6rem;
    color: #19598d; /* Azul escuro */
    border-radius: 10px;
    overflow: hidden;
}

.custom-tableCard thead {
    background-color: #69c0e4; /* Azul claro para o cabeçalho */
    color: #fff; /* Texto branco */
}

.custom-tableCard tbody {
    background-color: #d9f1fa; /* Fundo azul claro para o corpo da tabela */
}

.custom-tableCard th,
.custom-tableCard td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
}

.custom-tableCard tbody tr:nth-child(even) {
    background-color: #E0F9FF; /* Azul um pouco mais claro para linhas pares */
}

.custom-tableCard tbody tr:nth-child(odd) {
    background-color: white; /* Azul um pouco mais claro para linhas pares */
}

.table-footer {
    font-size: 1.4rem;
    color: #555; /* Cinza claro */
    margin-top: 10px;
    text-align: center;
}

@media screen and (max-width: 768px) {

    .ml15vw {
        max-width: 70%;
    }

    .title {
        font-size: 1.5rem;
        text-align: center;
        color: white;
    }

    .sumario-container {
        border-radius: 30px 0px 30px 30px;
        padding: 15px;
        font-size: 1.2rem;
        position: absolute;
        top: 40px;
        right: 25px;
        color: white;
    }


}

.collapse-content {
    background-color: #d8f1f6;
    padding: 20px;
    border-radius: 10px;
}

.unidade {
    background-color: #98d1c1;
    margin-bottom: 20px;
    border-radius: 10px;
}

.unidade-header {
    background-color: #4f81bd;
    color: white;
    font-weight: bold;
    padding: 15px;
    border-radius: 10px;
}

.unidade-conteudo {
    list-style: none;
    padding: 20px;
}

.unidade-conteudo li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2f4f4f;
}

.close-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #4f81bd;
    border-radius: 50%;
    margin: 0 auto;
    margin-top: 20px;
}

.close-btn {
    background-color: transparent;
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.flexRow {
    display: flex;
    flex-direction: row;
}

.flexColumn {
    display: flex;
    flex-direction: column;
}

.alignCenter {
    display: flex;
    justify-content: center;
}

.paginator {
    display: flex;
    justify-content: center;
    align-items: center;
}

.paginator img {
    filter: brightness(0) invert(1);
    width: 24px;
    height: 24px;
}

.title {
    font-size: 1.6rem;
    color: #19598d;
    text-align: left;
    margin-left: 10px;
    font-family: "Myriado", sans-serif;
    font-weight: bolder;
}

.textBold{
    font-family: "Outfit", sans-serif;
}

.titleBlueGray{
    font-size: 1.6rem;
    color: #29c1f2;
    font-weight: bold;
    text-align: left;
    margin-left: 10px;
    font-family: "Outfit", sans-serif;
}

.table-subtitle {
    font-size: 1.5rem;
    color: #19598d;
    text-align: left;
    font-weight: bold;
}

.fontRegular{
    font-size: 1.5rem;
    color: #19598d;
    font-weight: bold;
}


.describe {
    font-size: 1.6rem;
    font-weight: 500;
}

.tabDescription {
    font-size: 1.0625rem;
    text-align: center;
    color: #666666;
    margin-bottom: 10px;
}

.tabItemButtonDescription {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.625rem;
    text-transform: uppercase;
    color: #444444;
    padding: .5rem 0;
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: space-around; /* Alinha os botões uniformemente */
    align-items: center; /* Centraliza os botões verticalmente */
    flex-wrap: wrap; /* Permite que os botões quebrem a linha em telas menores */
    gap: 15px; /* Espaço entre os botões */
}

.button-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.button-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.custom-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f8ff; /* Fundo azul claro */
    color: #19598d; /* Texto azul */
    border: 2px solid #19598d; /* Borda azul */
    border-radius: 30px; /* Bordas arredondadas */
    width: 180px; /* Largura fixa maior */
    height: 60px; /* Altura fixa maior */
    font-size: 0.9rem; /* Tamanho do texto reduzido */
    font-weight: bold; /* Texto em negrito */
    text-align: center;
    text-decoration: none; /* Remove sublinhado */
    transition: all 0.3s ease; /* Animações suaves para hover */
    overflow: hidden; /* Garante que o texto não saia dos limites */
    text-overflow: ellipsis; /* Adiciona "..." se o texto for muito longo */
    white-space: normal; /* Permite quebra de linha */
    padding: 5px; /* Adiciona espaçamento interno */
    line-height: 1.2; /* Ajusta o espaçamento entre as linhas */
}

.custom-button:hover {
    background-color: #19598d; /* Fundo azul mais escuro ao passar o mouse */
    color: #fff; /* Texto branco */
}

.custom-button.active {
    background-color: #19598d; /* Fundo azul mais escuro */
    color: #fff; /* Texto branco */
    border-color: #19598d; /* Borda azul mais escura */
}

.collapse-custom {
    width: 100%;
    text-align: center;
    padding: 30px 30px;
    margin-top: 10px;
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #19598d;
    color: white;
}

/* @media (max-width: 775px) {
    .alignCenterOfScreen {
        display: none;
    }
} */

.footerSlider {
    background: #69c0e4;
    border-radius: 50px;
    padding: 10px 30px;
    width: fit-content;
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mini-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.page-indicator {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

.btn-circle {
    width: 40px;
    height: 40px;
    background-color: #19598d;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-circle:hover {
    background-color: #19598d;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-circle img {
    filter: brightness(0) invert(1);
    width: 24px;
    height: 24px;
}

.btn-left {
    position: relative;
}

.btn-right {
    position: relative;
}

.btn-circle i {
    font-size: 24px;
}

.bgRedWrapper {
    position: relative;
    width: 98.5vw;
    left: 50%;
    margin-left: -50vw;
}

.bgRed {
    background-color: #e46c0a;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    position: relative;
    margin-top: 6rem;
}

.bgRed .describe{
    font-size: 1.8rem;
}

.content {
    text-align: center;
}

/* Estilo da badge */
.badge-custom {
    background-color: #5CAA82;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    position: absolute;
    top: -35px;
    left: 30%;
    transform: translateX(-50%);
    z-index: 1;
}

a {
    text-decoration: none;
    color: white;
}

.list-group-item{
    font-size: 1.6rem;
}

.table-striped {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1.4rem;
}

.table-striped thead {
    background-color: #19598d; /* Fundo azul escuro */
    color: white; /* Texto branco */
    font-weight: bold;
    text-align: center;
    border-radius: 8px 8px 0 0; /* Canto arredondado */
}

.table-striped th,
.table-striped td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    vertical-align: middle; /* Alinha verticalmente no meio */
}

.table-striped tbody tr:nth-child(odd) {
    background-color: #d9f1fa !important; /* Azul claro */
}

.table-striped tbody tr:nth-child(even) {
    background-color: #ffffff !important; /* Branco */
}

.table-striped tbody tr:hover {
    background-color: #cce7ff !important; /* Azul mais escuro ao passar o mouse */
}

.table-striped .red {
    color: #ee1d23; /* Texto em vermelho */
    font-weight: bold;
}

.table-responsive {
    overflow-x: auto; /* Faz a tabela rolável em telas menores */
}

.table-font {
    color: #19598d;
}

.table-fontBold {
    font-weight: 600;
    color: #19598d;
}

.bgHeaderTable thead {
    color: white; /* Texto branco */
    padding: 15px;
    text-align: center;
    border-radius: 8px 8px 0 0; /* Bordas arredondadas no topo */
    vertical-align: middle; /* Centraliza verticalmente os cabeçalhos */
}

.table-first-line {
    background-color: #19598d; /* Azul mais escuro */
    font-size: 1.6rem;
}

.table-second-line {
    background-color: #29c1f2; /* Azul claro */
    font-size: 1.3rem;
}

.cardBordered {
    border: 2px solid #69c0e4;
    border-radius: 10px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.cardBorderedW0 {
    border: 2px solid #69c0e4; /* Cor da borda */
    border-radius: 10px; /* Bordas arredondadas */
    padding: 20px; /* Espaçamento interno */
    background-color: #ffffff; /* Fundo branco */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra leve */
    width: min-content;
}


.table-container {
    max-width: 100%;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 10px;
    font-size: 1rem;
}

.custom-table thead {
    background-color: #69c0e4;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}

.custom-table th, .custom-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
    word-wrap: break-word;
}

.custom-table tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.custom-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.custom-table tbody tr:hover {
    background-color: #e6f7ff;
}

.table {
    margin: 0 auto; /* Centraliza a tabela na página */
    text-align: center; /* Centraliza o texto dentro da tabela */
}

.table th,
.table td {
    text-align: center; /* Centraliza horizontalmente o conteúdo */
    vertical-align: middle; /* Centraliza verticalmente o conteúdo */
}

.fonte {
    text-align: center; /* Centraliza o texto das fontes abaixo da tabela */
}

.table-responsive {
    display: flex;
    justify-content: center; /* Centraliza a tabela em dispositivos móveis */
    align-items: center; /* Centraliza verticalmente em dispositivos móveis */
}

.sumario-container[aria-expanded="true"] .arrow {
    transform: rotate(180deg); /* Gira a seta para cima quando expandido */
}

.alert-card span {
    display: block; /* Quebra cada linha */
    margin-top: 10px; /* Espaçamento entre as linhas */
    font-weight: normal; /* Normal para as linhas intermediárias */
}

.alert-card span:first-child,
.alert-card span:last-child {
    font-weight: bold; /* Mantém o bold apenas na primeira e última linha */
    font-size: 1.2rem; /* Destaca a primeira e última linha */
}

.cartilha-text-container {
    text-align: center; /* Centraliza o texto */
    padding: 20px;
    background-color: #f0f8ff; /* Azul claro de fundo */
    border-radius: 15px; /* Bordas arredondadas */
    max-width: 600px; /* Largura máxima */
    margin: 0 auto; /* Centraliza horizontalmente */
}

.cartilha-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #19598d; /* Azul escuro */
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
}

.cartilha-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #69c0e4; /* Azul claro brilhante */
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

.leftBtnCard,
.rightBtnCard {
    display: none;
}


.quadro{
    color: #19598d;
    font-size: 1.5rem;
    text-align: center;
}

.red{
    color: red;
}

.cardSubBordered {
    border-radius: 50px; /* Bordas mais arredondadas */
    padding: 10px 20px; /* Espaçamento interno */
    background-color: #E0F9FF; /* Fundo azul claro */
    text-align: center; /* Centraliza o conteúdo */
    font-family: "Outfit", sans-serif; /* Fonte personalizada */
    color: #19598d; /* Texto azul escuro */
    font-size: 1.6rem;
    width: 100%;
}


@media (max-width: 1024px) {
    .capitulotituloTitle1 {
        font-size: 1.5rem;
        flex-shrink: unset;
    }

    .juntaPalavras {
        margin-top: -0.7rem;
    }

    .tablet-pad {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .capitulotituloTitle1 {
        font-size: 1.5rem;
        flex-shrink: unset;
    }

    .juntaPalavras {
        margin-top: -0.3rem;
    }

    .title {
        font-size: 1.3rem;
        margin-left: 0;
    }

    .list-group-item {
        font-size: 1rem;
    }

    .titleCard {
        font-size: 1.2rem;
    }

    .titleBlueGray{
        font-size: 1.3rem;
        text-align: center;
    }

    .custom-button {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #29c1f2;
        color: white;
        border: 2px solid white;
        border-radius: 30px;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        padding: 5px 5px;
        font-size: 1.2rem;
        min-width: 150px;
        height: 50px;
    }

    .describe {
        font-size: 1rem;
    }

    .collapse-custom {
        padding: 20px;
    }

    .fontRegular .cartilha-title{
        font-size: 1rem!important;
    }

    .fontRegular{
        font-size: 1rem;
    }

    .quadro{
        font-size: 1rem!important;
    }

    .table-font{
        font-size: 0.8rem;
    }

    .custom-tableCard {
        font-size: 1rem;
    }

    .alert-card span {
        font-size: 1rem!important;
    }

    .capitulotituloTitle1{
        font-size: 1.2rem;
        line-height: 2.5vh;
    }

    .capitulo-card {
        padding: 10px 10px 0px 0px;
    }

    .capitulo-numero {
        font-size: 1.2rem;
    }



    .cardSubBordered{
        font-size: 1rem;
    }

    .bgHeaderTable th{
        font-size: 1rem;
    }

    .table-fontBold{
        font-size: 0.8rem;
    }

    .customLineHeight {
        line-height: 0.8rem;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 1.3rem;
    }

    .mbSmall{
        margin-bottom: 20px;
    }

    .sumario-text {
        display: none; /* Esconde o texto "Sumário" */
    }

    .arrow {
        display: inline-block; /* Garante que a seta continue visível */
        font-size: 1.5rem; /* Ajuste o tamanho, se necessário */
    }

    .sumario-container {
        justify-content: flex-end; /* Alinha a seta à direita, se necessário */
        padding: 5px 10px;
    }

    .collapse-content {
        padding: 10px; /* Reduz espaço interno do dropdown */
    }

    .imgSize {
        width: 95vw;
    }

    .table-container {
        padding: 5px;
    }

    .cartilha-text-container {
        padding: 10px;
    }

    .titleBlueGray{
        margin-left: 0;
    }

    .custom-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .cardBordered {
        margin: 0 8px;
    }

    .title {
        font-size: 1.1rem;
    }

    .titleBlueGray {
        font-size: 1.1rem;
        text-align: center;
    }

    .table-first-line {
        font-size: 1rem;
    }
    
    .table-second-line {
        font-size: 1rem;
    }

    .quadro, h4 {
        font-size: 0.9rem!important;
    }

    .table-font{
        font-size: 0.8rem;
    }

    .custom-tableCard {
        font-size: 1rem;
    }

    .cardSubBordered{
        font-size: 1rem;
    }

    .table-fontBold{
        font-size: 0.8rem;
    }
}


@media (max-width: 340px) {
    .table-second-line {
        font-size: 0.9rem;
    }

    .col-12{
        padding: 3px;
    }
    .custom-tableCard {
        font-size: 0.9rem;
        width: 100%;
        margin: 0;
    }

    .cardBordered {
        padding: 10px;
    }

    .table-responsive {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .table-first-line th,
    .table-second-line th {
        padding: 8px 5px;
    }

    .custom-tableCard td {
        padding: 8px 5px;
    }
}
