:root {
    /* ? fontes ? */

    --title-font: "neo-sans", sans-serif;
    --content-font: "Rubik", sans-serif;
    --speak-font: "PT Sans", sans-serif;
    --default-font: "Open Sans", sans-serif;

    /* ? peso ? */

    --bold: 700;
    --medium: 500;
    --regular: 400;

    /* ? tamanhos ? */

    --xxlg: 4rem;
    --xlg: 3rem;
    --lg: 1.5rem;
    --xxmd: 1.3rem;
    --xmd: 1.2rem;
    --md: 1rem;
    --xsm: 0.9rem;
    --sm: 0.8rem;

    /* ? cores ? */

    --white: #fff;
    --black: #000;
    --light-black: #212121;
    --light-blue: #72c3fb;
    --blue: #3a63e6;
    --dark-green: #417b00;
    --light-purple: #9892f8;
    --dark-gray: #373737;
    --gray: #e7e7e7;
    --light-gray: #f6f6f6;
    --orange: #f6a842;
    --dark-bg: #313131;
    --erro: #e12118;
    --acerto: #1fb40b;
    --purple:#5850e6;
    --simulado-c1:#72C3FB;
	--simulado-c2:#124669;
	--simulado-c3:#4288b6;
	--simulado-c4:#2c709d;
	--simulado-c5:#165680;

    /* ? header ? */
    --header-height: 110px;
    --header-bg: rgba(0, 0, 0, 0.7);
}

/* formatacao global */

html {
    font-size: 18px;
    font-family: "Rubik";
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* flexbox */

.flex-c {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* imagens */

.nova-img {
    height: auto;
    width: 80%;
    margin: 0;
}

.fonte,
.legenda {
    text-align: left;
    text-align-last: left;
    width: 80%;
    margin: 10px 0;
}

#image-overflow {
    height: auto;
    margin-bottom: -30vw;
    margin-right: -30vw;
}

#novo-texto {
    margin-bottom: 100px;
}

@media screen and (max-width: 1140px) {
    #image-overflow {
        margin-bottom: 0;
        margin-right: 0;
    }

    #novo-texto {
        width: 100%;
        margin-bottom: 0px;
    }

    .quadro-overflow {
        flex-wrap: wrap !important;
    }

    .quadro-overflow > .quadro-texto {
        width: 100%;
    }

    .quadro-overflow > img {
        width: 100%;
    }
}

/* barra de navegacao */

.navbar {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    background-color: var(--header-bg);
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 16px 24px;
    z-index: 100;
    transition: all 200ms ease-in-out;
}

.has-scrolled {
    --header-height: 80px;
    --header-bg: rgba(0, 0, 0, 1);
}

.dark-bg {
    background-color: rgba(0, 0, 0, 1);
}

.nav-link {
    font-family: var(--content-font);
    font-size: var(--md);
    letter-spacing: 1.32px;
    font-weight: var(--regular);
    transition: all 0.2s;
    display: inline-block;
}

.nav-link:last-child {
    margin-right: 0;
}

.nav-link::after {
    display: block;
    content: "";
    border-bottom: solid 1px var(--light-blue);
    padding-bottom: 4px;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.nav-link:hover:after,
.nav-link.active:after {
    transform: scaleX(1);
    transform-origin: 0% 50%;
}

#scroll-progress {
    position: fixed;
    top: var(--header-height);
    width: 0%;
    height: 5px;
    background: var(--dark-green);
    z-index: 100;
    transition: top 200ms ease-in-out;
}

.search {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    z-index: 150;
    top: 35px;
    right: 20px;
    border-radius: 50%;
    transition: all 200ms ease-in-out;
    padding: 8px;
    cursor: pointer;
}

.search i {
    font-size: 30px;
}

.search:hover {
    transition: none;
    background-color: #444444;
}

.top-menu-toggle {
    top: 35px;
    left: 20px;
    transition: all 200ms ease-in-out;
    z-index: 150;
}

.top-menu-toggle:hover {
    transition: none;
    background-color: #444444;
}

.newPosition {
    top: 20px !important;
}

/* menu lateral */

#sidebar{
	margin-top: var(--header-height);
	opacity: 0;
}

#sidebar.show {
	opacity: 1;
	box-shadow: var(--light-shadow);
	transform: translateX(0);
}

.no-animation{
	transition: none !important;
}

@media screen and (min-width:1000px){

    .push-on{

        margin-left: 300px !important;
        width: calc(100% - 300px) !important;

    }
    
}

/* banner */

.banner {
    position: relative;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding: 10px 80px;
}

.banner-text {
    transform: translateY(60px);
}

.banner-text p {
    margin-bottom: 10px;
}

.unidade-text-icon {
    height: auto;
    width: 35px;
    margin-right: 10px;
    color: #000000;
}

.unidade-text {
    height: auto;
    width: fit-content;
    padding: 8px 20px;
    background-color: var(--light-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--title-font);
    font-size: var(--xmd);
    border-radius: 2px;
    margin-bottom: 45px;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}


.topico-text {
    font-family: var(--title-font);
    color: var(--white);
    font-weight: var(--bold);
    font-size: var(--lg);
    letter-spacing: 0.48px;
    line-height: 40px;
    width: auto;
    text-transform: uppercase;
}

.topico-text .destaque {
    color: var(--light-blue);
    font-size: var(--xxlg);
    display: block;
    margin-top: 20px;
    line-height: 70px;
    overflow-wrap: break-word;
}

.banner-autor {
    margin-top: 80px;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Rubik";
    font-weight: var(--regular);
}

/* fundo da pagina */

.content-page {
    background-color: var(--light-gray) !important;
    color: var(--light-black);
}

.content-text {
    font-family: var(--content-font);
}

.content-section {
    margin-bottom: 0;
    padding-bottom: 10px;
    padding-top: 10px;
}

/*quadro metas*/

.quadro-metas {
    height: auto;
    width: 100%;
    border: solid 1px var(--gray);
    margin: 40px 0px;
}

.titulo-metas {
    height: auto;
    width: 100%;
    padding: 10px 20px;
    font-family: var(--content-font);
    font-weight: var(--regular);
    color: var(--dark-gray);
    text-align: center;
    text-align-last: center;
    font-size: var(--lg);
    background-color: var(--white);
    margin-bottom: 15px;
    border-bottom: solid 1px var(--gray);
    text-transform: uppercase;
}

.metas {
    height: auto;
    width: 100%;
    padding: 40px;
    background-color: var(--white);
    border-top: solid 1px var(--gray);
}

/* tabelas */

.table-content {
    height: auto;
    width: 100%;
}

table {
    text-align: center;
    text-align-last: center;
    border-collapse: collapse;
}

thead {
    background-color: var(--dark-green);
    color: var(--white);
}

thead tr th {
    font-family: var(--title-font) !important;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

tbody tr:nth-child(odd) {
    background: #e5efd9;
    color:var(--light-black)
}

th,
td {
    padding: 10px;
    border: 1px solid #2d5400;
}

/* listas */

ul {
    padding: 0;
}

li {
    position: relative;
    padding-left: 22px;
}

li::before {
    color: var(--dark-green);
    margin-right: 8px;
    position: absolute;
    left: 0;
}

.checklist {
    list-style: none;
}

.checklist li::before {
    content: "check";
    font-family: "Material Icons";
}

.arrowlist {
    list-style: none;
}

.arrowlist li::before {
    content: "►";
}

.pointlist {
    list-style: none;
}

.pointlist li::before {
    content: "●";
}

/* titulos */

.main-title {
    font-family: var(--title-font);
    color: var(--dark-green);
    letter-spacing: 0.64px;
    font-size: var(--lg);
    padding-left: 16px;
    border-left: solid 5px var(--light-blue);
    line-height: 1em;
    margin: 2em 0 0;
    text-transform: uppercase;
    scroll-margin-top: 120px;
    scroll-padding-top: 120px;
    font-size: 1.8rem;
}

.title-lg {
    font-family: var(--title-font);
    font-weight: bold;
    color: var(--white);
    letter-spacing: 0.64px;
    font-size: var(--xxlg);
    line-height: 80px;
    margin-top: 40px;
    margin-bottom: 60px;
    text-align: center;
    text-align-last: center;
    text-transform: uppercase;
    padding-top: 0 !important; 
}

.title-md {
    font-family: var(--title-font);
    font-weight: bold;
    color: var(--white);
    letter-spacing: 0.64px;
    font-size: 2rem;
    line-height: 40px;
    margin-top: 40px !important;
    margin-bottom: 60px;
    text-align: center;
    text-align-last: center;
    text-transform: uppercase;
    padding-top: 0 !important; 
}

.subtitle-white {
    font-family: var(--title-font);
    font-weight: bold;
    color: var(--white);
    letter-spacing: 0.64px;
    font-size: var(--lg);
    line-height: 40px;
    margin-top: 40px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.subtitle-white::after {
    display: block;
    content: "";
    border-bottom: solid 3px var(--light-blue);
    width: 232px;
}

.subtitle-black {
	font-family: var(--title-font);
	font-weight: bold;
	color: var(--light-black);
	letter-spacing: 0.64px;
	font-size: var(--lg);
	line-height: 40px;
	margin: 40px 0;
	text-transform: uppercase;
}

.subtitle-orange {
    font-family: var(--title-font);
    font-weight: bold;
    color: var(--orange);
    letter-spacing: 0.64px;
    font-size: var(--lg);
    line-height: 40px;
    margin: 40px 0;
    text-transform: uppercase;
}

.subtitle-blue {
    font-family: var(--title-font);
    font-weight: bold;
    color: var(--light-blue);
    letter-spacing: 0.64px;
    font-size: var(--lg);
    line-height: 40px;
    margin: 40px 0;
    text-transform: uppercase;
}

.subtitle-green {
    font-family: var(--title-font);
    font-weight: bold;
    color: var(--dark-green);
    letter-spacing: 0.64px;
    font-size: var(--lg);
    line-height: 40px;
    margin-top: 60px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.subtitle-green::after {
    display: block;
    content: "";
    border-bottom: solid 3px var(--light-blue);
    width: 232px;
}

.destaque-titulo{
	display: block; 
	color: var(--light-blue);
    margin-top: 10px;
}

/* destaque do texto */

.destaque-azul {
    background-color: var(--light-blue);
    padding: 2px;
    color: var(--light-black);
}

.destaque-laranja {
    background-color: var(--orange);
    padding: 2px;
    color: var(--light-black);
}

/* quadro de perguntas */

.quadro-pergunta {
    height: auto;
    width: auto;
    margin: 80px 0 80px 60px;
}

.destaque-pergunta{
	background-color:var(--light-blue);
    padding: 2px;
	color: var(--light-black);
}

.titulo-pergunta {
    font-family: var(--content-font);
    font-weight: var(--bold);
    font-size: var(--xxmd);
    color: var(--light-black);
    line-height: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.titulo-pergunta::before {
    display: block;
    content: "";
    border-bottom: solid 3px var(--light-black);
    width: 25px;
}

/* quadros de imagem e texto */

.quadro-escuro {
    height: auto;
    width: 100%;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 30px;
    margin-bottom: 20px;
}

.combinacao{
	margin-bottom: 0 !important;
}

.no-overflow {
    overflow: hidden;
}


.quadro-indicacao {
    display: flex;
    align-items: center;
    height: auto;
}

.capa-indicacao {
    height: auto;
    width: 35%;
    position: relative;
    z-index: 2;
}

.capa-indicacao img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.capa-livro {
    height: auto;
    width: 35%;
    position: relative;
    z-index: 2;
}

.texto-indicacao {
    background-color: var(--orange);
    color: var(--light-black);
    max-width: calc(var(--max-width) * 0.9);
    padding: 24px;
}

.texto-indicacao {
    padding-left: 36%;
    margin-left: -33%;
}

.texto-livro {
    background-color: var(--orange);
    color: var(--light-black);
    width: 100%;
    padding: 24px;
}

.texto-indicacao > :first-child {
    margin-top: 0;
}

.texto-indicacao > :last-child {
    margin-bottom: 0;
}

.titulo-indicacao {
    font-size: var(--xmd);
    font-family: var(--title-font);
    color: var(--light-black);
    font-weight: bold;
    text-transform: uppercase;
}

.citacao {
    margin: 1em 0 4em;
}

.citacao-icon {
    height: auto;
    width: 30px;
}

.citacao p {
    font-size: var(--xmd);
    font-style: italic;
    margin-left: 40px;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: var(--speak-font);
}

.autor {
    font-family: var(--content-font);
    font-weight: var(--medium);
    font-size: var(--xmd);
    text-transform: uppercase;
    color: var(--dark-green);
    margin-left: 40px;
    letter-spacing: 0.48px;
}

.texto-destaque {
    font-size: var(--xmd);
    font-weight: bold;
    border-top: 3px solid var(--dark-green);
}
.column-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 3em auto;
}

.left-margin {
    margin-left: 40px;
}

.right-margin {
    margin-right: 40px;
}

.texto-destaque p {
    margin-top: 12px;
}

.destaque-outline {
    border-radius: 4px;
    padding: 0 30px;
    margin: 40px 0;
    border: solid 3px var(--dark-green);
    font-weight: var(--medium);
    background: var(--white);
}

/* texto em colunas */

.dual-columns {
    display: grid;
    margin: 2em 0;
    gap: 40px;
    place-items: center;
}

.dual-columns.r-1by3 {
    grid-template-columns: 1fr 3fr;
}
.dual-columns.r-1by2 {
    grid-template-columns: 1fr 2fr;
}
.dual-columns.r-3by1 {
    grid-template-columns: 2fr 1fr;
}

.dual-columns.r-2by2 {
    grid-template-columns: 2fr 2fr;
}

.dual-columns.r-2by1 {
    grid-template-columns: 2fr 1fr;
}

.dual-columns.r-1by3 .first,
.dual-columns.r-3by1 .second {
    font-size: 1.1em;
}
.dual-columns.r-2by1 .second,
.dual-columns.r-1by2 .first {
    font-size: 1.2em;
}

.dual-columns .column-item > *:only-child {
    margin: 0;
}

.less-max-width {
    max-width: calc(var(--max-width) * 0.9);
    margin: auto;
}

.start{
	place-items: start;
}
.center{
	place-items: center;
}
.end{
	place-items: end;
}

/* indicacao de livro - flip */

.flip-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 600px;
    perspective: 4000px;
    margin: 2em auto 01;
}

.flip-container {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-wrapper.flipped .flip-container {
    transform: rotateY(180deg);
}

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back {
    transform: rotateY(180deg);
}

.flip-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    border: 2px solid rgba(255, 255, 255, 0.4);
    height: 50px;
    width: 50px;
    padding: 24px;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

.flip-toggle .material-icons {
    font-size: 30px;
}

.flip-toggle:hover {
    background-color: rgba(101, 101, 101, 0.722);
}

/* atividades */

.atividades-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    height: 100vh;
    width: 100%;
    background: #f6f6f6;
    grid-template-rows: var(--header-height) 1fr;
    border-bottom: 24px solid var(--dark-green);
}

.atividades-wrapper.active {
    display: grid;
}

.atividades-navbar {
    background: var(--dark-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 8px;
}

.atividades-navbar .buttons {
    display: flex;
    gap: 8px;
}

.atividades-navbar .buttons button {
    height: 12px;
    width: 80px;
    border-radius: 6px;
    background: var(--gray);
    cursor: pointer;
}
.atividades-navbar .buttons button.active {
    background: var(--light-blue);
}

.atividades-close-button {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    color: var(--dark-green);

    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.atividades-close-button .material-icons {
    font-size: 42px;
}

.atividades-wrapper .atividades-info {
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Rubik", sans-serif;
}

.atividades-body,
.atividades-body .content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Rubik", sans-serif;
}

.atividades-wrapper .atividades-body .atividade,
.atividades-wrapper .atividades-body .atividades-final {
    display: none;
    background: var(--white);
    color: var(--dark-gray);
    border-radius: 10px;
    border-left: 40px solid var(--dark-green);
    height: 100%;
    width: 100%;
    max-width: var(--max-width);
    max-height: min(calc(100vh - var(--header-height) - 80px), 720px);
}

.atividades-wrapper .atividades-body .atividade.active,
.atividades-wrapper .atividades-body .atividades-final.active {
    display: block;
}
.atividades-wrapper .atividades-body .atividades-final.active .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    max-width: 420px;
    margin: auto;
    text-align: center;
}
.atividades-wrapper .atividades-body .atividades-final button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-green);
    border: 0;
    cursor: pointer;
    border-radius: 4px;
    padding: 16px 32px;
    font-size: 1rem;
    color: #fff;
}
.atividades-wrapper .atividades-body .atividades-final h2 {
    font-weight: bold;
    font-size: 2em;
    text-transform: uppercase;
}

.atividades-bottom-nav {
    position: absolute;
    bottom: -16px;
    height: 40px;
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    justify-content: space-between;
}

.atividades-bottom-nav button {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    border: 0;
    background: var(--dark-green);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 0 0 4px var(--light-gray);
}

.atividades-wrapper .atividades-body .atividade .um-item {
    display: grid;
    grid-template-rows: 1fr auto 60px;
    height: 100%;
}
.atividades-wrapper .atividades-body .atividade .ex-enun {
    max-height: 100%;
    overflow: auto;
    padding: 40px;
    margin: 8px 8px 0 0;
}
.atividades-wrapper .atividades-body .atividade .ex-enun p {
    margin: 1em 0;
}
.atividades-wrapper .atividades-body .atividade .ex-alts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 24px;
    padding: 40px;
}
.atividades-wrapper .atividades-body .atividade .ex-alts .uma-alt {
    position: relative;
    padding: 0;
}
.atividades-wrapper .atividades-body .atividade .ex-alts .uma-alt input {
    display: none;
}
.atividades-wrapper .atividades-body .atividade .ex-alts .uma-alt label {
    --vertical-padding: 12px;
    --before-width: 60px;

    padding: var(--vertical-padding) 16px var(--vertical-padding) 80px;
    box-shadow: 0 0 0 2px var(--dark-green);
    border-radius: 6px;
    margin: 0;
}
.atividades-wrapper .atividades-body .atividade .ex-alts .uma-alt label:focus {
    box-shadow: none;
}

.atividades-wrapper
    .atividades-body
    .atividade
    .ex-alts
    .uma-alt:nth-child(1)
    label::before {
    content: "A";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--before-width);
    height: 100%;
    font-weight: bold;
    color: #fff;
    background: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border-radius: 4px 0 0 4px;
}
.atividades-wrapper
    .atividades-body
    .atividade
    .ex-alts
    .uma-alt:nth-child(2)
    label::before {
    content: "B";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--before-width);
    height: 100%;
    font-weight: bold;
    color: #fff;
    background: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border-radius: 4px 0 0 4px;
}
.atividades-wrapper
    .atividades-body
    .atividade
    .ex-alts
    .uma-alt:nth-child(3)
    label::before {
    content: "C";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--before-width);
    height: 100%;
    font-weight: bold;
    color: #fff;
    background: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border-radius: 4px 0 0 4px;
}
.atividades-wrapper
    .atividades-body
    .atividade
    .ex-alts
    .uma-alt:nth-child(4)
    label::before {
    content: "D";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--before-width);
    height: 100%;
    font-weight: bold;
    color: #fff;
    background: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border-radius: 4px 0 0 4px;
}

.atividades-wrapper .atividades-body .atividade .ex-footer {
    padding: 0;
}

.atividades-wrapper
    .atividades-body
    .atividade
    .ex-enun::-webkit-scrollbar-track {
    background-color: var(--gray);
    border-radius: 4px;
}

.atividades-wrapper .atividades-body .atividade .ex-enun::-webkit-scrollbar {
    width: 8px;
}

.atividades-wrapper
    .atividades-body
    .atividade
    .ex-enun::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: var(--dark-green);
}

.atividades-wrapper .atividades-body .atividade .ex-fb-incorreto.visible,
.atividades-wrapper .atividades-body .atividade .ex-fb-correto.visible {
    display: flex;
}

.atividades-wrapper .atividades-body .atividade .ex-fb-incorreto,
.atividades-wrapper .atividades-body .atividade .ex-fb-correto {
    display: none;
    box-shadow: none;
    position: relative;
    border-radius: 0 0 6px 0;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #fff;
    height: 100%;
    width: 100%;
}
.atividades-wrapper .atividades-body .atividade .ex-fb-incorreto {
    background: var(--erro);
}

.atividades-wrapper .atividades-body .atividade .ex-fb-correto {
    background: var(--acerto);
}

.atividades-wrapper .atividades-body .atividade .ex-fb-incorreto::after {
    content: "error";
    font-family: "Material Icons";
    position: absolute;
    right: 16px;
    font-size: 36px;
}

.atividades-wrapper .atividades-body .atividade .ex-fb-correto::after {
    content: "check";
    font-family: "Material Icons";
    position: absolute;
    right: 16px;
    font-size: 36px;
}
/* menu toggle */

.active-toggle {
    background-color: var(--dark-green) !important;
    color: var(--white) !important;
}

.toggle-content {
    width: 100%;
    margin: 50px 0;
}

.toggleWr {
    border: 1px solid var(--uniasselvi-accent);
    border-radius: 10px;
    box-shadow: var(--block-shadow);
    margin: 15px 0;
}
.toggleWr .material-icons {
    transition: transform 200ms ease;
    font-size: 32px;
}
.toggleWr.active button .material-icons {
    transform: rotateX(180deg);
}
.toggleWr > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    font-family: var(--content-font);
    font-size: var(--md);
    font-weight: var(--medium);
    background-color: transparent;
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    text-transform: uppercase;
}
.toggleWr-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 200ms ease;
    background-color: #C6D1BA;
    padding: 0 16px;
    text-align-last: left;
    font-size: 16px;
}
.content-alt > div {
    margin-bottom: 16px;
}

@media (max-width: 630px) {
    .card:first-child {
        margin-left: 25px;
    }
}

@media screen and (max-width: 900px) {
    .navbar {
        padding: 16px 30px;
        gap: 40px;
    }
}

@media screen and (max-width: 800px) {
    .navbar {
        display: none;
    }

    .top-menu-toggle,
    .search {
        background-color: rgba(45, 64, 76, 0.4);
    }

    #scroll-progress {
        top: 0;
    }
}

@media screen and (max-width: 800px) {
    #sidebar {
        margin-top: 0;
    }

    .top-menu-toggle,
    .search,
    .newPosition {
        top: 15px !important;
    }

    .banner {
        padding: 10px 30px;
        background-position-x: 60%;
    }

    .dual-columns,
    .column-text {
        grid-template-columns: repeat(auto-fit, 100%) !important;
    }

    .unidade-text {
        font-size: var(--sm);
    }

    .topico-text {
        font-size: var(--md);
        line-height: 30px;
    }

    .topico-text .destaque {
        font-size: 2rem;
        margin-top: 0;
        line-height: 40px;
    }

    .banner-autor {
        font-size: 0.8rem;
    }

    .top-menu-toggle {
        display: flex;
    }

    .banner-text {
        transform: translateY(20px);
    }

    .texto-destaque {
        width: 100%;
    }

    .quadro-pergunta {
        margin-left: 0;
    }

    .title-lg {
        font-size: 1.8rem;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .title-md {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    #image-overflow {
        width: 100%;
    }

    .right-margin {
        margin-right: 0;
    }

    .left-margin {
        margin-left: 0;
    }

    .capa-livro {
        width: 100% !important;
    }

    .table-content {
        overflow-x: scroll;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 900px) {
    .quadro-indicacao {
        justify-content: center;
        flex-direction: column;
    }

    .texto-indicacao {
        padding: 20px;
        margin-left: 0;
        width: 100%;
    }

    .texto-livro {
        padding: 20px;
        margin-left: 0;
        width: 100%;
    }

    .capa-indicacao {
        width: 100%;
    }

    .capa-livro {
        width: 50%;
    }
}

.content-quadro {
    padding: 0 24px;
}
.content-quadro .wrapper {
    max-width: var(--max-width);
    margin: auto;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
}

.content-quadro .wrapper img {
	position: absolute;
	left: 50%;
	top: -30px;
	height: calc(100% + 60px);
	width: 50vw;
	object-fit: cover;
}

.content-quadro .wrapper .quadro-left {
    padding: 24px 0;
}

@media screen and (max-width: 750px) {
    .content-quadro .wrapper {
        grid-template-columns: repeat(auto-fit, 100%) !important;
    }

    .content-quadro .wrapper img {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        object-fit: cover;
    }
}

.quadro-atividade {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 10px 50px;
}

.quadro-atividade img {
    height: auto;
    width: 100%;
}

.atividade-left {
    display: grid;
    gap: 20px;
    justify-items: center;
}
.atividade-left h1 {
    font-family: var(--title-font);
    font-weight: bold;
    color: var(--orange);
    font-size: 4em;
}

.atividade-left a {
    text-align: center;
    background-color: var(--orange);
    padding: 12px;
    border-radius: 4px;
    width: 50%;
    color: var(--black);
    cursor: pointer;
}
.atividade-left a:hover {
    background-color: #da8d29;
}
.atividade-left p {
    margin: 24px 0;
    /* text-align: center; */
    line-height: 2em;
}

@media (max-width: 900px) {
    .quadro-atividade {
        grid-template-columns: repeat(auto-fit, 100%) !important;
        gap: 70px;
        padding: 10px 0;
    }

    .atividade-left h1 {
        font-size: 2em;
    }

    .atividade-left {
        order: 2;
    }

    .quadro-atividade img {
        order: 1;
    }
}

.quadro-escuro hr {
    margin: 24px 0;
    border: 2px solid var(--orange);
}
.referencias {
    margin-top: 36px;
}

.referencias-page {
    display: none;
    min-height: 280px;
}

.referencias-page.active {
    display: block;
}
.referencias-page p {
    word-break: break-all;
}

.referencias .buttons {
    display: flex;
    gap: 10px;
}

.referencias .buttons button {
    height: 12px;
    width: 80px;
    border-radius: 6px;
    background: var(--gray);
    cursor: pointer;
    border: none;
}

.referencias .buttons button.active {
    background: var(--light-blue);
}

/* recurso vertical */

.box {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.wrBox.vertical .buttons {
    background-color: #417b00;
    border-radius: 4px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-around;
    padding: 2%;
}
.wrBox.vertical .buttons button {
    width: 100%;
    background-color: transparent;
    color: #ffffff;
    border-style: solid;
    border: 0;
    border-bottom: 8px solid #ffffff;
    font-size: 1em;
    cursor: pointer;
    padding: 0 0 1%;
}
button:focus {
    outline: 0;
}
.wrBox.vertical .buttons button:hover {
    border-bottom: 8px solid var(--light-blue);
}
.wrBox.vertical .buttons button :focus,
.wrBox.vertical .buttons button.active {
    border-bottom: 8px solid var(--light-blue);
    font-weight: bold;
    color: #ffffff;
}

.wrBox.vertical .content {
    background-color: #D7E0CC;
    border-radius: 4px;
    padding: 8px 24px;
    margin-top: 4%;
    height: auto;
}
.wrBox .content > div {
    display: none;
}

.wrBox .content > div.active {
    display: block;
}

@media (max-height: 970px) {
    .wrBox.vertical .content {
        font-size: 18px;
    }
}
@media (max-height: 600px) {
    .wrBox.vertical .content {
        font-size: 18px;
    }
}
@media (max-height: 500px) {
    .wrBox.vertical .content {
        font-size: 16px;
    }
}
@media (max-height: 425px) {
    .wrBox.vertical .content {
        height: 195px;
    }
}
@media (max-height: 400px) {
    .wrBox.vertical .content {
        font-size: 14px;
    }
}
@media (max-height: 370px) {
    .wrBox.vertical .content {
        height: 150px;
    }
}
@media (max-height: 350px) {
    .wrBox.vertical .content {
        font-size: 12px;
    }
}

/* recurso horizontal */

.wrBox.horizontal {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8px;
}
.wrBox.horizontal .buttons {
    border-radius: 4px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    height: fit-content;
    padding-right: 8px;
    border-right: 8px solid #e2e0e0;
}
.wrBox.horizontal .buttons button {
    position: relative;
    background-color: var(--dark-green);
    border: 0;
    border-radius: 4px;
    padding: 16px;
    color: #ffffff;
    width: 100%;
    cursor: pointer;
    font-family: Rubik;
    font-size: 1em;
    flex-basis: 0;
    flex-grow: 1;
}

.wrBox.horizontal .buttons button:hover {
    background-color: #325d00;
}
.wrBox.horizontal .buttons button:focus {
    background-color: #325d00;
    color: #fff;
}

.wrBox.horizontal .buttons button.active::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 0;
    height: 100%;
    width: 8px;
    background: var(--light-blue);
    border-radius: 4px;
    z-index: 2;
}

.wrBox.horizontal .content {
    background-color: #c6d1ba;
    border-radius: 4px;
    padding: 3%;
    font-family: Rubik;
    font-size: 1em;
}
@media (max-height: 970px) {
    .content-rec2 {
        font-size: 18px;
    }
}

@media (max-width: 750px) {
    .wrBox.horizontal {
        grid-template-columns: repeat(auto-fit, 100%) !important;
    }
}

@media (max-height: 600px) {
    .content-rec2 {
        font-size: 18px;
    }
}
@media (max-height: 500px) {
    .content-rec2 {
        font-size: 16px;
    }
}
@media (max-height: 425px) {
    .content-rec2 {
        height: 195px;
    }
}
@media (max-height: 400px) {
    .content-rec2 {
        font-size: 14px;
    }
}
@media (max-height: 370px) {
    .content-rec2 {
        height: 150px;
    }
}
@media (max-height: 350px) {
    .content-rec2 {
        font-size: 12px;
    }
}
/* carousel */
.container {
    height: 100%;
    width: 100%;
    margin: 0;
}
.carousel-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
.card {
    display: flex;
    flex-direction: column;
    max-height: 580px;
    min-height: 580px;
    max-width: 300px;
    min-width: 300px;
    margin: 0px 30px;
    padding: 15px;
    border: 8px solid var(--light-blue);
    box-shadow: 0px 0px 25px black;
    transition: transform 0.2s;
    opacity: 0.3;
    transition: opacity linear 0.2s;
    overflow-y: overlay;
}

.card::-webkit-scrollbar {
	width: 8px;
  }

  .card::-webkit-scrollbar-track {
	background-color: var(--dark-bg);
  }

  .card::-webkit-scrollbar-thumb {
background-color: rgb(70, 70, 70);
  }

.card:first-child {
    margin-left: calc(50% - 150px);
}
.card-title {
    font-family: var(--title-font);
    font-weight: bold;
    color: var(--light-blue);
    letter-spacing: 0.64px;
    font-size: var(--xmd);
    margin-top: 30px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.card-img {
    margin-bottom: 10px;
}

.card-img img {
    height: 310px;
    width: 100%;
    margin-bottom: 15px;
    box-shadow: 2px 2px 30px 10px #0f0f0f;
}
.card-text {
    font-family: var(--content-font);
    line-height: 2;
}
.card-text p {
    margin: 20px 0;
}

.btn {
    color: var(--white);
    border: 1px solid var(--white);
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.424);
    transition: background-color 0.05s;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.btn .material-icons {
    font-size: 50px;
}

.btn:hover {
    background-color: rgba(101, 101, 101, 0.722);
}
.content-buttons {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-320px);
}

.disabled-btn {
    opacity: 0.5;
    pointer-events: none;
}

@media screen and (max-width: 500px) {
    .btn {
        padding: 0;
        border: none;
        background: none;
        width: auto;
        height: auto;
    }

    .btn .material-icons {
        font-size: 60px;
    }

    .prev {
        margin-left: -30px;
    }

    .next {
        margin-right: -30px;
    }

    .btn:hover {
        background-color: transparent;
    }
}

.nav-bottom {
    height: auto;
    width: 100%;
    padding: 60px 0 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

.nav-bottom button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    height: 40px;
    width: auto;
    background-color: var(--white);
    border-radius: 5px;
    font-family: var(--content-font);
    font-size: 16px;
    color: var(--light-black);
    cursor: pointer;
    border: none;
    outline: none;
    cursor: pointer;
}

.nav-bottom button {
    padding: 10px 10px;
}

.nav-bottom .nav-btn {
    width: 150px;
}

.next-btn .material-icons {
    margin-left: 5px;
}

.back-btn .material-icons {
    margin-right: 5px;
}

.nav-bottom button:hover {
    background-color: #d4d4d4;
}

footer {
    height: auto;
    width: 100%;
    padding: 30px 60px;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-family: var(--title-font);
}

footer .logo {
    height: auto;
    width: 300px;
}

footer .copyright {
    text-align-last: center;
}

@media screen and (max-width: 820px) {
    footer .logo {
        height: auto;
        width: 200px;
    }
}

@media screen and (max-width: 700px) {
    footer {
        flex-direction: column;
        justify-content: center;
    }

    .logo {
        margin-bottom: 30px;
    }
}

.quadro {
	display: flex;
	align-items: top;
	margin: 20px 0;
}
.quadro-img {
	width: 50%;
}

.quadro-texto {
	width: 50%;
}

.quadro-texto p {
	margin-top: 0;
}

@media screen and (max-width: 800px) { 

	.quadro {
		flex-wrap: wrap;
	}

	.quadro-img {
		width: 100%;
	}

	.quadro-texto {
		width: 100%;
		margin: 0;
	}

}
