* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --laranja: #F27F00;
  --amarelo: #F8BB49;
  --azul-claro: #026296;
  --azul-escuro: #01304A;
  --bege: #e2d9af;
  --branco: #fff;
  --preto: #030303;
}

body,
html {
  font-family: "Montserrat", sans-serif;
  color: var(--preto);
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--branco);
}

h1,
h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: bold;
}

a {
  text-decoration: none;
}

.botao {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s ease;
  margin: 10px;
  color: var(--preto);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.21);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6.8px);
  -webkit-backdrop-filter: blur(6.8px);
}

.btn-primary:hover {
  background: linear-gradient(90deg, rgba(242, 127, 0, 0.5), rgba(226, 217, 175, 0.5));
  transition: 0.8s;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6.8px);
  -webkit-backdrop-filter: blur(6.8px);
}

.btn-secondary {
  border: 1px solid var(--preto);
  color: var(--preto);
}

.btn-secondary:hover {
  background: linear-gradient(90deg, rgba(242, 127, 0, 0.5), rgba(226, 217, 175, 0.5));
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6.8px);
  -webkit-backdrop-filter: blur(6.8px);
}

.section {
  padding: 3rem 5rem;
  text-align: center;
}

.title-section {
  font-size: 2.5rem;
  background-image: linear-gradient(90deg, var(--azul-escuro), var(--azul-claro));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-laranja {
  background-color: var(--laranja);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin: 1rem 4rem 0.5rem;
}

.bg-amarelo {
  background-color: var(--amarelo);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin: 1rem 4rem 0.5rem;
}

/* header = menu */
header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 70px;
  position: fixed;
  width: 100vw;
  z-index: 2;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6.8px);
  -webkit-backdrop-filter: blur(6.8px);
}

.logo {
  font-size: 1.2rem;
}

header ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style-type: none;
}

header li {
  display: inline;
}

header li a {
  color: #000;
}

header a:hover {
  cursor: pointer;
  color: var(--laranja);
  transition: 0.8s;
}

.btn-contato {
  color: #000;
  border-color: #000;
}

/* main */
/* Banner */
.banner {
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("/imagens/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner h1 {
  font-size: 5rem;
}
.banner .hero-pre {
  margin: 20px auto;
  font-size: 2rem;
  line-height: 1.6;
}
.banner .hero-buttons {
  margin-top: 30px;
}
.banner .hero-sub {
  margin-bottom: 5rem;
}
.banner .social-icons {
  margin-top: 40px;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.banner .social-icons img {
  background-color: #fff;
  padding: 0.1rem;
  border-radius: 100%;
  width: 50px;
  opacity: 0.7;
}
.banner .social-icons img:hover {
  background: linear-gradient(90deg, rgba(242, 127, 0, 0.9), rgba(226, 217, 175, 0.9));
  transition: 1s;
}

#projetos {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#projetos .projetos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
#projetos .projeto-card {
  border-radius: 20px;
  width: 300px;
  padding: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.21);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.8px);
  -webkit-backdrop-filter: blur(6.8px);
  border: 0.5px solid rgba(255, 255, 255, 0.57);
}
#projetos .projeto-card img {
  width: 100%;
}
#projetos .projeto-card h3 {
  color: #fff;
  margin-top: 15px;
  font-size: 1.3rem;
}
#projetos .projeto-card p {
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.4;
}
#projetos .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}
#projetos .tags span {
  background: transparent;
  border: solid 1px #fff;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}
#projetos .botoes {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#projetos .botoes a {
  color: #000;
}

.sobre {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.sobre img {
  border-radius: 20px;
  width: 20vw;
  margin: 20px;
}
.sobre .texto {
  width: 40vw;
  text-align: justify;
  max-width: 30vw;
}
.sobre article {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

@media (max-width: 768px) {
  .bg-laranja {
    margin: 1rem 1rem 0.5rem;
  }
  .bg-amarelo {
    margin: 1rem 1rem 0.5rem;
  }
}/*# sourceMappingURL=style.css.map */