#menu {
  width: 100%;
  max-width: 59.375vw;
  background-color: #fff;
  border-radius: 2.60417vw;
  padding: 0.72917vw 2.60417vw;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.33);
  position: fixed;
  top: 12px;
  right: 0;
  left: 0;
  margin: auto;
  align-items: center;
  display: flex;
  justify-content: space-between;
  z-index: 12 !important;
}

#menu .logo {
  width: 6.35417vw;
}

#menu .logo img {
  width: 100%;
}

#menu .itens {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2.60417vw;
}

#menu .itens .item {
  color: #00273d;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.83333vw;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

#menu .itens .item:hover > .texto {
  text-shadow: 0 0 #00273d;
}

#menu .itens .item .texto {
  display: flex;
  align-items: center;
}

#menu .itens .item.sub {
  position: relative;
}

#menu .itens .item.sub .seta {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid #02527e;
  content: '';
  display: block;
  margin-left: 5px;
  margin-top: 4px;
}

#menu .itens .item.sub .itens {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  display: none;
  width: 200px;
  margin-left: -60px;
  text-align: center;
}

#menu .itens .item.sub .itens .item {
  display: block;
  margin-bottom: 10px;
}

#menu .itens .item.sub .itens .item:last-child {
  margin-bottom: 0;
}

#menu .itens .item.sub .itens.aberto {
  display: block;
  animation-name: submenu;
  animation-duration: 200ms;
  animation-direction: normal;
}

#menu .botao {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  padding: 13px 34px;
  background-color: #02527e;
  border-radius: 20px;
  position: relative;
  transition: all 200ms ease-in-out;
}

#menu .botao:hover {
  border-radius: 20px 0 0 20px;
}

#menu .botao:hover::after {
  right: -32px;
}

#menu .botao:hover .seta {
  opacity: 1;
}

#menu .botao .seta {
  opacity: 0;
  position: absolute;
  transition: all 200ms ease-in-out;
  width: 12px;
  right: 0;
  z-index: 2;
}

#menu .botao::after {
  content: '';
  transition: all 200ms ease-in-out;
  width: 34px;
  height: 100%;
  position: absolute;
  background-color: #02527e;
  border-radius: 0 20px 20px 0;
  top: 0;
  right: 0;
}

@media screen and (max-width: 780px) {
  #menu {
    min-width: 90vw;
    padding: 0.72917vw 2.60417vw;
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 0;
  }
  #menu .botao {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    padding: 13px 34px;
    background-color: #02527e;
    border-radius: 20px;
    position: relative;
    transition: all 200ms ease-in-out;
  }
  #menu .botao:hover {
    border-radius: 20px 0 0 20px;
  }
  #menu .botao:hover::after {
    right: 0;
  }
  #menu .botao:hover .seta {
    opacity: 0;
  }
  #menu .botao .seta {
    opacity: 0;
  }
  #menu .botao::after {
    content: '';
    width: 0;
  }
  #menu .seta {
    background: no-repeat center
      url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath fill='%2302527E' d='M24 30.75 12 18.75 14.15 16.6 24 26.5 33.85 16.65 36 18.8Z'/%3E%3C/svg%3E") !important;
    border: 0 !important;
    width: 22px !important;
    height: 22px !important;
  }
  #menu .logo,
  #menu .seta,
  #menu .texto,
  #menu .botao {
    z-index: 3;
    transition: 0.5s;
  }
  #menu > * {
    white-space: nowrap;
  }
  #menu .seta:hover {
    transform: rotate(-180deg);
  }
  .sub .itens {
    position: fixed !important;
    top: 20px !important;
    right: 0;
    margin: 0 5vw !important;
    min-width: 90% !important;
    padding-top: 15vw !important;
    z-index: 0 !important;
  }
  .item,
  .texto {
    font-size: 2.34375vw !important;
    z-index: 2;
  }
  .item .itens.aberto {
    left: 0 !important;
  }
  .item .itens.aberto {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 35vw;
    animation: fade 0.2s linear forwards !important;
    box-shadow: 0px 2px 0px #00000054;
    z-index: 2;
  }
  .item .itens.aberto .item {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    margin: 0 auto;
  }
}

@keyframes submenu {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media screen and (min-width: 780px) {
  .mobileMenu {
    display: none;
  }
}

@media screen and (max-width: 780px) {
  #menu {
    justify-content: space-between;
    box-shadow: 0px 2px 0px #00000054;
    border-radius: 50px;
    padding: 2vw 4vw;
    z-index: 3;
    font-size: 16px !important;
  }
  #menu .texto {
    font-size: 16px !important;
  }
  #menu .item:nth-child(1) {
    color: #02527e !important;
    border-color: #00273d;
  }
  #menu .item:not(.item:nth-child(1)) {
    display: none;
  }
  #menu .item {
    width: 100%;
  }
  #menu > .logo {
    width: 56px !important;
    height: 20px !important;
  }
}

.hero-blog {
  background: url('./res/img/bh-head-blog.svg');
  background-size: cover;
  color: white;
  position: relative;
  display: flex;
  gap: 5vw;
  padding: 25vh 15vw 15vw 22vw;
}

@media screen and (max-width: 900px) {
  .hero-blog {
    flex-wrap: wrap;
    padding: 25vh 5vw;
    align-items: flex-end;
    background-position: 25%;
  }

  .hero-blog .item {
    width: 95vw !important;
  }

  .hero-blog .item span {
    width: 90vw;
  }

  .hero-blog .item:nth-child(1) {
    justify-content: center;
    align-items: center;
    gap: 25px !important;
  }

  .hero-blog .item:nth-child(2) {
    order: -1;
  }
}

.hero-blog .item {
  width: 30vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 588px;
}

.hero-blog .item {
  font: normal normal 600 16px Maven Pro !important;
}

.hero-blog .item > a {
  box-shadow: 0px 0px 3px #00000047;
  border: 3px solid #ffffff;
  border-radius: 28px;
  background: transparent;
  padding: 1em 4em;
  text-decoration: none;
  color: white;
}

.hero-blog .item:nth-child(1) {
  gap: 2vw;
}

.hero-blog .item:nth-child(2) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.section-grid-blog {
  padding: 0 0 10vw 0;
}

.section-grid-blog h2 {
  display: grid;
  place-items: center;
}

.grid-blog {
  gap: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.grid-blog h2 {
  color: #00263b;
}

.grid-blog .grid-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #00263b;
  gap: 5px;
  transition: 200ms;
}

.grid-blog .grid-item > * {
  user-select: none;
}

.grid-blog .grid-item:hover {
  transform: scale(1.2);
}

.grid-blog .grid-item .img {
  border-radius: 100%;
  width: 80px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blog-flex {
  display: flex;
  flex-direction: row;
  gap: 4.5vw;
  padding: 0 calc(22vw - 5vw);
}

@media screen and (max-width: 980px) {
  .blog-flex {
    display: flex;
    flex-direction: column;
    gap: 4.5vw;
    padding: 0 calc(2vw);
  }
}

.blog-flex .left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  width: 100%;
}

.blog-flex .left .card {
  width: 40vw;
  aspect-ratio: 16/4;
  background-color: #fff;
  border-radius: 41px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.4);
  padding: 2vw;
  text-decoration: none;
  display: flex;
  /* flex-wrap: wrap; */
  gap: 40px;
  color: #00263b;
}

@media screen and (max-width: 900px) {
  .blog-flex .left .card {
    width: 85vw;
    align-items: center;
    padding: 8vw 2vw;
    flex-wrap: wrap;
    margin: auto;
  }

  .blog-flex .left .card .content,
  .img-card {
    width: 100% !important;
    justify-content: center;
  }

  .blog-flex .left .card .content,
  h3,
  span {
    width: 75%;
    justify-content: center;
  }
}

.blog-flex .left .card .img-card {
  width: 219px;
  height: 231px;
  object-fit: cover;
  position: relative;
}

.blog-flex .left .card .content {
  display: flex;
  flex-direction: column;
  /* gap: 22.5px; */
  width: 30vw;
}

@media screen and (max-width: 980px) {
  .blog-flex .left .card .content {
    padding: 4vw;
  }

  .blog-flex .left .card .content h3,
  span {
    width: 100%;
  }

  .sidebar {
    display: none;
  }
}

.sidebar h3 {
  margin: 2.2em 0;
}

.sidebar > *:not(.fist) {
  padding: 0 2vw;
}

.sidebar .fist {
  background: #f2273b 0% 0% no-repeat padding-box;
  border-radius: 32px;
  opacity: 1;
  padding: 30px 30px 60px;
  display: grid;
  place-items: center;
  font: normal normal normal 16px/24px Maven Pro;
  letter-spacing: 0.18px;
  color: white;
}

.searchbar {
  background: #ffffff url('./res/img/search.svg') no-repeat;
  background-position: 92%;
  box-shadow: 0px 3px 6px #00000036;
  border-radius: 24px;
  padding: 11px 63px 11px 16px;
  border: none;
  position: relative;
}

.searchbar::placeholder {
  color: #a7a7a7;
  font: normal normal normal 13px/25px Maven Pro;
}

.sidebar h3:not(.fist h3) {
  color: #02527e;
}

.sidebar .temas {
  display: block;
}

.sidebar .temas .conteudo {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 9px;
  color: #1e1e1e;
}

.sidebar .temas .conteudo .tema {
  background: #02527e 0% 0% no-repeat padding-box;
  border-radius: 28px;
  padding: 7px 25px;
  color: white;
  text-decoration: none;
}

.artigo-sidebar {
  background: transparent;
  display: flex;
  flex-direction: column;
}

.articles a {
  margin: 2vw 0;
  text-decoration: none;
  color:#02527e;
}

.articles a::first-letter {
  text-decoration: underline;
}

.articles .conteudo:nth-last-child(1) {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.card .content .botao {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  margin: 1vw 0;
  padding: 8px 22px 9px 37px;
  max-width: 130px;
  border-radius: 30px;
  position: relative;
  transition: all 200ms ease-in-out;
  white-space: nowrap;
  background-color: #02527e;
  border: none;
}

.card .content .botao:hover {
  border-radius: 30px 0 0 30px;
}

.card .content .botao:hover::after {
  right: -32px;
}

.card .content .botao:hover .seta {
  opacity: 1;
}

.card .content .botao .seta {
  opacity: 0;
  position: absolute;
  transition: all 200ms ease-in-out;
  width: 12px;
  right: -12px;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.card .content .botao::after {
  content: '';
  transition: all 200ms ease-in-out;
  width: 34px;
  height: 100%;
  position: absolute;
  background-color: #02527e;
  border-radius: 0 30px 30px 0;
  top: 0;
  right: 0;
}

.categoria {
  width: 100%;
}

.categoria .title {
  display: flex;
  align-items: center;
  gap: 22px;
}

.categoria .title a {
  font: normal normal 600 14px/14px Maven Pro;
  letter-spacing: 0px;
  color: #5d5d5d;
  text-decoration: none;
  white-space: nowrap;
}

.categoria .cards {
  display: flex;
  flex-direction: row;
  gap: 22px;
}

.categoria .cards .cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border-radius: 16px;
  padding: 12px;
  background: #f3f9ff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000066;
  transition: 1s;
}

.categoria .cards .cat-card:hover {
  transform: translateY(-5px);
}

h5 {
  color: #00263b;
}

@media screen and (max-width: 900px) {
  .categoria > .cat-card {
    scroll-snap-type: x mandatory;

    align-items: flex-end;
  }

  .categoria .cards .cat-card {
    max-width: calc(223px - 2vw);
    scroll-snap-align: start !important;
  }
}

.categoria .cards .cat-card {
  max-width: calc(223px - 2vw);
}

.categoria .cards .cat-card:nth-child(2) {
  max-width: calc(266px - 3vw);
}

.categoria .cards .cat-card img {
  width: 189px;
  height: 78px;
  object-fit: cover;
  border-radius: 16px;
}

.categoria .cards .cat-card span {
  padding: 5px;
  color: #000000;
}

.passos {
  background-image: url('res/img/UNI.png');
  background-size: 100% auto;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: -20.83333vw;
}

.texto > * {
  color: black !important;
}

.passos .conteudo {
  width: 56.77083vw;
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding-top: 6.77083vw;
  padding-bottom: 8.33333vw;
  flex-wrap: wrap;
}

.passos .conteudo .passo {
  margin-bottom: 4.16667vw;
  width: 15.625vw;
  transition: 1s;
}

.passos .conteudo .passo:hover {
  transform: translateY(-5px);
}

.passos .conteudo .passo .cover {
  border-radius: 1.30208vw;
  margin-bottom: 1.04167vw;
  width: 100%;
}

.passos .conteudo .passo .texto {
  color: #fff;
  font-size: 0.98958vw;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  padding: 0 0.78125vw;
}

@media screen and (max-width: 780px) {
  .passos {
    background-image: url('../img/UNI.png');
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
    margin: 10vw auto 0 auto;
  }

  .passos .conteudo,
  .categoria .cards {
    width: auto;
    padding: 5vw 0;
    margin: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 17.36em;
    grid-gap: 20px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .passos .conteudo::-webkit-scrollbar,
  .categoria .cards::-webkit-scrollbar {
    display: none;
  }

  .passos .conteudo img:not(.cover) {
    width: 120px;
  }

  .passos .conteudo .none-780 {
    display: none;
  }

  .passos .conteudo .passo {
    display: grid;
    scroll-snap-align: start;
    margin-bottom: 4.16667vw;
    width: 100%;
    z-index: 2;
  }

  .passos .conteudo .passo > * {
    align-items: center;
  }

  .passos .conteudo .passo .texto {
    justify-content: flex-start;
  }

  .passos .conteudo .passo .cover {
    border-radius: 1.30208vw;
    margin-bottom: 1.04167vw;
    width: 100%;
    aspect-ratio: 1;
  }

  .passos .conteudo .passo .texto,
  .passos .conteudo .passo span {
    color: #fff;
    font-size: 3.38542vw;
    font-weight: 600;
    display: flex;
    justify-content: space-evenly;
    padding: 0 0.78125vw;
    gap: 50px;
  }
}

footer .rodape {
  background-color: #f2273b;
  border-radius: 6.77083vw 6.77083vw 0 0;
  margin: auto;
  width: 66.30208vw;
  margin-top: 15.625vw;
  padding: 4.16667vw 7.29167vw 1.5625vw;
}

footer .rodape .meio-mobile {
  display: none;
}

footer .rodape .topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .rodape .topo .logo {
  flex-shrink: 0;
  width: 10.41667vw;
}

footer .rodape .topo .redes {
  margin-top: 1.04167vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .rodape .topo .redes .link {
  text-decoration: none;
}

footer .rodape .topo .redes .link img {
  height: 1.5625vw;
}

footer .rodape .topo span {
  font-size: 0.83333vw;
  display: block;
  font-weight: 400;
  color: white;
  margin-bottom: 0.52083vw;
}

footer .rodape .topo strong {
  font-size: 0.83333vw;
  font-weight: 600;
  color: white;
  margin-bottom: 0.52083vw;
}

footer .rodape .topo .direita {
  width: 13.02083vw;
}

footer .rodape p {
  margin: 0;
  font-size: 0.83333vw;
  color: white;
  text-align: center;
  margin-top: 3.125vw;
}

.meio-mobile {
  display: flex;
}

@media screen and (max-width: 780px) {
  .rodape {
    border-radius: 6.77083vw 6.77083vw 0 0;
    margin: auto;
    min-width: 99vw;
    margin-top: 15.625vw;
    padding: 2vw !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .rodape .topo {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: normal;
    gap: 20px;
  }

  .rodape .topo .meio-mobile {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.5em;
    max-width: 290px;
  }

  .rodape .topo .meio-mobile .redes {
    padding: 2vh 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 28px !important;
  }

  .rodape .topo .meio-mobile span:nth-child(3) {
    padding: 2vh 0;
  }

  .rodape .topo .logo {
    width: 200px !important;
    display: block;
    align-self: auto;
    order: 0;
  }

  .rodape .topo .logo > * {
    margin: 0 auto;
  }

  .rodape .topo .meio {
    display: none;
  }

  .rodape .topo .redes {
    margin-top: 1.04167vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .rodape .topo .redes .link {
    text-decoration: none;
  }

  .rodape .topo .redes .link img {
    height: 5.20833vw !important;
  }

  .rodape .topo span {
    font-size: 15px !important;
    display: block;
    font-weight: 400;
    color: #303030;
    margin-bottom: 0.52083vw;
  }

  .rodape .topo strong {
    font-size: 16px !important;
    font-weight: 600;
    color: #303030;
    margin-bottom: 0.52083vw;
  }

  .rodape .topo .direita {
    display: none;
  }

  .rodape p {
    margin: 0;
    font-size: 12px !important;
    line-height: 1.5em;
    letter-spacing: 0.07px;
    color: #303030;
    text-align: center;
    padding: 2vw 4vw;
    margin-top: 3.125vw;
  }
}

/* interna */

#interna .blog-flex {
  margin: 15vw 0;
}

#interna .artigo h1 {
  font: normal normal bold 40px/35px Maven Pro;
  letter-spacing: 0.64px;
  color: #1e1e1e;
}

#interna .artigo span {
  font: normal normal normal 21px/32px Maven Pro;
}

#interna .artigo figure {
  width: 100%;
  margin: 40px 0;
}

#interna .artigo figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}

#interna .artigo p {
  text-align: left;
  font: normal normal normal 22px/36px Maven Pro;
  letter-spacing: 0px;
  color: #1e1e1e;
}

#interna .artigo h3 {
  font: normal normal bold 26px/35px Maven Pro;
  letter-spacing: 0.42px;
  color: #02527e;
}

#interna .avaliacao {
  width: 100%;
}

#interna .avaliacao span {
  display: grid;
  place-items: center;
  padding-bottom: 20px;
}

#interna .avaliacao .avalia {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#interna .avaliacao h2 {
  display: grid;
  place-items: center;
  font: normal normal bold 25px/30px Maven Pro;
  letter-spacing: 0px;
  color: #02527e;
  padding: 3vw 0;
}
#interna .icon {
  cursor: pointer;
  border: none;
  background: transparent;
}

#interna form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

#interna .artigo form input {
  border: 1px solid #02527e;
  border-radius: 50px;
  padding: 26px 26px;
}

#interna .artigo form input:nth-child(3) {
  height: 209px;
  border-radius: 20px;
}

#interna .artigo form button {
  background: #02527e 0% 0% no-repeat padding-box;
  border-radius: 28px;
  border: none;
  padding: 16px 28px;
  color: white;
  max-width: 242px;
  cursor: pointer;
}

#interna .container {
  display: flex;
  justify-content: center;
}

#interna .title {
  margin-left: 23%;
}


.sidebar {
  width: 356px;
}