@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

a {
  color: white;
  text-decoration: none;
}

.nav-menu {
  background-color: rgba(5, 9, 10, 0.9);
  border-bottom: 1px solid #203540;
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  height: 50px;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: white;
  font-weight: 500;
}

.nav-links a:hover {
  color: #FF4343;
  animation: zoom-animation 0.8s forwards;
}

.nav-btn {
  background-color: #FF4343;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
}

.nav-logo {
  display: flex;
  justify-content: center;
}

.nav-btn:hover {
  transition: 2s;
  animation: zoom-animation 0.8s infinite alternate;
  background-color: white;
}
.nav-btn:hover a {
  color: #FF4343;
}

.menu-btn {
  display: none;
  width: 26px;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 5px;
  margin-bottom: 6px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-icon span:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .nav-logo {
    margin-left: 20px;
  }
  .menu-btn {
    display: flex;
    margin-right: 20px;
  }
  .nav-menu {
    padding: 0;
  }
  .nav-links {
    position: fixed;
    top: 50px;
    display: none;
    width: 100%;
    height: calc(100vh - 50px);
    background-color: #05090a;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 70px;
    z-index: 999;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-btn {
    display: none;
  }
  .menu-icon.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-icon.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-icon.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
@keyframes zoom-animation {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-title {
  font-weight: bolder;
  font-size: 28pt;
  width: 100%;
  display: flex;
  color: #FF4343;
  border-bottom: 1px solid #FF4343;
  margin-bottom: 30px;
  margin-top: 60px;
  padding: 5px 40px;
}

.section-subtitle {
  color: white;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 18pt;
}

.txt-title {
  text-align: justify;
  color: white;
  font-size: 12pt;
}

.txt-normal {
  text-align: justify;
  color: white;
  font-size: 12pt;
}

.icons {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.hero {
  background-color: #05090A;
}

.hero-container {
  margin-top: 50px;
  height: calc(100vh - 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-container .spacer {
  flex: 1;
}

.hero-local {
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: row;
  gap: 4px;
  font-size: 12pt;
}

.hero-local:hover {
  color: white;
}

.hero-call {
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.hero-title {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-weight: bold;
  gap: 10px;
}

.hero-title span {
  color: #FF4343;
}

.hero-title h1 {
  font-size: 36pt;
  font-weight: bold;
}

.hero-title h2 {
  font-size: 20pt;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.hero-btn-contact {
  background-color: #FF4343;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
}

.hero-btn-contact:hover {
  background-color: white;
  color: #FF4343;
}

.hero-btn-projects {
  padding: 10px;
}

.hero-btn-projects:hover {
  color: #FF4343;
}

.hero-stack {
  margin-bottom: 80px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.3);
}

.hero-stack h3 {
  font-weight: normal;
  font-size: 12pt;
}

.hero-stack-items {
  display: flex;
  gap: 40px;
  row-gap: 20px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.hero-stack-items h2 {
  font-size: 18px;
}
.hero-stack-items .items {
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: default;
}
.hero-stack-items .items i {
  font-size: 24px;
}

.hero-stack .items:hover {
  animation: zoom-animation 0.7s forwards;
  color: white;
}

.about {
  background-color: #05090A;
}

.about-container {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-title {
  justify-content: right;
}

.about-image {
  height: 350px;
}

.about-content {
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: right;
}

.divisor {
  display: flex;
  flex-direction: row; /* Alinha os itens em linha */
  align-items: center; /* Centraliza verticalmente a barra e o ponto */
  width: 100%; /* Garante que o divisor ocupe a largura total */
  gap: 10px; /* Espaçamento entre as barras e o ponto */
}
.divisor .bar {
  flex: 1; /* Faz a barra crescer e ocupar o espaço disponível */
  height: 1px;
  border-radius: 5px; /* Espessura da linha */
  background-color: #FF4343; /* Cor da linha */
}
.divisor .dot {
  width: 5px;
  height: 5px;
  background-color: #FF4343;
  border-radius: 50%; /* Faz o div ser um círculo */
  flex-shrink: 0; /* Impede que o ponto seja esmagado pelas barras */
}

.about-services {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-items {
  width: 100%;
  gap: 24px;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-evenly;
  flex-wrap: wrap;
  row-gap: 12px;
}
.about-items .items {
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}

.about-description {
  max-width: 600px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-container {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-title {
  justify-content: center;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 40px;
  gap: 32px;
  align-items: center;
}

.contact-items {
  display: flex;
  gap: 20px;
}

.contact-items .items {
  gap: 10px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  border: 1px solid white;
  padding: 12px;
  border-radius: 5px;
}

.contact-items .items:hover {
  border-color: #FF4343;
}

.contact-social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-social-media-btn {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.contact-social-media .items :hover {
  animation: zoom-animation 0.5s forwards;
  color: #FF4343;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .section-title {
    font-weight: bolder;
    font-size: 20pt;
    width: 100%;
    display: flex;
    color: #FF4343;
    border-bottom: 1px solid #FF4343;
    margin-bottom: 30px;
  }
  .section-subtitle {
    color: white;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 16pt;
  }
  .txt-title {
    text-align: justify;
    font-size: 12pt;
  }
  .txt-normal {
    text-align: justify;
    font-size: 12pt;
  }
  .icons {
    font-size: 28px;
    font-weight: normal;
  }
  .hero-container {
    min-height: calc(100vh - 50px);
  }
  .hero-title span {
    display: block;
  }
  .hero-title h1 {
    font-size: 26pt;
  }
  .hero-title h2 {
    font-size: 12pt;
  }
  .hero-btn-contact, .hero-btn-projects {
    font-size: 12pt;
  }
  .hero-stack {
    margin: 0;
    flex: 2;
    justify-content: center;
  }
  .hero-stack-items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: end;
  }
  .about-title {
    justify-content: center;
  }
  .about-container {
    flex-direction: column;
    min-height: 100vh;
  }
  .about-image {
    height: 200px;
  }
  .about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .about-description p, .about-description h3 {
    text-align: center;
  }
  .contact {
    min-height: 80vh;
  }
  .contact-description {
    text-align: center;
  }
  .contact-items {
    flex-wrap: wrap;
    justify-content: center;
  }
  .contact-items .items {
    padding: 8px;
  }
}
@keyframes zoom-animation {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.footer {
  padding: 20px 0;
  border-top: 1px solid #203540;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-text {
  display: flex;
  gap: 10px;
  justify-content: center;
  color: white;
  font-size: 10pt;
}

.footer-logo {
  height: 18px;
}

@media screen and (max-width: 768px) {
  .footer-info p {
    text-align: center;
  }
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: #05090A;
  overflow-x: hidden;
}

header, main, section {
  overflow-x: hidden;
}

button {
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

html {
  scroll-behavior: smooth;
}/*# sourceMappingURL=style.css.map */