:root {
 --color-0: #FFFFFF;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');


html {box-sizing: border-box;font-family:"Roboto", sans-serif;}
*, *:before, *:after {box-sizing: inherit;}


.text-primary{
color: #001946 !important;
}
body {
  font-family:"Roboto", sans-serif !important;
}
.box{
  background: #0031a11c;
  padding: 8px;
  border-radius: 8px;
}
p, a {
  font-size: 1rem;
 }

a:hover {
  text-decoration: underline;
}

#menuAvaliacao {
 background-color: #F9233A;
 padding: 1rem 1rem 0.5rem;
 box-shadow: 1px 0px 13px 0 #4c0910b8;
}
.w-fit{
  width: fit-content;
}
#menuAvaliacao ul {
 display: flex;
 gap: 2rem;
 list-style: none;
 color: #fff;
 font-weight: bold;
}

#menuAvaliacao a {
 color: #fff;
}

a.nav-brand-link {
 text-decoration: none;
}
.button {
  background: #f9233a;
  color: white;
  padding: 8px;
  border-radius: 8px;
  display: block;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease, color 0.2s ease;
}

.button:hover {
  background: #d81e32;  
  transform: scale(1.01);  
  cursor: pointer;
  color: white;
  text-decoration: none;
}


h1 {
 color: var(--color-0);
 font-size: 2rem;
 font-weight: 700;
 text-transform: uppercase;
}

h2 {
 font-size: 1.5rem;
 margin-top: 3rem;
 color: #0031a1;
}

h3.subtitle {
 font-size: 1.2rem;
 margin-top: 3rem;
 color: #df2135;
}

ul.list-itens li {
 padding-bottom: 1.5rem;
}

.mt-32 {
 margin-top: 2rem;
}

.mb-48 {
 margin-bottom: 3rem;
}

.justify-items-center {
 justify-items: center;
}

section {
 margin: 2rem 0;
}


hr {
  //margin: 1rem 0 2rem;
  margin: 0;
}

.btn-primary {
 padding: 2rem 0;
 background-color: #00a5f0;
 border-radius: 20px;
 display: flex;
 justify-content: center;
 font-size: 1rem;
 font-weight: bold;
 text-transform: uppercase;
 margin: 2rem 4rem;
}

.accordion {
 background-color: #0052eb;
 color: var(--color-0);
 cursor: pointer;
 padding: 0.7rem 0 0.7rem 2rem;
 width: 100%;
 /*border: none;*/
 text-align: left;
 outline: none;
 font-size: 1rem;
 transition: .3s;
 border: 3px solid #0052eb;
 border-bottom-width: 1px;
 font-weight: normal;
 margin-top: 8px;
 border-radius: 4px;
 font-weight: 500;
}

.accordion:after {
 font-family: 'Font Awesome 5 Free';
 content: "\f078";
 color: var(--color-0);
 font-weight: bold;
 float: right;
 margin-right: 17px;
}

.active:after {
 font-family: 'Font Awesome 5 Free';
 content: "\f077";
}

.acc2:after{
 margin-right: 17px !important;
 margin-left: -23px !important;
 margin-top: -10px;
}

.panelx {
 padding: 0 18px;
 background-color: #f1f4fb;
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.2s ease-out;
 //border: 2px solid #f4e4e4;
 border-top: 0;
}

.panelx p{
 margin: 25px;
 font-size: 18px !important;
 color: #572727;
}

.panelx a{
 font-size: 0.875rem !important;
}

.panelx a:hover{
 font-size: 0.875rem !important;
}

.panelx ul {
 margin: 25px;
}

.panelx li {
 color: #001946;
}

button:focus {
 outline: 1px auto #0052eb;
}

p.last-update {
 color: #525961;
}

@media (min-width: 0px) and (max-width: 320px) {
 h1 {
  font-size: 1.4rem;
 }
 
 .accordion {
   display: grid;
   grid-template-columns: 8fr 1fr;
   align-items: center;
   gap: 1rem;
 }
 
 .panelx ul {
   margin: 25px 0;
 }
}

@media (min-width: 320.01px) and (max-width: 375px) {
 h1 {
  font-size: 1.5rem;
 }

 .accordion {
   display: grid;
   grid-template-columns: 8fr 1fr;
   align-items: center;
   gap: 1.5rem;
 }
 
 .panelx ul {
   margin: 25px 10px 25px 0;
 }
 
 .flex-col {
  flex-direction: column;
 }

 .w-full {
  max-width: 100%;
 }
}

@media (min-width: 375.01px) and (max-width: 425px) {
 h1 {
  font-size: 1.6rem;
 }

 .accordion {
   display: grid;
   grid-template-columns: 8fr 1fr;
   align-items: center;
   gap: 1rem;
 }

 .panelx ul {
   margin: 25px 10px 25px 0;
 }
}

@media (min-width: 425.01px) and (max-width: 576px) {
 h1 {
  font-size: 1.7rem;
 }

 .accordion {
   display: grid;
   grid-template-columns: 8fr 1fr;
   align-items: center;
   gap: 1.5rem;
 }

 .panelx ul {
   margin: 25px 10px 25px 0;
 }

 .flex-col {
  flex-direction: column;
 }

 .w-full {
  max-width: 100%;
 }
}

@media (min-width: 576.01px) and (max-width: 768px) {
 h1 {
  font-size: 1.8rem;
 }

 .panelx ul {
   margin: 25px 10px 25px 0;
 }

 .flex-col {
  flex-direction: column;
 }

 .w-full {
  max-width: 100%;
 }
}

@media (min-width: 769px) and (max-width: 992px) {
 .flex-col {
  flex-direction: column;
 }

 .w-full {
  max-width: 100%;
 }
}

@media (max-width: 992px) {
 #menuAvaliacao ul {
  display: block;
  padding: 0;
 }

 #menuAvaliacao li {
  padding: .5rem 0;
 }
}
