@font-face {
  font-family: "Montserrat";
  src: url("./assets/Montserrat/Montserrat-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("./assets/Montserrat/Montserrat-Italic-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
}

* {
  box-sizing: border-box;
  color: #e0e0e0;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #121212;
  color: #e0e0e0;
}

h1 {
  margin: 0;
}

h2 {
  font-weight: 300;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: linear-gradient(
    181deg,
    #1f1f1f 50%,
    rgb(3 38 2 / 9%) 80%
  ) !important;
}

header .left {
  position: absolute;
}

header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

header ul {
  display: flex;
  gap: 16px;
}

header ul li {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}

header ul li a {
  text-decoration: none;
}

.section-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("assets/bg.png");
  background-size: cover;
  background-position: fixed;
  background-repeat: no-repeat;
  background-color: rgba(18, 18, 18, 0.7);
  background-blend-mode: overlay;
  color: #e0e0e0;
  position: relative;
}

.section-page > div {
  position: relative;
  z-index: 1;
}

.section-page::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #00000073;
  z-index: 0;
}

.main-color {
  background-color: #1f1f1f;
}

.img-container {
  overflow: hidden;
  border-radius: 400px;
  border: 3px solid #00ffae;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  background-color: #00ffae;
  color: #121212;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 174, 0.3);
}

.btn-whatsapp:hover {
  background-color: #00e29c;
}

.pv-16 {
  padding-block: 16px;
}
.pv-24 {
  padding-block: 24px;
}
.pv-32 {
  padding-block: 32px;
}
.ph-16 {
  padding-inline: 16px;
}
.ph-24 {
  padding-inline: 24px;
}
.ph-32 {
  padding-inline: 32px;
}
.pt-0 {
  padding-top: 0;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.f-wrap {
  flex-wrap: wrap-reverse;
}

.column {
  flex-direction: column;
}

.j-center {
  justify-content: center;
}
.a-center {
  align-items: center;
}
.g-8 {
  gap: 8px;
}
.g-32 {
  gap: 32px;
}

.servicos-detalhados {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -20vh;
  position: relative;
  z-index: 1;
}

.servico {
  background-color: #1f1f1f;
  border-left: 5px solid #00ffae;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 300px;
  box-shadow: 0 0 15px rgba(0, 255, 174, 0.2);
  transition: background-color 0.3s ease;
}

.servico h3 {
  margin-top: 0;
  color: #00ffae;
  font-weight: 700;
  margin-bottom: 1rem;
}

.servico p {
  line-height: 1.5;
  color: #ccc;
}

.titulo-verde {
  color: #00ffae;
  font-weight: 700;
}
