html {box-sizing: border-box;font-family:Roboto, sans-serif; scroll-behavior: smooth;}
*, *:before, *:after {box-sizing: inherit;}
 

@font-face {
  font-family: 'Herokid Bold Condensed';
  font-style: normal;
  font-weight: normal;
  src: local('Herokid Bold Condensed'),
    url('/site/midia/arquivos/herokid-bold-condensed.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Herokid Bold Narrow';
  font-style: normal;
  font-weight: normal;
  src: local('Herokid Bold Narrow'),
    url('/site/midia/arquivos/herokid-bold-narrow.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Herokid Regular Condensed';
  font-style: normal;
  font-weight: normal;
  src: local('Herokid Regular Condensed'),
    url('/site/midia/arquivos/herokid-regular-condensed.otf') format('opentype');
  font-display: swap;
}
:root {
  /* Base Colors */
  --blue-500: #1161DF;
  --red-600: #D30000;
  
  /* Grayscale Solid */
  --gray-50: #FFFFFF;
  --gray-100: #F4F4F4;
  --gray-200: #E2E2E2;
  --gray-600: #4B4B4B;
  --gray-700: #3F3F3F;
  
  /* Grayscale Alpha */
  --gray-50-a20: rgba(255, 255, 255, 0.20);
  --gray-50-a90: rgba(255, 255, 255, 0.90);
  --gray-600-a15: rgba(75, 75, 75, 0.15);
  --gray-700-a20: rgba(63, 63, 63, 0.20);
  
  /* Background */
  --background-main: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
  --background-navigation: var(--gray-50-a90);
  --background-surface: var(--gray-50);
  --background-surface-tp: var(--gray-50-a20);
  --background-subtle: var(--gray-100);
  
  /* Brand */
  --brand-primary: var(--blue-500);
  --brand-secondary: var(--red-600);
  
  /* Border */
  --border-primary: var(--gray-600-a15);
  --border-secondary: linear-gradient(90deg, var(--gray-50-a20) 0%, var(--gray-700-a20) 100%);
  
  /* Text */
  --text-primary: var(--gray-700);
  --text-secondary: var(--gray-50);
  --text-subtle: var(--gray-200);
  --text-interactive: var(--blue-500);
  --text-accent: var(--gray-700);
  
  /* Icon */
  --icon-primary: var(--gray-700);
  --icon-secondary: linear-gradient(90deg, #BC9138 0%, #D6AB52 12%, #F1D184 26%, #FADB6C 36%, #D2AE5A 96%);
  
  /* Blur */
  --blur-low: blur(4px);
  --blur-high: blur(8px);
}

body{
  background: linear-gradient(180deg, var(--grayscale-gray_50, #FFF) 0%, var(--grayscale-gray__100, #F4F4F4) 100%);
}
#animated {
  max-width: 6vw;
  position: absolute;
  top: 15%;
  left: 30%;
  width: 100%;
  animation: slideInWithGlow 1.5s ease-out forwards, floatAndGlow 3s ease-in-out 1.5s infinite;
}

@keyframes slideInWithGlow {
  0% {
    transform: translateY(-200px) rotate(-15deg);
    opacity: 0;
    filter: brightness(1.5) drop-shadow(0 0 20px rgba(255, 0, 0, 0.8));
  }
  60% {
    transform: translateY(10px) rotate(5deg);
    filter: brightness(1.3) drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
  }
  80% {
    transform: translateY(-5px) rotate(-2deg);
    filter: brightness(1.15) drop-shadow(0 0 10px rgba(255, 0, 0, 0.4));
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    filter: brightness(1) drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
  }
}

@keyframes floatAndGlow {
  0% {

    filter: brightness(1) drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
  }
  25% {

    filter: brightness(1.1) drop-shadow(0 0 8px rgba(255, 0, 0, 0.4));
  }
  50% {

    filter: brightness(1) drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
  }
  75% {

    filter: brightness(1.1) drop-shadow(0 0 8px rgba(255, 0, 0, 0.4));
  }
  100% {

    filter: brightness(1) drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
  }
}

@media (max-width: 576px) {
  #animated {
    max-width: 12vw;
    position: absolute;
    top: 5%;
    left: 44%;
    width: 100%;
    animation: slideInWithGlow 1.5s ease-out forwards, floatAndGlow 3s ease-in-out 1.5s infinite;
  }
}

h1 > a.navbar-brand {
color: var(--text-primary) !important;
  text-edge: cap;
  font-family: 'Herokid Bold Condensed', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 0px !important;
  margin: 0px !important;
    margin-top: 0px;
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 8px;
  margin-top: 4px !important;
}

.year-title {
  color: var(--text-primary) !important;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Herokid Regular Condensed', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

header {
  background: var(--background-navigation);
  box-shadow: 0 4px 4px 0 var(--border-primary);
  backdrop-filter: var(--blur-high);
 
}

.nav-link {
  color: var(--text-primary) !important;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
 
h2.section-title {
  font-family: 'Herokid Bold Condensed', sans-serif;
  color: var(--text-accent);
  text-wrap: nowrap;
  text-transform: uppercase;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 64px */
}

.front-card-title{
  font-family: 'Herokid Bold Narrow', sans-serif;
  font-size: 24px;
  color: var(--text-primary, var(--grayscale-gray_700, #3F3F3F));
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.front-card{
  border-radius: 8px;
  border: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
  background: var(--grayscale-gray_50, #FFF);
  box-shadow: 0 4px 16px 0 var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
  padding: 32px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  flex: 1 0 0;
}

a.btn-primary.blue{
border-radius: 8px;
background: var(--blue_500, #1161DF);
box-shadow: 0 4px 16px 0 var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
color:white;
  text-transform: uppercase;
  text-align:center;
}




a.btn-secondary.blue {
border-radius: 8px;
border: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
background: var(--grayscale-gray_50, #FFF);
box-shadow: 0 4px 16px 0 var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
color: var(--Buttons-Tertiary-button-tertiary-text, var(--blue_500, #1161DF));
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
  text-transform: uppercase;
  text-align:center;
} 

.bg-gray-img{

background-blend-mode: normal, normal, normal, soft-light, normal;
  background: 
    linear-gradient(180deg, rgba(0, 35, 87, 0.00) 0%, rgba(10, 67, 156, 0.25) 100%), 
    linear-gradient(90deg, rgba(44, 44, 44, 0.00) 0%, rgba(44, 44, 44, 0.50) 100%), 
    linear-gradient(270deg, rgba(44, 44, 44, 0.18) 0%, rgba(44, 44, 44, 0.90) 100%),
   linear-gradient(270deg, rgba(74, 74, 74, 0.80) 0%, rgba(66, 66, 66, 0.80) 100%),
    url(https://www.ucs.br/site/midia/arquivos/vestibular-medicina-bg-gray-img.png) lightgray 50% / cover no-repeat;
  min-height: 100vh;
  overflow: hidden;
}


.transparent-card{
  padding: 32px;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid var(--border-secondary, #FFF);
  background: var(--grayscale-gray_50_A20, rgba(255, 255, 255, 0.20));
  backdrop-filter: blur(4px);
  text-wrap: nowrap;
  
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}


.star-bg {
max-height: 120%;
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
}

.header-container{
  position: sticky;
  z-index: 9999;
  top: 0;
}









.z2{
z-index: 2;
  position: inherit;
}





@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.transparent-card.animate {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out forwards;
}



.section-subtitle{
   font-family: 'Herokid Bold Condensed', sans-serif;
color: var(--Text-text-accent, var(--grayscale-gray_700, #3F3F3F));
 
   font-size: 36px;
   font-style: normal;
   font-weight: 700;
   line-height: 100%;
   text-wrap: nowrap;
   text-transform: uppercase;
}


.transparent-card-title{
  color: #EAF3FF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  min-width: 194px;
  text-align: center;
}
.transparent-card-text{
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 38.4px */
}
.transparent-card-link{
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 38.4px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.transparent-card-link:hover{
  color: white;
  
}
.bg-blue-img{
  background: 
    linear-gradient(90deg, rgba(0, 35, 87, 0.00) 0%, rgba(0, 35, 87, 0.50) 100%),
    linear-gradient(270deg, rgba(0, 35, 87, 0.18) 0%, rgba(0, 35, 87, 0.90) 100%),
    url(https://www.ucs.br/site/midia/arquivos/vestibular-medicina-bg-img.png) center/cover no-repeat,
    #0053EE;
  min-height: 100vh;
    overflow: hidden;
}
 
.box-title{
  font-family: 'Herokid Bold Narrow', sans-serif;
 color: var(--Text-text-accent, var(--grayscale-gray_700, #3F3F3F));
 
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.line{
  width: 100%;
  border-top: 1px solid #D9D9D9;
}
a{
  
}
.box-button{
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  border-radius: 8px;
  background: #0053EE;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
color: var(--Buttons-Secondary-button-secondary-text, var(--grayscale-gray_50, #FFF));
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
  transition: .7s;
  
}
.box-button-red{
  display: flex;
  height: 51px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  border-radius: 8px;
  background: #E5231E;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color:white;
  transition: .7s;
}
.box-button-red:hover{
  color:white;
  transform: scale(1.05);
}
.box-button:hover{
  color: white;
  transform: scale(1.05);
}

a, a:hover {
 text-decoration: none;
 color: var(--text-interactive);
}
.bottom-star{
  position: absolute;
  bottom: 0;
  right: 0;
}
a:hover {
 color: #0046b5;
}
.grow{
    min-height: 60vh;
}
.nav-button {
  display: flex;
  height: 51px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--red_600, #D30000);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  color: var(--Buttons-Primary-button-primary-text, var(--grayscale-gray_50, #FFF));
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-wrap: nowrap;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.nav-button:hover {

  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);  
 color: var(--Buttons-Primary-button-primary-text, var(--grayscale-gray_50, #FFF));
}

.card-header:not(:first-of-type){
  border-top: 1px solid #cecece !important;
}
ul.navbar-nav.mr-auto {
 gap: 1rem;
}

.navbar {
  padding: 16px 24px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
 color: white;
}

.navbar-nav:hover {
 color: var(--color-red);
}


.nav-link {
 padding: 0 !important;
}

 

li.nav-item.menu {
 padding: 0 .8rem;
display: flex;
  justify-content: center;
  align-items: center;
}

a.nav-link.menu.button {
 background-color: var(--color-red);
 color: var(--color-white);
 padding: .5rem 1.5rem;
 border-radius: 6px;
 font-size: 1rem;
 box-shadow: 0px 4px 6px rgb(0 0 0 / 0.12%);
}

a.nav-link.menu.button:hover, a.nav-link.menu.button:active {
 background-color: #249cb6;
 color: var(--color-blue);
}

a.active-item{
  color: white !important;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.collapse.navbar-collapse {
 justify-content: end;
}

button:focus {
 outline: 1px solid #cecece;
}

.breadcrumb-item{
    font-family: Roboto;
      line-height: normal;
display: flex;
  gap: 16px;


}

.breadcrumb {
 padding: 2rem 1rem;
 margin-bottom: 0;
 background: var(--grayscale-gray__100, #F4F4F4);
 
}
.breadcrumb-current{
color: var(--Text-text-primary, var(--grayscale-gray_700, #3F3F3F));
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section {
 //min-height: 85vh;
 padding: 7rem 0;
 
}

section.min {
 padding: 4rem 0;
}

section.bg-blue {
 background-color: var(--color-blue);
}


h1 {
 margin: 0;
}


.navbar-spacer{
  margin-top: 8.5vh;
}
h3.section-{
color: #0053E5;
font-family: 'Bebas Neue', sans-serif;
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.card .subtitle {
 font-family: 'Herokid Bold Condensed', sans-serif;
 color: var(--Text-text-accent, var(--grayscale-gray_700, #3F3F3F));
 
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: normal;
 text-align:center;
 
}
.text-blue{
  color: var(--text-interactive);
}
h3.subtitle.inline {
 display: inline;
}
.editar-card{
  border-radius: 8px;
  border: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
  background: var(--grayscale-gray_50, #FFF);
  box-shadow: 0 4px 16px 0 rgba(69, 69, 69, 0.15);
  display: flex;
  padding: 16px;
  justify-content: space-between;
  align-items: center;
}
}
h3.subtitle.blue.light {
 color: var(--color-blue);
 font-weight: 300;
}

h3.subtitle.gray {
 color: var(--color-gray);
 font-size: 1.3rem;
}

h3.subtitle.white {
 color: var(--color-white);
 font-weight: 800;
}

h4.subtitle {
 color: var(--color-gray);
}

p.text-base, ul.section-list, span {
 color: var(--color-gray);
 font-family: Roboto, sans-serif;
 font-size: 1rem;
}

p.text-base.white {
 color: var(--color-white);
}

span.divisor {
 font-size: 1.4rem;
 font-weight: bold;
 padding: 0 .5rem;
}

.box{
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
  background: var(--grayscale-gray_50, #FFF);
  box-shadow: 0 4px 4px 0 var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
  gap:48px;
  display: flex;
  flex-direction: column;
}

.img-fluid.border-radius {
 border-radius: .5rem;
}
.bottom-rigth-start{
  position: absolute;
  bottom: -20%;
  left: -8%;
}
a.btn-primary, a.btn-secondary, h3.card-title, p.card-text {
 font-family: Roboto, sans-serif;
}
.card-subtitle{
  color: #3F3F3F;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
}

a.btn-primary, a.btn-secondary {
 display: flex;
 justify-content: center;
 padding: 1rem;
 border-radius: 5px;
 font-weight: 700;
 font-size: 1rem;
 transition: .3s;
}

a.btn-primary:hover, a.btn-secondary:hover {
 transition: .3s;
 transform: scale(1.05);
}

a.btn-primary.red {
  text-align:center;
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  border-radius: 8px;
  background: #E5231E;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

a.btn-primary.red:hover {
 transition: .3s;
}

a.btn-primary.red.sm {
 font-size: .9rem;
 padding: 0.8rem 1rem;
 margin: 0 0 0 1rem;
}

 

a.btn-primary.blue.xl {
 height: 40%;
 align-items: center;
}

a.btn-primary.blue.xxl {
 padding: 5rem;
 align-items: center;
 color: var(--color-white);
 text-transform: uppercase;
 font-weight: 900;
 box-shadow: 4px 0 4px 0 #00000025;
}


a.btn-secondary.blue.sm {
 padding: .5rem;
} 

a.btn-secondary.blue.lighter.md {
 height: 100%;
 align-items: center;
}

a.btn-secondary.white {
 color: var(--color-white);
 border: 1px solid var(--color-white);
 background: none;
} 

a.btn-secondary.red {
 border: 1px solid var(--color-red);
 color: var(--color-red);
 background: none;
}

.wrapper-card {
 padding: 2rem;
 margin-top: 3rem;
border-radius: 8px;
  border: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
  background: var(--grayscale-gray_50, #FFF);
  box-shadow: 0 4px 16px 0 rgba(69, 69, 69, 0.15);
  overflow: hidden;
}









  .select-button{
    cursor:pointer;
    display: flex;
    padding: 16px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    color: #0053EE;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align:center;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
  .select-button.active{
   text-align:center;
   border-radius: 8px 0 0 8px;
border-top: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
border-bottom: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
border-left: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
background: var(--grayscale-gray_50, #FFF);
box-shadow: 0 4px 4px 0 var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
    color: #3F3F3F;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    line-height: normal;
    text-decoration: none;
  }
  .pb-48{
    padding-bottom: 48px;
  }
  .select-page{
    width: 100%;
  }
  .select-page.inactive{
    display:none;
  }
  .select-content{
    display: flex;
    padding: 24px 16px 0px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 8px;
    border: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
    background: var(--grayscale-gray_50, #FFF);
    box-shadow: 0 4px 4px 0 var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
  }
  
  
  .ligth-subtitle {
color: var(--Text-text-accent, var(--grayscale-gray_700, #3F3F3F));
font-family: Roboto;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
  }
  .accordion-body p {
    margin:0;
    font-size: 16px;
    line-height: 1.6;
  }
  
  
  
  
  
  
  
  .flex-c{
    flex-direction: column;
  }
  .hidden{
    display: none;
  }
  
  
  
  .gap-24{
    gap:24px;
  }
  .pb-48{
    padding-bottom: 48px;
  }
  .select-page{
    width: 100%;
  }
  .select-page.inactive{
    display:none;
  } 

  .accordion-body p {
    margin:0;
    font-size: 16px;
    line-height: 1.6;
  }
  
  
  
  
  
  
  
  .flex-c{
    flex-direction: column;
  }
  .hidden{
    display: none;
  }
  
  
  
  
  
  /* ---------------------------- TABLET ------------------------------ */
  @media (min-width: 768px) and (max-width: 1200px) {
    .md-hidden{
      display:none;
    }
    .md-flex-col{
      flex-direction: column;
    }
    .md-flex-row{
      flex-direction: row;
    }
    .md-show{
      display: flex;
    }
    
    
    
    
    
    
    
    
    /* -------- ESPECIFIC ------------ */
    .select-button.active{
      border-radius: 8px 8px 0px 0px;
       border-radius: 8px;
        border-top: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
        border-rigth: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
        border-left: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
        background: var(--grayscale-gray_50, #FFF);
        box-shadow: 0 4px 4px 0 var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
    justify-content: center;
      border-bottom:none;
    }
    .select-button{
 
    justify-content: center;
 
    }
  }
  
  
  /* ---------------------------- MOBILE ------------------------------ */
  @media (max-width: 767px) {
    .sm-hidden{
      display:none;
    }
    .sm-flex-col{
      flex-direction: column;
    }
    .sm-flex-row{
      flex-direction: row;
    }
    .sm-show{
      display: flex;
    }
    .sm-gap-8{
      gap: 8px;
    }
    .sm-mt-16{
      margin-top: 16px;
    }
    
    
    
    
    /* -------- ESPECIFIC ------------ */
    .select-button{
      text-align:center;
      justify-content: center;
    }
    .select-button.active{
      border-radius: 8px;

        border: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
        
        background: var(--grayscale-gray_50, #FFF);
        box-shadow: 0 4px 4px 0 var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
    }
    .ligth-subtitle{
      font-size:20px;
    }
  }
















.flex {
 display: flex;
}

.cards {
  display: flex;
  flex-direction: row;
  gap:24px;
  flex-wrap: wrap;
}

.card {
border-radius: 8px;
border: 1px solid var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
background: var(--grayscale-gray_50, #FFF);
box-shadow: 0 4px 4px 0 var(--grayscale-gray_600_A15, rgba(75, 75, 75, 0.15));
  display: flex;
  padding:32px;
  padding-right: 32px;
  padding-left: 32px;
  flex-direction: column;
  justify-content: start;
  gap:24px;
  min-width: 353px;

  margin-inline: auto;
}

.card.line.margin {
 margin-top: 3rem;
}

p.card-text {
 color: var(--color-white);
 font-weight: 500;
 font-size: 1.2rem;
}

i.bi.bi-calendar-week, i.bi.bi-journal-text, i.bi.bi-geo-alt {
 font-size: 3rem;
 color: #00b1ff;
}

.texto-btn-gabarito {
 font-size: 1.3rem;
}

hr.line-course {
 border: 2px solid var(--color-0);
 width: 5%;
 margin: 1rem auto 0;
 background-color: var(--color-0);
}

h4 {
 color: #787878;
}

.card-faq {
 background-color: #0050e1;
 color: var(--color-0);
 justify-content: center;
 display: flex;
 padding: 2rem;
 border-radius: 60px; 
 margin: 4rem 0 2rem;
}

.card-faq:hover {
 transform: scale(1.1);
}

.card-faq {
 transition: transform 0.3s;
}

.table td, .table th {
 vertical-align: middle;
}

.table-bordered {
 border: 1px solid #f7f7f7;
 padding: 0 1rem;
}

a.link-back {
 //font-size: 2rem;
 color: var(--color-red);
}

a.link-back.white, a.link.white {
 color: var(--color-white);
}

a.link.white {
 text-decoration: underline;
}

ul, li > a.link-general {
 text-decoration: none !important;
}

#accordion {
 transition: .2s;
 cursor: pointer;
}

#accordion p {
 font-size: 1rem;
 font-family: Roboto;
 padding: 1rem;
 margin-bottom: 0;
color: var(--Text-text-subtle, var(--grayscale-gray_500, #6B6B6B));
}

#accordion a {
 font-weight: bold;
}

.card-header.accordion {
 background-color: transparent;
 color: 3F3F3F;
 display: grid;
 grid-template-columns: 34fr 1fr;
 gap: 1rem;
 padding: 1.5rem;
   border-bottom: none;
 
}

.card-title.accordion {
 font-size: 1.2rem;
 font-family: Roboto;
 font-weight: 500 !important;
 margin: 0;
}

.card-body.accordion {
 background-color: #fff;
 padding: 0 1.25rem;
 
}

.card-body ul, ol {
color: var(--Text-text-subtle, var(--grayscale-gray_500, #6B6B6B));
 font-size: 1rem;
 font-family: Roboto;
 padding: 1.5rem;
 margin-bottom: 0;
 
 padding-left: 3rem;
}

.accordion .card-header.accordion:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f077";
  color: var(--color-0);
  font-weight: bold;
  float: right;
  margin-right: 17px;
}

.accordion .card-header.collapsed:after {
  content: "\f078"; 
}

 

.card-header.accordion:last-child {
 border-radius: 0 0 5px 5px !important;
}

.box-faixa {
 background-color: #0053ef;
 padding: 1rem;
 font-size: 16px;
 text-align: center; 
 margin-top: 35px;
 margin-bottom: 30px;
 border-radius: 4px;
}

.box-faixa:hover {
 transition: .3s;
 transform: scale(1.03);
}

span.faixa {
 font-family: "Nunito";
 color: var(--color-white);
 font-size: 1.2rem;
}

.box-resultado{
  background-color: #f8f8f8;
  padding: 2rem 1rem;
  border-radius: 4px;
}
 
.nav-link{
    border-bottom: 1px solid #0000;
  width: fit-content;
}
.nav-link.menu:hover {
    border-bottom: 1px solid white;
}

.tiny-paragraph{
  color: #2B2B2B;
font-family: Roboto;
font-size: 16px;
font-style: normal;
 
line-height: 160%; /* 22.4px */
  margin: 0px !important;
}
.tiny-paragraph a{
color: var(--Text-text-interactive, var(--blue_500, #1161DF));
  font-weight: 700;
 
}
.btn-edital{
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #0053EE;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
  text-wrap:nowrap;
  z-index: 10;
  transition: .7s;
}

.btn-edital:hover{
  color: #FFF;
  transform: scale(1.1);
}
/*====================== utils ================ */
.flex-col{
  display: flex;
  flex-direction: column;
}
.gap-8{
  gap:24px;
}
.gap-48{
  gap:48px;
}
.gap-24{
  gap:24px;
}
.gap-40{
  gap:40px;
}
.mb-74{
  margin-bottom:74px;
}
.mb-56{
  margin-bottom:56px;
}

.mt-32 {
 margin-top: 2rem;
}

.leading-28 {
 line-height: 1.75rem;
}

.flex{
  display:flex;
}
.space-between{
  justify-content: space-between;
}
.items-center{
  align-items:center;
}
.justify-center{
  justify-content: center;
}
.relative{
  position:relative;
  overflow: hidden;
}
.mb-40{
  margin-bottom:40px;
}
.wrap{
    flex-wrap: wrap;
}
.max-w-500{
  max-width: 500px;
}
.min-h-full {
 min-height: 100%;
}
.flex-1{
  flex:1
}
.z-1{
  z-index: 1;
}
.opacity-50{
    opacity: 50%;
}
.dt-p-0{
  padding: 0px;
}
.text-start{
text-align: start;
  width: 100%;
}
/*====================== tablet ================ */
@media (min-width: 992px) and (max-width: 1199px) {
 .navbar-spacer{
  margin-top: 8.5vh;
}
 h1 > a.navbar-brand, .year-title {
  font-size: 1.6rem;
 }

 .navbar-light .navbar-nav .nav-link {
  padding: 0;
 }

 a.nav-link.menu.button {
  padding: 0.5rem 1rem;
 }

 .navbar-nav.menu {
  align-items: unset !important;
 }

 li.nav-item.menu {
  padding: .5rem 0;
 }
}

/*====================== celular ================ */
@media (max-width: 991px) {
 .navbar-spacer{
  margin-top: 8.5vh;
}
 h1 > a.navbar-brand {
  font-size: 24px;
 }

 ul.navbar-nav.menu {
  align-items: unset;
 }

 li.nav-item.menu, a.nav-item.menu:active {
  padding: .5rem 0;
    justify-content: start;
 }

 a.btn-primary.red.sm {
  margin: 1rem 0 0 0;
 }

 span.divisor {
  visibility: hidden;
 }

 h2.section-title {
  font-size: 40px;
 }

 h3.subtitle.inline {
  display: block;
  padding: 0 3rem;
 }
 ul.navbar-nav.menu {
  align-items: unset;
 }

 li.nav-item.menu, a.nav-item.menu:active {
  padding: .5rem 0;
    justify-content: start;
 }

 a.btn-primary.red.sm {
  margin: 1rem 0 0 0;
 }

 .row.cards, .row.buttons{
   flex-direction: column;
 }

 .full {
  max-width: 100%;
 }
 .year-title {
  font-size: 2rem;
 }
 
 
 .sm-none{
   display: none;
 }
 .sm-p-32{
   padding: 32px;
 }
 .sm-flex-col{
   flex-direction: column;
 }
 
 .bottom-star-animated{
   bottom: -7%;
   left: -39%;
 }
 
}
