@charset "UTF-8";
/**
 * Variáveis/
*/
/* Cores */
/* Gradientes */
/* Fontes */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * Font-family, font-size e color
 */
header {
  background: linear-gradient(180deg, #e8f5c8 0%, #ffffff 96.87%);
  padding: 2rem;
}
header nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
header nav .linha {
  border-top: 1px solid black;
  width: 80%;
}
header nav ul {
  display: inline-flex;
  gap: 2rem;
}
header nav ul li {
  list-style-type: none;
}
header nav ul a {
  text-decoration: none;
  color: #0c0421;
  font-weight: 500;
  transition: all 0.3s ease;
}
header nav ul a:hover {
  font-weight: 700;
}
header #home {
  margin: 0 auto;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  max-width: 1024px;
}
header #home .textos-home {
  max-width: 464px;
}
header #home .textos-home h1 {
  font-family: "Krona One", sans-serif;
  font-size: 42px;
  color: #0c0421;
  margin-bottom: 2rem;
}
header #home .textos-home h1 span {
  color: #4e75ff;
}
header #home .textos-home .btn-main {
  background: #4e75ff;
  color: #fff;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 10rem;
  border: none;
  font-size: 18px;
  transition: background 0.3s ease;
}
header #home .textos-home .btn-main:hover {
  background: #85a0ff;
}
header #home .img-home {
  max-width: 464px;
}
header #home .img-home img {
  width: 100%;
}

#nosso-espaco {
  margin: 0 auto;
  width: 80%;
}
#nosso-espaco .detalhes {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
  gap: 2rem;
  padding: 2rem 0;
}
#nosso-espaco .detalhes .imgs-espaco, #nosso-espaco .detalhes .espaco-textos {
  max-width: 500px;
}
#nosso-espaco .detalhes .espaco-textos .titulo {
  font-family: "Krona One", sans-serif;
  font-size: 32px;
  color: #4e75ff;
  font-weight: 500;
}
#nosso-espaco .detalhes .espaco-textos .infos {
  padding: 1rem 0;
}
#nosso-espaco .detalhes .espaco-textos .separador {
  width: 100%;
}
#nosso-espaco .detalhes:nth-child(2) {
  flex-direction: row-reverse;
}

#servico {
  background: linear-gradient(180deg, #e8f5c8 0%, #ffffff 96.87%);
  padding: 5rem 0;
}
#servico .cards {
  margin: 0 auto;
  width: 80%;
  display: flex;
  gap: 2rem;
}
#servico .cards .card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(202, 212, 250, 0.3) 100%);
  padding: 1rem 1.5rem;
  text-align: center;
  border: 1px solid white;
  border-radius: 3rem;
  /* Será interpretado como .card-titulo */
}
#servico .cards .card-titulo {
  font-family: "Krona One", sans-serif;
  font-size: 1.6rem;
  color: #0c0421;
}

#desconto {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  justify-content: space-between;
  padding: 3rem 0;
}
#desconto .desconto-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
#desconto .desconto-form h4 {
  font-family: "Krona One", sans-serif;
  font-size: 1.6rem;
  color: #0c0421;
}
#desconto .desconto-form p {
  font-family: "Krona One", sans-serif;
  font-size: 1.2rem;
  color: #0c0421;
}
#desconto .desconto-form .input-btn {
  width: 790px;
  height: 65px;
  border: 1px solid #4e75ff;
  border-radius: 65px;
  margin: 0 auto;
  display: inline-flex;
}
#desconto .desconto-form .input-btn input {
  font-family: "Krona One", sans-serif;
  font-size: 1.2rem;
  color: #0c0421;
  width: 513.5px;
  border: none;
  outline: none;
  margin-left: 2rem;
}
#desconto .desconto-form .input-btn button {
  font-family: "Krona One", sans-serif;
  font-size: 1.2rem;
  color: #0c0421;
  width: 276.5px;
  border-radius: 0 65px 65px 0;
  border: none;
  background-color: #4e75ff;
  color: white;
}

#contatos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 80%;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
}
#contatos .contatos-imgs {
  max-width: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-around;
}
#contatos .contatos-imgs img {
  width: 100%;
}
#contatos .contatos-imgs img:nth-child(n+2) {
  width: 48%;
}
#contatos .contatos-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  max-width: 50%;
  background: linear-gradient(180deg, #e8f5c8 0%, #ffffff 96.87%);
  height: 100%;
  padding: 2rem 3rem;
  border-radius: 2rem;
}
#contatos .contatos-form .titulo {
  font-family: "Krona One", sans-serif;
  font-size: 1.69rem;
  color: #4e75ff;
}
#contatos .contatos-form .infos, #contatos .contatos-form .inputs .form-group label {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #0c0421;
}
#contatos .contatos-form .inputs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
}
#contatos .contatos-form .inputs input, #contatos .contatos-form .inputs .btn, #contatos .contatos-form .inputs .form-group textarea {
  border-radius: 25px;
  padding: 1rem;
  border: none;
}
#contatos .contatos-form .inputs .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#contatos .contatos-form .inputs .form-group label {
  font-weight: 600;
}
#contatos .contatos-form .inputs .btn {
  background-color: #4e75ff;
  margin-top: 2rem;
  color: white;
  font-size: 1rem;
  width: 100%;
}
#contatos .contatos-form .inputs .btn:hover {
  background-color: #85a0ff;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8f5c8;
  padding: 1.5rem 0;
}/*# sourceMappingURL=styles.css.map */