html {
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 0.8em;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  height: 100vh;
  overflow-x: hidden;
}
ul {
  margin: 0;
  padding: 20px;
  list-style: none;
}
blockquote,
dd,
h1,
h2,
h3,
h4,
p,
ul {
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 4px;
}
a {
  text-decoration: none;
  color: inherit;
  display: block;
}
h1 {
  position: relative;
}
.container {
  box-sizing: border-box;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.titulo {
  margin-bottom: 40px;
}
.ponto {
  color: var(--cor-p1);
}
.intro h2 {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 15px;
}
.intro h2::before {
  content: "";
  display: block;
  height: 16px;
  width: 12px;
  background: var(--cor-12);
  transition: 0.3s;
  position: absolute;
  left: -20px;
  background: linear-gradient(180deg, #ffeb00 48%, #ffd934 100%);
}
.introducao-conteudo h2 {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 15px;
}
.introducao-conteudo h2::before {
  content: "";
  display: block;
  height: 16px;
  width: 12px;
  background: var(--cor-12);
  transition: 0.3s;
  position: absolute;
  left: -20px;
  background: linear-gradient(180deg, #ffeb00 48%, #ffd934 100%);
}
hr {
  background-color: var(--cor-3);
}
@media (max-width: 200px) {
  .introducao-conteudo h2::before {
    display: none;
  }
}
.header-menu {
  display: flex;
  justify-content: end;
  gap: 20px;
  padding-top: 20px;
  flex-wrap: wrap;
}
.header-menu a {
  display: inline-block;
  padding: 16px 0;
  position: relative;
}
.header-menu a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--cor-12);
  transition: 0.3s;
  position: absolute;
  bottom: 5px;
}
.header-menu a:hover::after {
  width: 100%;
}
@media (max-width: 600px) {
  .header-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  .header-menu a {
    background-color: #111827;
    color: var(--cor-0);
    border-radius: 4px;
    padding: 12px 16px;
  }
  .header-menu a::after {
    display: none;
  }
}
.footer-bg {
  background-color: var(--cor-13);
}
.footer {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: 80px;
}
.footer-conteudo {
  margin-top: 20px;
}
.footer-conteudo a:hover {
  color: var(--cor-6);
}
.footer p:last-child {
  margin-top: 20px;
}
.modal-container {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal {
  background: #fff;
  width: 50%;
  min-width: 300px;
  padding: 10px;
  border: 10px solid rgba(17, 24, 39, 0.8);
  box-shadow: 0 0 0 10px #fff;
  position: relative;
}
@keyframes modal {
  from {
    opacity: 0;
    transform: translate3d(0, -60px 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0 0);
  }
}
.mostrar .modal {
  animation: modal 0.3s;
}
.modal-container.mostrar {
  display: flex;
}
.fechar {
  top: -30px;
  right: -30px;
  font-size: 1.2rem;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 30%;
  border: 4px solid #fff;
  background: #111827;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
}
.modal-certificados {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  max-height: 100%;
  overflow-y: scroll;
  position: relative;
  height: 80vh;
  object-fit: cover;
}
.modal-certificados div p {
  text-align: center;
  font-size: 1.125rem;
}
.zoom {
  width: 100%;
}
@media (max-width: 800px) {
  .fechar {
    position: fixed;
    top: 100px;
    right: 9px;
  }
  .modal {
    height: 65vh;
    max-height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}
:root {
  --cor-0: #ffffff;
  --cor-1: #f7f7f7;
  --cor-2: #ededed;
  --cor-3: #dedede;
  --cor-4: #cccccc;
  --cor-5: #b2b2b2;
  --cor-6: #9c9c9c;
  --cor-7: #717171;
  --cor-8: #595959;
  --cor-9: #404040;
  --cor-10: #2e2e2e;
  --cor-11: #111111;
  --cor-12: #000000;
  --cor-13: #111827;
  --cor-p1: #ffbb00;
  --cor-p2: #e4a30b;
  --cor-p3: #a66f00;
  --cor-p4: #664400;
  --cor-p5: #332200;
}
.cor-0 {
  color: var(--cor-0);
}
.cor-1 {
  color: var(--cor-1);
}
.cor-2 {
  color: var(--cor-2);
}
.cor-3 {
  color: var(--cor-3);
}
.cor-4 {
  color: var(--cor-4);
}
.cor-5 {
  color: var(--cor-5);
}
.cor-6 {
  color: var(--cor-6);
}
.cor-7 {
  color: var(--cor-7);
}
.cor-8 {
  color: var(--cor-8);
}
.cor-9 {
  color: var(--cor-9);
}
.cor-10 {
  color: var(--cor-10);
}
.cor-11 {
  color: var(--cor-11);
}
.cor-12 {
  color: var(--cor-12);
}
.cor-13 {
  color: var(--cor-13);
}
.cor-p1 {
  color: var(--cor-p1);
}
.cor-p2 {
  color: var(--cor-p2);
}
.cor-p3 {
  color: var(--cor-p3);
}
.cor-p4 {
  color: var(--cor-p4);
}
.cor-p5 {
  color: var(--cor-p5);
}
.font-1-xs {
  font: 400 0.75rem/1.35 Poppins, sans-serif;
}
.font-2-xs {
  font: 400 0.875rem/1.35 Roboto, sans-serif;
}
.font-2-xs {
  font: 400 0.875rem/1.35 Roboto, sans-serif;
}
.font-1-s {
  font: 400 1rem/1.5 Poppins, sans-serif;
}
.font-2-s {
  font: 400 1rem/1.5 Roboto, sans-serif;
}
.font-1-m,
.font-1-m-b {
  font: 400 1.125rem/1.35 Poppins, sans-serif;
}
.font-1-m-b {
  font-weight: 600;
}
.font-2-m-b {
  font: 500 1.125rem/1.35 Roboto, sans-serif;
}
.font-2-m {
  font: 400 1.125rem/1.35 Roboto, sans-serif;
}
.font-1-l {
  font: 400 1.5rem/1.5 Poppins, sans-serif;
}
.font-2-l,
.font-2-l-b {
  font: 400 1.5rem/1.5 Roboto, sans-serif;
}
.font-2-l-b {
  font-weight: 500;
  letter-spacing: 0.015;
  text-transform: uppercase;
}
.font-1-xl {
  font: 600 2rem/1.25 Poppins, sans-serif;
}
.font-2-xl {
  font: 500 2rem/1.25 Roboto, sans-serif;
}
.font-1-xxl {
  font: 600 4rem/1.125 Poppins, sans-serif;
}
.font-1-mml {
  font: 600 3.5rem/1.125 Poppins, sans-serif;
}
@media (max-width: 1200px) {
  .font-1-xxl {
    font-size: 4rem;
  }
  .font-2-l {
    font-size: 1.125rem;
  }
}
@media (max-width: 800px) {
  .font-1-xxl {
    font-size: 2rem;
  }
  .font-1-xl,
  .font-2-xl {
    font-size: 1.5rem;
  }
  .font-1-mml {
    font-size: 2rem;
  }
}
.introducao {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  padding-top: 120px;
}
.intro p {
  margin-top: 40px;
  max-width: 60ch;
}
.introducao img {
  border-radius: 50%;
}
.links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.button-40 {
  background-color: var(--cor-13);
  border: 1px solid transparent;
  border-radius: 0.5rem;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
  font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, system-ui,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding: 0.75rem 1.2rem;
  text-align: center;
  width: auto;
}
.card-button {
  position: absolute;
  bottom: -2rem;
  left: 7.5rem;
}
@media (max-width: 950px) {
  .card-button {
    position: initial;
    place-self: end center;
    margin-bottom: 2rem;
  }
}
.button-40:hover {
  background-color: rgba(17, 24, 39, 0.8);
}
.button-40:focus {
  box-shadow: none;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
@media (min-width: 768px) {
  .button-40 {
    padding: 0.75rem 1.5rem;
  }
}
@media (max-width: 800px) {
  .introducao {
    grid-template-columns: 1fr;
  }
  .introducao .img {
    margin-top: 2.5rem;
  }
  .introducao img {
    width: 80%;
    margin: 0 auto;
  }
}
.card {
  padding: 40px 20px;
  margin-top: 200px;
}
.titulo-formacao {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  justify-content: center;
  align-items: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6rem;
  gap: 0 2rem;
}
.card-item {
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  grid-template-rows: 4;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.75rem;
  -webkit-box-shadow: 1px 2px 10px -4px #000;
  box-shadow: 1px 2px 10px -4px #000;
}
.card-item img {
  position: relative;
  max-width: 300px;
  place-self: start center;
}
.card-item:last-child {
  display: block;
}
.descricao {
  letter-spacing: 0.075rem;
  max-width: 35ch;
}
@media (max-width: 800px) {
  .card {
    margin-top: 100px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
  .card-item {
    overflow-x: hidden;
  }
  .card-item:last-child {
    display: inherit;
  }
  .descricao {
    justify-content: center;
    align-items: center;
    max-width: 60ch;
  }
}
.projetos {
  margin-top: 10rem;
}
.projetosCard {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2rem;
}
.projetos-item img {
  width: 100%;
  height: 40vh;
  object-fit: cover;
}
.projetos-informacao h3 {
  margin-top: 3rem;
}
.projetos-informacao p {
  margin-top: 1.5rem;
}
.tech {
  margin-top: 1rem;
}
.tech a,
.tech span {
  padding: 0.75rem 0.75rem;
  color: #fff;
  border-radius: 1rem;
  background-color: var(--cor-13);
}
.tech a {
  display: inline-block;
  position: relative;
  right: -5rem;
}
hr {
  display: none;
}
@media (max-width: 800px) {
  .projetosCard {
    grid-template-columns: 1fr;
  }
  .projetos-item {
    margin-top: 2rem;
  }
  .projetos-informacao h3 {
    margin-top: 1rem;
  }
  .projetos-item img {
    grid-row: 5;
  }
  hr {
    display: block;
    width: 100%;
    height: 0.015rem;
    margin-top: 2.25rem;
    background-color: var(--cor-13);
  }
}
.fadeInDown {
  transform: translate3d(0, -20px, 0);
}
.fadeInUp {
  transform: translate3d(0, 20px, 0);
}
.fadeInRight {
  transform: translate3d(20px, 0, 0);
}
.fadeInLeft {
  transform: translate3d(-20px, 0, 0);
}
[data-anime] {
  opacity: 0;
}
.anime {
  opacity: 1;
  transform: none;
  transition: transform 0.8s, opacity 0.8s;
}
