@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');


* {
  scrollbar-width: auto;
  scrollbar-color: gray transparent;
  transition: 0.3s;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 0.5rem;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: gray;
  border-radius: 10px;
  border: 3px solid transparent;
}

/**
    Customizações de sistema
  */
.data__table {
  border: 1px solid #8080804e;
}

.data__table .v-data-table-header {
  background-color: #8080804e;
}

.data__table .v-data-table-header>tr>th>span {
  font-weight: bolder;
  font-size: 0.9rem;
  color: black;
}

#contato {
  margin-bottom: 3rem;
}

#sobre,
#cliente {
  margin-top: 3rem;
}

#sobre {
  padding-top: 0.2rem;
  margin-top: 5rem;
}

#servico {
  padding-top: 0.1rem;
}

.clickable {
  cursor: pointer;
}


.link {
  color: var(--White, #FFF);
}

.link:hover {
  color: var(--White, #FFF);
  text-decoration: none;
}

.hide-self {
  display: none;
}

.is-invalid {
  background-color: red;
  color: #fff;
}

#app {
  font-size: 16px;
  /* font-family: Roboto, sans-serif; */
  font-family: 'Calibri', 'Libre Franklin';
  font-style: normal;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: black;
  box-sizing: border-box;
  position: relative;
  scroll-behavior: smooth;
  /* overflow-x: clip; */
  overflow-x: hidden;
  background-color: black;
  background-image: url('./../imgs/bg.png');
  color: white;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  max-width: 1140px;
  /* max-width: 1250px; */
  margin-left: auto;
  margin-right: auto;
}

.titulo {
  margin-top: 5rem;
  text-align: center;
}

.titulo h1 {
  color: var(--White, #FFF);
  text-align: center;
  font-family: Roboto;
  font-size: 55px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.3rem;
}

.titulo img {
  margin-bottom: 2rem;
}

@media (min-width: 1904px) {
  .container {
    max-width: 1185px !important;
  }
}

.row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4vh;
}

.col {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.5rem 0.2rem;

}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 600px) {
  .row {
    flex-direction: column;
  }

  #servico,
  #sobre,
  #contato {
    padding-top: 3rem;
  }
}