:root {
    font-family: "Lato", sans-serif !important;
    font-size: 100%;

    --text-color: white;
    --body-color: #282828;
    --body-color-light: #3e3e3e;

    --blue-one: #002e7b;
    /*--blue-two: #D7585D;*/
    --blue-two: #0053A1;

    --color-one1: #397ebf;
    --color-one2: #1466b2;
    --color-one3: #0085fe;
    --color-one-gradient: #223448;

    --color-two-gradient: #371231;
    --color-two-gradient2: #57244f;
    --color-two: #ad1091;
    --color-two2: #fe19d6;
    --color-two3: #FF66E5;

    --color-three: #fad219;
    --color-three-gradient: #645824;

    --error-color: #c52b2b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    font-family: "Lato", sans-serif !important;
}

body {
    min-width: 100vw;
    min-height: 100vh;

    background-color: var(--body-color) !important;
    color: var(--text-color) !important;

    overflow-x: hidden;
}

.hashtag-style {
    position: relative;
    overflow: hidden;
    z-index: 1;
}



.hashtag-style::before {
    position: absolute;
    top: -1.8rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    mix-blend-mode: overlay;
    opacity: 0.2;
    z-index: -1;

    font-size: 6rem;
    font-weight: 900;
    font-family: "Lato", sans-serif;
}

.line-style, .line-style2 {
    position: relative;
    z-index: 2;
}

.modal-content {
width:auto !important;
}

.modal.show .modal-dialog {
    justify-content: center !important;
}

.line-style:before, .line-style2::before {
    content: "";
    /* background-image: url("/novo-portal/resources/view/assets/images/background-lines.png"); */
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 1440px;
    z-index: -1;
}

.line-style2::before {
    background-image: url("/novo-portal/resources/view/assets/images/background-lines2.png") !important;
}

/*---- Scroll Bar ----*/

/* width */
::-webkit-scrollbar {
    /* width: 3px; */
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 999px;
    transition: background 0.3s;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

header {
    width: 100%;
}

.content {
    max-width: 1440px;
    margin: auto;
}


.logo img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:768px) {
    .logo img {
    width: 80%;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    background-image: linear-gradient(rgba(40, 40, 40, 1), rgba(40, 40, 40, 0));
    z-index: 999;
}

/* header::before {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--blue-two);
} */

.menu-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-button {
    padding: 0rem;
    font-size: 1.6rem;
    border: none;
    background-color: unset;
    outline: none;
    color: var(--text-color);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.2s, opacity 0.3s;
}

.menu-button:hover {
    transform: scale(0.8);
    opacity: 0.5;
}

hr.show-on {

    display: none;

}

@media screen and (max-width:955px) {

    hr.show-on {

        display: block;
    
    }

}

.login-button {
    padding: 0rem;
    font-size: 1.4rem;
    border: none;
    background-color: unset;
    outline: none;
    color: var(--text-color);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.2s, opacity 0.3s;
}

.login-button:hover {
    transform: scale(0.8);
    opacity: 0.5;
}

.login-button span {
    text-decoration: none !important;
    margin-left: 5px;
    line-height: 1.4rem;
    font-size: 1rem !important;    
}
.search {
    padding: 0.64rem 0.96rem;
    background-color: rgba(65, 65, 65, 0.6);
}

main.search.blue {
    background-color: var(--body-color);
}

 .pdf-orientacao:hover {
    text-decoration: underline;
}

.search input {
    margin-right: 0.64rem;
    background-color: unset;
    outline: none;
    border: none;
    color: var(--text-color);
    padding: 0.32rem;
}

.search input:-webkit-autofill, .search input:-webkit-autofill:hover, .search input:-webkit-autofill:focus, .search input:-internal-autofill-selected {
    background-color: -internal-light-dark(#272727, #272727) !important;
}

.search-button {
    border: none;
    background-color: unset;
    outline: none;
    color: var(--text-color);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;

    transition: opacity 0.3s;
    opacity: 1;
}

.search-button:hover {
    opacity: 0.6;
}

header.mobile .content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 2.2rem;
}

header.desktop .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.2rem;
    /* padding: 1.2rem; */
    /* padding-top: 2.3rem;
    padding-bottom: 2.3rem; */
}

.menu.desktop {
    width: 60%;
    justify-content: center;
}

.menu.desktop li {
    margin-left: 1.4rem;
    position: relative;
}

.menu.desktop > li > a {
    display: inline-block;
	width: 100%;
	position: relative;
	
	text-decoration: none;
    color: var(--text-color);
}

.menu.desktop > li > a::after {
    content: "";
	width: 0;
	position: absolute;
	background-color: var(--blue-two);
    /*background-color: #0053a1;*/
	height: 2px;
	bottom: -0.48rem;
	left: 0;

	transition: width 0.3s;
}

.menu.desktop a:hover::after {
    width: 100%;
}

.menu .collapse {
    position: absolute;
    top: 90%;
    left: -0.2rem;

    display: block !important;
    overflow: hidden;
    height: 0;

    transition: height 0.3s;
}

.menu > li:hover .collapse {
    height: 32rem;
}

.menu .collapse .submenu {
    padding: 1.6rem;
    border-radius: 8px;
    padding-left: 0;
}

.menu .collapse .submenu li {
    margin-bottom: 0.64rem;
    line-height: 110%;
}

.whatsapp-button, .contact-button {
    position: fixed;
    bottom: 1rem;
    right: 1rem;

    border-radius: 999px;
    font-size: 2.4rem;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 4rem;
    height: 4rem;

    text-decoration: none;
    color: white;
    background-color: #25D366;

    z-index: 999;

    transition: 0.3s;
}

.contact-button {
    background-color: var(--blue-one);
    bottom: 6rem;
    font-size: 1.8rem;
}

.contact-button:hover {
    background-color: var(--blue-two);
    color: white;
}

.whatsapp-button:hover {
    color: white;
    background-color: #128C7E;
}

.sidebar, .login-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background-color: rgba(0, 0, 0, 0);
    z-index: 999;

    display: none;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.sidebar.open, .login-sidebar.open {
    background-color: rgba(0, 0, 0, 0.8);
}

.sidebar .close-trigger, .login-sidebar .close-trigger-login {
    width: 75vw;
    height: 100vh;
}

.sidebar-menu, .login-sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translatex(-100%);
    background-color: var(--body-color);
    width: 100vw;
    height: 100vh;

    padding: 2rem;

    z-index: 999;
    overflow-y: auto;

    transition: transform 0.4s;
}

.sidebar.open .sidebar-menu, .login-sidebar.open .login-sidebar-menu {
    transform: translatex(0);
}

.sidebar-menu .top-line, .login-sidebar-menu .top-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-menu .title, .login-sidebar-menu .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sidebar-menu .logo, .login-sidebar-menu .logo {
    width: 4rem;
}

.sidebar-menu .title h3, .login-sidebar-menu .title h3 {
    margin-left: 0.64rem;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 1.2rem;
}

.sidebar-menu .close-button, .login-sidebar-menu .close-button-login {
    outline: none;
    border: none;
    background-color: unset;
    color: var(--text-color);

    transition: 0.3s;
}

.sidebar-menu .close-button:hover, .login-sidebar-menu .close-button-login:hover {
    transform: rotate(90deg);
    color: rgba(75, 75, 75);
}

.sidebar-menu hr, .login-sidebar-menu hr {
    margin: 1.6rem 0;
}

.sidebar-menu .toggle-subtitle {
    outline: none;
    border: none;
    background-color: unset;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    /* padding-top: 0.5rem;
    padding-bottom: 0.5rem; */
    transition: 0.3s;
    opacity: 0.6;
    cursor: pointer;
}

.sidebar-menu .toggle-subtitle:hover {
    /* background-color: rgba(75, 75, 75); */
}

.sidebar-menu .toggle-subtitle::before {

}

.sidebar-menu .toggle-subtitle.active::before {
    transform: rotate(90deg);
}

.sidebar-menu .toggle {
    outline: none;
    border: none;
    background-color: unset;
    color: var(--text-color);
    
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;

    width: 100%;
    padding: 0.64rem;
    transition: 0.3s;
}

.sidebar-menu .toggle:hover {
    background-color: rgba(75, 75, 75);
}

.sidebar-menu .toggle::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    line-height: 0;
    margin-right: 0.64rem;

    transition: 0.3s;
}

.sidebar-menu .toggle.active::before {
    transform: rotate(90deg);
}


.sidebar-menu .toggle-none {
    outline: none;
    border: none;
    background-color: unset;
    color: var(--text-color);
    
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;

    width: 100%;
    margin-bottom: 0.64rem;
    transition: 0.3s;
    line-height: 110%;
    margin-left: 0.64rem;
}

.sidebar-menu .toggle-none:hover {
    background-color: rgba(75, 75, 75);
}

.sidebar-menu .toggle-none::before {

}

.sidebar-menu .toggle-none.active::before {
    transform: rotate(90deg);
}


.sidebar-menu .submenu {
    padding-left: 1.6rem;
    padding-bottom: 0.5rem;
}

.sidebar-menu .submenu li {
    margin-bottom: 0.64rem;
    line-height: 110%;
}

area-mobile .toggle-subtitle {
    outline: none;
    border: none;
    background-color: unset;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    /* padding-top: 0.5rem;
    padding-bottom: 0.5rem; */
    transition: 0.3s;
    opacity: 0.6;
    cursor: pointer;
}

.area-mobile .toggle-subtitle:hover {
    /* background-color: rgba(75, 75, 75); */
}

.area-mobile .toggle-subtitle::before {

}

.area-mobile .toggle-subtitle.active::before {
    transform: rotate(90deg);
}

.area-mobile .toggle {
    outline: none;
    border: none;
    background-color: unset;
    color: var(--text-color);
    
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;

    width: 100%;
    padding: 0.64rem;
    transition: 0.3s;
}

.area-mobile .toggle:hover {
    background-color: rgba(75, 75, 75);
}

.area-mobile .toggle::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    line-height: 0;
    margin-right: 0.64rem;

    transition: 0.3s;
}

.area-mobile .toggle.active::before {
    transform: rotate(90deg);
}

.login-sidebar-menu .login-menu li {
    padding: 0.2rem 0;
}

.login-sidebar-menu .login-menu a, .submenu a {
    text-decoration: none;
    color: white;
    opacity: 0.6;
    transition: 0.3s;
}

.login-sidebar-menu .login-menu a:hover, .submenu a:hover {
    color: white;
    opacity: 1;
}

.login-sidebar-menu .login-menu i, .login-sidebar-menu .login-menu svg {
    margin-right: 0.64rem;
    font-size: 1.2rem;
}

main.blue a u {
    text-decoration: none;
}

main.blue .legislacao a {
    color: #009cff !important;
}

main.blue a {
    /* color: var(--color-one3); */
    color: #ffffff !important;
    transition: 0.3s;
    text-decoration: none !important;
}

.more-posts2 {
    margin-bottom: 1.7rem;
}

.more-posts2  h3 {
    font-size: 1.3rem;
}

main.blue .info a:hover {
    text-decoration: underline !important;
}

main.blue p a:hover  {
    text-decoration: underline !important;
}

main.graduation a {
   color: white;
   opacity: 1;
   transition: 0.3s;
   text-decoration: none;
   font-weight: bold;
}

li.matriz.docentes {
    width: unset;
    /* font-size: 12px; */

}



li.matriz.docentes a {
    font-size: 18px;
    /* font-size: 12px; */

}


li.matriz2.horario a {
    font-size: 17px;
}

section.professor.docente {
    background-color: white;
    color: black;
    padding-top: 10vh;
    /* margin-bottom: 100px; */
    padding-bottom: 80px;
}

section.professor.horario {
    background-color: white;
    color: black;
    padding-top: 10vh;
    padding-bottom: 80px;
}




main.graduation a:hover {
    opacity: 1;
    text-decoration: underline;
    cursor: pointer;
}

main.purple a {
    /* color: var(--color-two3); */
    transition: 0.3s;
    color: #ffffff;
    text-decoration: none;
}

main.purple a:hover {
    /* color: var(--color-two2); */
    text-decoration: underline;
}

main.yellow a {
    color: var(--color-three);
    transition: 0.3s;
}

main.yellow a:hover {
    color: var(--color-three-gradient);
}

main.yellow .title .info a {
    color: var(--color-three-gradient);
    transition: 0.3s;
}

main.yellow .title .info a:hover {
    color: var(--white);
}

section.title {
    width: 100vw;
    min-height: 50vh;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    max-width: 1440px;
    margin: auto;
    padding: 3.2rem;
}

.modal-content {
    background-color: transparent !important;
    border: none !important;
}

.modal-header {
    border-bottom: 0px solid transparent !important;

}

.btn-close {
    filter: brightness(0) invert(1);
}

section.hashtag-style.title .info {
    position: absolute;
    top: 55%;
    width: auto;
}

header.desktop div.content a.logo img {
    width: 99px;
}

header.mobile div.content a.logo img {
    width: 99px;
}

section.hashtag-style.title::before {
    content: "#vempra\a fai";
    white-space: pre;
    line-height: 105%;
    text-align: left;
    top: 18%;
    left: 0%;
    right: 0%;
    opacity: 0.05;
}

@media screen and (max-width:768px) {
    #section2 h2.left {
        font-size: 32px;
    }
}

section.title h1 {
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 110%;

    margin-bottom: 1.6rem;
}

ul.breadcrumbs {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0px;
    flex-wrap: wrap;

    /* padding: 1rem 1.6rem; */
}

ul.breadcrumbs-graduacao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    flex-wrap: wrap ;
    font-size: 17px;
}

@media screen and (max-width:768px) {
    p.linkbolsas {
        display: flex;
        flex-direction: column;
        line-height: auto !important;
    }
}

@media screen and (max-height:630px) {
    section.hashtag-style.title .info {
        left: 25px !important;
    }
}

/* .blue .breadcrumbs {
    background-color: var(--blue-one);
} */

/* .purple .breadcrumbs {
    background-color: var(--color-two);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0px;
    padding: 1rem 1.6rem;
} */

/* .graduation .breadcrumbs-graduacao {
    background-color: var(--graduation-color);
} */

.yellow .breadcrumbs a {
    color: #ffffff !important;
    text-decoration: none;
}

.yellow .breadcrumbs a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}


/* .yellow .breadcrumbs {
    background-color: var(--color-three);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0px;
    padding: 1rem 1.6rem;
} */
.graduation-title .info {
    display: flex;
    align-items: center;
}

h3.def {

text-decoration:underline !important;
font-weight: bolder !important;
}

li.cursos-mobile {
    line-height: 25px;
    /* margin-left: 3rem; */
}

.area-mobile li.mb-30 {
    margin-bottom: 20px;
}
.graduation-title .graduacao-menu {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2.4rem 0;
}

.graduation-title .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 50%;


}

.graduation-title .social-icons {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 30%;
}

main.purple + footer {
    background-image: linear-gradient(var(--body-color), var(--color-two-gradient2));
}

main.purple + footer a {
    color: var(--color-two3);
    transition: 0.3s;
}

main.purple + footer a:hover {
    color: white;
    transition: 0.3s;
}

main.purple + footer .newsletter button {
    background-color: var(--color-two);
}

main.purple + footer .newsletter button:hover {
    background-color: white;
    color: var(--color-two);
}

main.purple + footer .newsletter form {
    background-color: var(--body-color);
}


main.yellow + footer {
    background-image: linear-gradient(var(--body-color), var(--color-three-gradient));
}

main.yellow + footer a {
    color: var(--color-three);
    transition: 0.3s;
}

main.yellow + footer a:hover {
    color: white;
    transition: 0.3s;
}

main.yellow + footer .newsletter button {
    background-color: var(--color-three);
    color: var(--body-color);
}

main.yellow + footer .newsletter button:hover {
    background-color: white;
    color: var(--body-color);
}

main.yellow + footer .newsletter form {
    background-color: var(--body-color);
}

footer::before {
    content: "#volte\asempre";
    white-space: pre;
    padding-top: 6vh;
    line-height: 80%;
    filter: drop-shadow(2px 4px 6px black);
    
}

footer .content {
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

footer .top-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1rem;
    line-height: 110%;
}

footer .top-line p {
    margin-bottom: 0.64rem;
}

footer h1 {
    font-size: 1rem;
    font-weight: 700;
}

footer a {
    transition: 0.3s;
}

footer .logo {
    margin-right: 1rem;
    width: 8rem;
}

footer div + div {
    margin-top: 2.4rem;
}

footer .newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

footer .newsletter h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

footer .newsletter form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--color-one-gradient);
}

footer .newsletter input[type=email] {
    width: 75%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: unset;
    color: var(--text-color);
    outline: none;
    border: none;

    padding: 0 0.64rem;
}

footer .newsletter button {
    width: 25%;
    padding: 1rem;
    border: none;
    outline: none;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--text-color);
    background-color: var(--blue-two);
    transition: 0.3s;
}

footer .newsletter button:hover {
    background-color: white;
    color: var(--blue-one);
}

footer .menu-line {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

footer .credits {
    text-align: center;
}

footer.blue {
    background-image: linear-gradient(var(--body-color), var(--color-one-gradient));
}

footer.purple {
    background-image: linear-gradient(var(--body-color), var(--color-two-gradient));
}

footer.yellow {
    background-image: linear-gradient(var(--body-color), var(--color-three-gradient));
}

footer .toggle-subtitle {
    cursor: pointer;
    color: var(--text-color);
    opacity: 0.6;
}

main.yellow + footer .toggle-subtitle {
    color: var(--color-three);
}

main.purple + footer .toggle-subtitle {
    color: var(--color-two3);

}

li.has-menu.only-mobile {
    width: 250px;
    display: none;
}

hr.only-mobile {
    display: none;
}

@media only screen and (max-width:768px) {
    li.has-menu.only-mobile {
        display: block;
    }
    hr.only-mobile {
        display: block;
    }
}

@media only screen and (min-width: 768px) {
    .hashtag-style::before {
        /* top: -3.6rem; */
        font-size: 8.5rem;
    }

    section.title {
        padding: 7.2rem;
    }

    section.title::before {
        left: 40%;
    }

    footer .content {
        align-items: center;
        justify-content: center;
    }

    footer .newsletter {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    footer .newsletter form, footer .newsletter .info {
        max-width: 32rem;
    }

    footer .menu-line {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        column-gap: 1rem;
    }
}

@media only screen and (max-width: 955px) {
    header.desktop {
        display: none;
    }

    .login-button {
        margin-left: 0.64rem;
    }
}

main.graduation section.title-banner section.hashtag-style.title.container-fluid {
    margin-bottom: 0px !important;
}

li.has-menu.only-mobile {
    width: 250px;
    display: none;
}

hr.only-mobile {
    display: none;
}

@media only screen and (max-width:768px) {
    li.has-menu.only-mobile {
        display: block;
    }
    hr.only-mobile {
        display: block;
    }
}

@media only screen and (max-width: 903px) {

    .search-button {
        position: absolute;
    }
    .search {
        padding: 0.14rem 0.96rem;
    }

}

@media only screen and (min-width: 768px) {
    header.desktop {
        display: block;
    }

    header.mobile {
        display: none;
    }

    .sidebar-menu, .login-sidebar-menu {
        width: 25vw;
    }

    .sidebar-menu li.mobile {
        display: none;
    }

    .sidebar-menu .close-trigger {
        display: none;
    }
}

@media only screen and (min-width: 1366px) {
    section.hashtag-style.title::before {
         left: 35%;
    }
}

@media only screen and (max-width: 1366px) {
    section.hashtag-style.title::before {
         left: 35%;
    }
}


@media only screen and (max-width: 1317px) {
    header .menu li.desktop {
        display: none;
    }
}

@media only screen and (min-width: 1311px) {
    .sidebar-menu li.tablet {
        display: none;
    }
}  

@media only screen and (max-width: 768px){
    .hashtag-style::before {
        top: -3.6rem;
        margin-top: 50px;
        font-size: 5.5rem;
    }
    section.title h1 {
        font-size: x-large !important;
        text-align: left;
    }
    section.content-section {
        margin-top: 1rem;
    }
    ul.breadcrumbs {
        text-align: left;
    }
    section.title .info.blog-page h1 {
        font-size: 1.8rem !important;
    }

    .area h2 {
        font-size: 1.8rem;
    }

    
    .counter-box {
        justify-content: left !important;
        width: 18.5rem !important;
        margin-left: auto;
        margin-right: auto;
    }
}


@media only screen and (max-height: 768px) {
    section.title {
        min-height: 50vh;
    }
}

@media only screen and (max-height: 630px) {
    section.title {
        min-height: 70vh;
        /* left: 6%; */
    }
}

.l_azul {
    text-decoration: none;
    color: #ffffff !important;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 18px;
}

.linkbolsas a:hover {
    color: #009cff !important;
}

.menu_11p {
    text-decoration: none !important;
    color: #ffffff !important;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 18px;
}

span.menu_11p:hover {
    text-decoration: none !important;
}

p a.menu_11p:hover {
    color: #009cff !important;
}

span {

    color: white !important;
    font-size: 19px !important;
    text-decoration: underline white !important;

}

span:hover {
    text-decoration: none;
}

table tr td  {

    border: 2px solid gray !important;
    padding: 30px;

}

@media only screen and (max-width:768px){

    table tr td  {

        padding: 0px;
width: 100px !important;
    
    }


}

.left-text span {
    text-decoration: none !important;
}


main.blue h5.membros a:hover {
    text-decoration: underline;
}




/* Footer - Alterações */
footer .list-unstyled h4 {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.20rem !important;
    font-weight: 1000 !important;
}

footer .list-unstyled li {
    margin-bottom: 0.8rem;
    line-height: 1.2rem;
}

footer .social-box i,
footer .social-box svg,
footer .social-box i,
footer.social-box svg {
    font-size: 1rem !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    padding: 0.5rem !important;
    border-radius: 999px;
    border: 3px solid var(--color-three);
    
    color: var(--color-three);
    transition: color 0.3s, background-color 0.3s;

    margin-right: 0.3rem !important;
}

footer h5.radio {
    color: #fad219;
    text-decoration: none !important;
    display: block;
    font-size: 15px;
}

footer .cultura {
    background-color: #fad219;
    color: black;
    font-weight: bolder;
    font-size: 20px;
    align-self: center;
    align-items: center;
    align-content: center;
    padding-right: 0.3rem;
    padding-left: 0.3rem;
    text-decoration: none !important;
    font-family: 'Future Friends', sans-serif !important;
    letter-spacing: 1.5px;
}

.no-under {

    text-decoration: none !important;
    display: flex;

}

footer .social-icons {
    display: flex !important;
}

footer .social-box:hover i,
footer .social-box:hover svg,
footer .social-box:hover i,
footer .social-box:hover svg {
    color: var(--body-color);
    background-color: var(--color-three);
}

@media only screen and (max-width: 768px) {
    footer .social-icons {
        flex-wrap: wrap;
    }   
}

@media only screen and (max-width: 972px) {
    button.login-button span {
        display: none;
    }  
}

@media only screen and (max-width: 1200px) {
    main.pagina-post section.title h1 {
        font-size: 1.8rem;
    }

    main.pagina-post ul.list-unstyled  {
        text-decoration: none !important;
        flex-wrap: wrap;
    } 
}

@media only screen and (max-width: 680px) {
    main.pagina-post section.title h1 {
        font-size: 1.3rem !important;
    }

    section.hashtag-style.title .info {
        position: absolute;
        top: 52%;
    }

    section.hashtag-style.title .info.info-58 {
        position: absolute;
        top: 58%;
        top: 52%;
    }

 
    section.hashtag-style.title .info.blog-page {
        position: absolute;
        top: 33%;
    }
    
    
}

@media screen and (max-width:768px) {
    main.blue p a:hover  {
        text-decoration: none !important;
    }
}

/*

    Ouvidoria

*/

.img-ouvidoria img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: auto;
}

/* FAQ - Perguntas Frequentes */
.title-faq {
    font-weight: 800 !important;
    color: black !important;
    margin-bottom: 0px;
    font-size: 1.2rem;
    padding-bottom: 0px !important;
}

.faq p {
    color: black !important;
    line-height: normal;
    padding-bottom: 10px;
}


div.row.faq a {
    color: #009cff !important; 
}

/* Câmpus e Clínicas */

.imgs-campus div {
    max-height: 121px !important;
    overflow: hidden;
    padding-left: 0px;
}

.imgs-campus img:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.campus-esquerda {
    background-color: #d31e55;
    padding: 35px;
}

.campus-esquerda p {
    margin-bottom: 300px;
}

a.quem-somos-link:hover {
    text-decoration: underline !important;
}

.odonto-esquerda {
    background-color: #00376d;
    padding: 35px;
}

.odonto-esquerda p {
    margin-bottom: 300px;
}

@media only screen and (max-width: 768px){
    .imgs-campus div {
        max-height: none !important;
        overflow: hidden;
        padding-left: 0px;
    }
    
    .orientacao-ao-formando h5  {
        font-size: medium;
        margin-bottom: 15px !important;
    }
}


/* Cursos */
.curso-list .text h3 {
    font-size: 1.5rem;
}

ul.list-orgaos li {
    font-weight: bold;
    font-family: "Lato", sans-serif;
    font-size: 1.1rem;
}

ul.list-orgaos a {
    font-weight: normal;
    font-family: "Lato", sans-serif;
    font-size: 1.1rem;
}

/* Orientação ao Formando */

.orientacao-ao-formando * {
    color: black;
}

.orientacao-ao-formando h2 {
    color: black;
    font-family: "Texta Heavy", sans-serif !important;
}

.orientacao-ao-formando h5 a {
    color: #009cff !important;
    line-height: normal;
    margin-bottom: 0px !important;
    font-family: "Texta Heavy", sans-serif !important;
}

.orientacao-ao-formando h5 a strong {
    text-transform: uppercase;
    color: #009cff !important;
}

.orientacao-ao-formando h5 {
    margin-bottom: 0px;
}

.orientacao-ao-formando .content {
    text-align: center;
    /* min-width: 800px; */
}

.orientacao-ao-formando .table1 {
    overflow-x: scroll;
    margin-bottom: 2.4rem;
}

.container-lg.content-orientacao-ao-formando {
    padding-top: 3rem;
}

.content-orientacao-ao-formando .row {
    margin-bottom: 2.4rem;
}


.content-orientacao-ao-formando .text-left {
    text-align: left;
}

.content-orientacao-ao-formando .col-2:first-child p {
    text-align: left;
}

@media only screen and (min-width: 992px){
    .orientacao-ao-formando .table1 {
        overflow-x: hidden !important;
    }

}

.orientacao-ao-formando .table1::-webkit-scrollbar{
    width: none;
}

.orientacao-ao-formando .table::-webkit-scrollbar-track {
    background: orange;        /* color of the tracking area */
  }

.orientacao-ao-formando .table1::-webkit-scrollbar-thumb {
    background-color: blue;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    position: absolute;
    top: 500px;
    bottom: 0px;
    left: 0px;
    right: 0px;
  }

  /* width */
::-webkit-scrollbar {
    width: 7px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
    border-radius: 0px !important;
  }

  main.blue .team-info a:hover {
    text-decoration: underline !important;
}


  /* Modo alto contraste */
      body {
      /*background-color: white;
      color: black;*/
      }

    .content-section
    {
         /*background-color: white !important;*/
    }


    body.high-contrast {
      background-color: black !important;
      color: white !important;
    }
    
    body.high-contrast a {
      color: yellow !important;
    }

    body.high-contrast p {
      color: white !important;
    }

        body.high-contrast h6 {
      color: white !important;
    }
    
    body.high-contrast img {
      filter: grayscale(100%) !important;
    }

    section.high-contrast .content-section 
    {
      background-color: black !important;
      color: white !important;
      border-color: white !important;
    }

    body.high-contrast section
    {
      background-color: black !important;
      color: white !important;
      border-color: white !important;
    }

    body.high-contrast .btn{
      color: white !important;
      border-color: white !important;
    }
    /* Botões padrão */
    body.high-contrast .btn {
      background-color: black !important;
      color: white !important;
      border-color: white !important;
    }

    
    /* Botões com links (ex: btn-link) */
    body.high-contrast .btn-link {
      color: yellow !important;
      background-color: transparent !important;
    }

    
    /* Hover/focus */
    body.high-contrast .btn:hover,
    body.high-contrast .btn:focus {
      background-color: white !important;
      color: black !important;
      border-color: black !important;
    }
    /*------------------------*/
@font-face {
  font-family: 'OpenDyslexic';
  src: url('../webfonts/OpenDyslexic-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenDyslexic';
  src: url('../webfonts/OpenDyslexic-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'OpenDyslexic';
  src: url('../fonts/OpenDyslexic-Bold-Italic.otf.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

/* Classe de acessibilidade */
.dyslexia-font {
  font-family: 'OpenDyslexic', 'Comic Sans MS', sans-serif !important;
}


/* Estilo para modo dislexia */
body.dyslexia-mode a {
    font-family: 'OpenDyslexic', 'Comic Sans MS', sans-serif;
    letter-spacing: 0.1em;
    line-height: 1.6;
    color: #0066cc;
    text-decoration: underline;
}

@import url('https://fonts.cdnfonts.com/css/open-dyslexic');

/* Opcional: melhorar legibilidade em geral no modo dislexia */
body.dyslexia-mode {
    font-family: 'OpenDyslexic', 'Comic Sans MS', sans-serif;
}

body.dyslexia-font * {
  font-family: 'OpenDyslexic', sans-serif !important;
}

/*Botões laterais*/
#dark-mode-toggle, #toggle-dyslexia, #toggle-zoom-plus, #toggle-zoom-minus, #go_acess 
{
      background-color: #3185ef !important;
      border-radius: 10% !important;
      border-color: #3185ef !important;
}