* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: "Rajdhani";
}

body {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background: linear-gradient(
      160deg,
      #967755 -4.22%,
      #997a58 2.49%,
      #d8b997 9.5%,
      #cba780 20.25%,
      #a8855f 34.51%,
      #d1b493 45.81%,
      #c6a37d 50.98%,
      #b29371 76.84%,
      #b18f68 83.61%,
      #c7a785 88.57%,
      #bf9a70 93.96%,
      #a07f5b 105.68%,
      #c29b70 143.92%
    )
    fixed;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  overflow-x: hidden;
}

.float-container {
  display: flex;
}
.float {
  right: 80px;
  bottom: 180px;
  position: absolute;
  display: flex;
  width: 100px;
  height: 100px;
  background-color: #25d366;
  color: #fff;
  border-radius: 60px;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 55px;
  border: hidden;
}

.float:hover {
  width: 110px;
  height: 110px;
  right: 75px;
  bottom: 175px;
  filter: drop-shadow(0px 0px 15px #25d366);
}

/*nav bar*/

nav {
  background: #d9d9d9;
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  transition: top 0.3s;
}

div.logo {
  width: 80px;
  height: 80px;
  display: flex;
  margin: 4px 20px;
  overflow: visible;
}

nav ul {
  float: right;
  margin-right: 20px;
}

nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}

nav ul li a {
  color: #928a85;
  text-align: center;
  font-family: "Rajdhani";
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 7px 13px;
  width: 111px;
  height: 47px;
  border-radius: 9px;
  text-transform: uppercase;
}

li a.active,
li a:hover {
  background: #967755;
  transition: 0.5s;
  color: white;
}

.checkbtn {
  font-size: 30px;
  color: #967755;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
.fa-bars {
  color: #967755;
}

#check {
  display: none;
}

/*hero*/

.hero {
  width: 100%;
  height: 720px;
  display: flex;
  padding: 350px 150px 0px 150px;
  justify-content: space-between;
  overflow: hidden;
}

h1 {
  color: #121e38;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 25px 0;
}

button {
  width: 170px;
  height: 51px;
  flex-shrink: 0;
  border-radius: 9px;
  margin: 0 30px 20px 0;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  transition: 0.1s;
}

button:hover {
  transform: scale(1.1);
}

button.contato {
  background-color: #121e38;
  border: #121e38;
}

button.contato a {
  color: white;
}

button.serviços {
  color: #121e38;
  background: none;
  border: 3px solid #121e38;
}

button.serviços a {
  color: #121e38;
}
.hero-esquerda {
  width: 50%;
}
.hero-direita {
  width: 50%;
  position: absolute;
  right: 0;
  margin-bottom: 150px;
}

.hero-direita img {
  position: absolute;
  right: 150px;
  width: 35vw;
}

.retangulo-azul-hero {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #121e38;
  border-radius: 17px 0 0 17px;
  width: 540px;
  height: 345px;
  right: 0;
  top: 75px;
}

.circulos {
  display: flex;
  position: absolute;
  right: 55px;
  top: 75px;
  gap: 14px;
  flex-direction: column;
}

.ciculo {
  margin: 0;
  display: flex;
  border-radius: 100%;
  background-color: #d9d9d9;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border: none;
}

.hero .serviços a:hover,
.hero .serviços a:active,
.hero .serviços a:visited{
  text-decoration: none;
  color: #121e38;
}

.hero a:focus {
  text-decoration: none;
}

.hero .contato a:hover,
.hero .contato a:active,
.hero .contato a:visited{
  text-decoration: none;
  color: #d9d9d9;
}

.hero .ciculo .fa {
  text-decoration: none;
  color: #121e38;
}

/*serviços*/
section.serviços {
  padding: 240px 150px 0px 150px;
  height: 60vh;
  min-height: 850px;
}

.retangulo-branco-serviços {
  position: absolute;
  padding: 50px 50px 0 170px;
  left: -20px;
  background-color: #d9d9d9;
  height: 50vh;
  width: 40vw;
  min-height: 850px;
  border-radius: 17px;
}

.serviços-cards {
  display: flex;
  top: 150px;
  position: relative;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1440px;
  gap: 20px;
}

.container {
  position: relative;
  width: 300px;
  height: 311px;
  transition: 0.1s;
}

.container:hover {
  transform: scale(1.1);
}

.container:hover .flip {
  transform: rotateY(180deg);
}

.flip {
  position: absolute;
  height: 100%;
  width: 100%;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: 0.1s;
}

.front,
.back {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  justify-content: center;
  backface-visibility: hidden;
  border-radius: 17px;
}

.front {
  background-color: #121e38;
}

.front h2 {
  margin: 0;
  padding: 30px;
  color: #d9d9d9;
  text-align: center;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -0.125px;
}

.front img {
  align-self: center;
  margin: 0 0 30px 0;
}

.back {
  display: flex;
  flex-wrap: wrap;
  background-color: white;
  transform: rotateY(180deg);
}

.back h3 {
  top: 0;
  margin: 20px 0 0 0;
  color: var(--RVB1, #967755);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.125px;
}

.back p {
  margin: 0 20px 20px 20px;
  color: var(--RVB3, #b6b0ab);
  text-align: justify;
  font-family: "Rajdhani";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px; /* 147.059% */
  letter-spacing: -0.085px;
}

/*meio*/

section.meio {
  display: flex;
  height: 25vh;
  padding: 500px 150px 0px 150px;
  gap: 90px;
}

.meio h2 {
  color: #121e38;
  text-align: left;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  padding: 0;
  height: fit-content;
}

div h3 {
  position: relative;
  top: 110px;
}

h3 {
  color: #121e38;
  text-align: right;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
}

.meio-direito {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  align-items: center;
}
.meio-direito button {
  position: relative;
  top: -80px;
}

/*sobre*/

section.sobre {
  padding-top: 500px;
  display: flex;
  flex-wrap: wrap;
}

.sobre em,
a {
  color: #967755;
  font-style: normal;
  font-weight: 600;
}

.retangulo-branco-sobre {
  position: absolute;
  display: flex;
  padding: 20px 150px;
  background-color: #d9d9d9;
  width: 50vw;
  height: 50vh;
  min-height: 1000px;
  border-radius: 17px 0 0 17px;
  justify-content: right;
  overflow: hidden;
  right: 0;
}

.retangulo-branco-sobre h1 {
  text-align: right;
  overflow: hidden;
}

.container-historia {
  display: flex;
  top: 140px;
  position: relative;
}

.preencher-direita {
  width: 40vw;
}

.história {
  background-color: #121e38;
  border-radius: 17px 0 0 17px;
  display: flex;
  padding: 50px 150px 50px 50px;
  gap: 50px;
}

.sobre .dourado {
  color: #967755;
  font-size: 25px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.125px;
}

.sobre p {
  color: var(--BRANCO, #fff);
  text-align: justify;
  font-size: 20px;
  font-style: normal;
  font-weight: 200;
  line-height: 25px; /* 125% */
  letter-spacing: -0.1px;
  column-count: 2;
}

.container-ajuda {
  position: relative;
  overflow: hidden;
  top: 200px;
  display: flex;
}

.ajuda {
  background-color: #121e38;
  border-radius: 0 17px 17px 0;
  display: flex;
  padding: 50px 50px 50px 150px;
  gap: 50px;
}

.preencher-esquerda {
  width: 40vw;
}

/*form*/

section.formulario {
  display: flex;
  height: 1050px;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-top: 230px;
}

form {
  position: relative;
  background-color: #d9d9d9;
  margin: 40px;
  padding: 30px;
  border-radius: 17px;
  gap: 40px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 60vw;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container-form {
  display: flex;
  gap: 20px;
}

form h1 {
  padding: 25px 0 0 0;
  font-size: 25px;
}

form p {
  color: #121e38;
  padding: 0 0 10px 0;
}

input,
textarea {
  width: 250px;
  height: 33px;
  padding: 8px 16px;
  align-items: center;
  gap: 227px;
  border-radius: 4px;
  border: 1px solid #b6b0ab;
  background: #fff;
}

textarea {
  min-width: 520px;
  min-height: 120px;
}

form button {
  width: 170px;
  height: 51px;
  border: none;
  border-radius: 9px;
  color: white;
  background: #121e38;
  transition: 0.1s;
}

form button:hover {
  transform: scale(1.1);
}

.checkbox input {
  width: 15px;
  height: 15px;
}

.checkbox div {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 20px;
}

/*footer*/

footer {
  background-color: #d9d9d9;
  position: relative;
  top: 15vh;
  display: flex;
  height: 205px;
  width: 100%;
  overflow: hidden;
  gap: 60vw;
  padding: 43px 62px 43px 62px;
}

.contatos {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  font-size: 15px;
  font-weight: 500;
  color: #967755;
}

footer .ciculo {
  width: 30px;
  height: 30px;
  background-color: #967755;
  color: #d9d9d9;
  border: none;
  align-items: center;
  justify-content: center;
}

.container-footer {
  line-height: 15px;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
}

footer a {
  color: #d9d9d9;
}

footer a p {
  color: #967755;
}
@media (max-width: 1470px) {
  .float {
    right: 40px;
    bottom: 80px;
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .float:hover {
    width: 70px;
    height: 70px;
    right: 35px;
    bottom: 75px;
  }

  /*nav bar*/
  .checkbtn {
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
  }

  nav {
    display: block;
    height: 50px;
  }

  div.logo {
    height: 42px;
  }

  ul {
    position: fixed;
    width: 100%;
    background: #d9d9d9;
    top: 0px;
    top: -100%;
    text-align: right;
    transition: all 0.5s;
    padding: 0 0 20px 0;
  }

  nav ul li {
    display: flex;
    padding: 0px 20px;
    border-radius: 9px;
    line-height: 10px;
    justify-content: end;
  }

  nav ul li a {
    font-size: 15px;
    text-align: right;
    line-height: 12px;
    height: 27px;
  }

  #check:checked ~ ul {
    top: 50px;
  }

  /*hero*/

  .hero {
    display: block;
    padding: 50px 30px;
  }

  h1 {
    font-size: 25px;
  }

  button {
    align-items: center;
    justify-content: space-around;
  }

  button a {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .retangulo-azul-hero {
    height: 240px;
    width: 270px;
  }
  .hero-direita img {
    width: 55vw;
    right: 80px;
    top: 60px;
  }
  .circulos {
    right: 25px;
    top: 40px;
  }
  .ciculo {
    width: 35px;
    height: 35px;
  }
  .ciculo a {
    font-size: 15px;
  }

  .hero a:visited {
    text-decoration: none;
    color: #121e38;
  }

  .hero a:hover {
    text-decoration: none;
    color: #121e38;
  }

  .hero a:focus {
    text-decoration: none;
    color: #121e38;
  }

  .hero a:hover,
  .hero a:active {
    text-decoration: none;
    color: #121e38;
  }

  /*serviços*/
  .retangulo-branco-serviços {
    padding: 0 57px;
    min-height: 400px;
    height: 30vh;
  }

  section.serviços {
    padding: 30px;
    min-height: 300px;
  }

  .serviços-cards {
    height: inherit;
    padding: 0 30px;
    top: 100px;
    overflow-x: scroll;
    overflow-y: hidden;
    flex-wrap: nowrap;
    flex-direction: row;
    scroll-behavior: smooth;
    scroll-margin: 30px;
    scroll-snap-type: x mandatory;
  }

  ::-webkit-scrollbar {
    width: 10px;
  }

  .container {
    scroll-snap-align: start;
    min-width: 170px;
    height: 250px;
    padding: 15px;
    font-size: 12px;
    font-weight: 700;
  }
  .container p {
    font-size: 12px;
    line-height: 14px;
    margin: 0 10px;
  }
  .container h2 {
    font-size: 14px;
    margin: 10px;
    padding: 20px;
    line-height: 18px;
  }
  .container h3 {
    font-size: 14px;
    margin: 10px;
  }
  .front,
  .back {
    border-radius: 10px;
  }

  /*meio*/

  section.meio {
    padding: 60px 30px;
    gap: 10px;
    height: fit-content;
    flex-wrap: wrap;
  }
  div h3 {
    position: initial;
    font-size: 14px;
  }
  .meio h2 {
    font-size: 25px;
  }

  .meio-direito {
    flex-direction: column;
    justify-content: left;
    align-items: start;
    gap: 40px;
  }

  .meio-direito button {
    position: relative;
    top: -10px;
  }

  /*sobre*/

  section.sobre {
    padding-top: 0;
    width: 100%;
  }

  .retangulo-branco-sobre {
    padding: 0 30px;
  }

  .container-historia {
    width: 100%;
    display: flex;
    top: 140px;
  }

  .preencher-direita {
    width: 15vw;
  }

  .história {
    position: relative;
    max-width: 85vw;
    flex-wrap: wrap;
    padding: 0px 30px 30px 30px;
    gap: 30px;
    right: 0;
  }
  .img-historia,
  .img-ajuda {
    width: calc(85vw - 60px);
  }

  .sobre .dourado {
    font-size: 18px;
  }

  .sobre p {
    font-size: 14px;
    line-height: 18px; /* 125% */
    letter-spacing: -0.2px;
  }

  .container-ajuda {
    top: 0px;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }

  .ajuda {
    max-width: 85vw;
    background-color: #121e38;
    border-radius: 0 17px 0 17px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 0px 30px 30px 30px;
    gap: 30px;
  }

  .preencher-esquerda {
    width: 15vw;
  }

  /*formulario*/

  form {
    top: 50px;
    padding: 20px 40px;
    border-radius: 17px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    width: 80vw;
  }

  .container-form {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  form h1 {
    padding: 20px 0 0 0;
    font-size: 22px;
  }

  form p {
    color: #121e38;
    font-size: 12px;
    padding: 0 0 10px 0;
  }

  input,
  textarea {
    width: 250px;
    height: 33px;
    padding: 8px 16px;
    align-items: center;
    gap: 227px;
    border-radius: 4px;
    border: 1px solid #b6b0ab;
    background: #fff;
  }

  textarea {
    min-width: 250px;
    min-height: 150px;
  }

  form button {
    border-radius: 5px;
    width: 115px;
    height: 25px;
    border: none;
    color: white;
    background: #121e38;
    font-size: 13px;
  }

  .checkbox input {
    width: 15px;
    height: 15px;
  }

  .checkbox div {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 20px;
  }
  form label {
    font-size: 14px;
    text-align: left;
  }

  /*footer*/

  footer {
    align-items: center;
    justify-content: center;
    gap: 45vw;
    height: 140px;
    padding: 20px 35px 20px 35px;
  }

  footer p {
    font-size: 12px;
  }

  footer .ciculo {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
  footer img {
    width: 80px;
    height: 80px;
  }
  .contatos {
    display: flex;
    height: 100%;
    gap: 5px;
    justify-content: center;
  }
  footer .fa {
    font-size: 12px;
  }
}

@media (max-width: 832px) {
  .float {
    right: 40px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .float:hover {
    width: 70px;
    height: 70px;
    right: 35px;
    bottom: 35px;
  }

  /*nav bar*/
  .checkbtn {
    display: flex;
    font-size: 20px;
    height: 50px;
    justify-content: center;
    align-items: center;
  }

  nav {
    display: block;
    height: 50px;
  }

  div.logo {
    height: 42px;
  }

  ul {
    position: fixed;
    width: 100%;
    background: #d9d9d9;
    top: 0px;
    top: -100%;
    text-align: right;
    transition: all 0.5s;
    padding: 0 0 20px 0;
  }

  nav ul li {
    display: flex;
    padding: 0px 20px;
    border-radius: 9px;
    line-height: 10px;
    justify-content: end;
  }

  nav ul li a {
    font-size: 12px;
    text-align: right;
    height: 27px;
  }

  #check:checked ~ ul {
    top: 50px;
  }
  /*hero*/
  .hero {
    display: block;
    height: 75vh;
    padding: 125px 50px 30px;
  }

  h1 {
    font-size: 18px;
  }
  button {
    width: 115px;
    height: 25px;
    border-radius: 5px;
    align-items: center;
    justify-content: space-around;
  }
  button a {
    display: flex;
    font-size: 13px;
    align-items: center;
    justify-content: space-around;
  }
  button.serviços {
    border: solid 2px #121e38;
  }

  .hero img {
    width: calc(100% - 60px);
  }
  .retangulo-azul-hero {
    top: 110px;
    height: 180px;
    width: 250px;
  }
  .circulos {
    right: 50px;
  }
  .ciculo {
    position: relative;
    width: 25px;
    height: 25px;
  }

  /*serviços*/
  .retangulo-branco-serviços {
    padding: 0 57px;
    min-height: 400px;
    height: 30vh;
  }

  section.serviços {
    padding: 30px;
    min-height: 300px;
  }

  .serviços-cards {
    height: inherit;
    padding: 0 30px;
    top: 100px;
    overflow-x: scroll;
    overflow-y: hidden;
    flex-wrap: nowrap;
    flex-direction: row;
    scroll-behavior: smooth;
    scroll-margin: 30px;
    scroll-snap-type: x mandatory;
  }

  ::-webkit-scrollbar {
    width: 10px;
  }

  .container {
    scroll-snap-align: start;
    min-width: 150px;
    height: 220px;
    padding: 15px;
    font-size: 12px;
    font-weight: 700;
  }
  .container p {
    line-height: 11.5px;
    font-size: 10px;
    margin: 0 10px;
  }
  .container h2 {
    font-size: 14px;
    margin: 10px;
    padding: 20px;
    line-height: 18px;
  }
  .container h3 {
    font-size: 14px;
    margin: 10px;
  }
  .front,
  .back {
    border-radius: 10px;
  }

  .front img {
    width: 65px;
  }

  /*meio*/

  section.meio {
    padding: 60px 30px;
    gap: 10px;
    height: fit-content;
    flex-wrap: wrap;
  }
  div h3 {
    position: initial;
    font-size: 14px;
  }
  .meio h2 {
    font-size: 25px;
  }
  .meio-direito button {
    position: relative;
    top: -10px;
  }

  /*sobre*/

  section.sobre {
    width: 100%;
  }

  .retangulo-branco-sobre {
    padding: 0 30px;
  }

  .retangulo-branco-sobre h1 {
    font-size: 18px;
  }

  .container-historia {
    width: 100%;
    display: flex;
    top: 140px;
  }

  .preencher-direita {
    width: 15vw;
  }

  .história {
    position: relative;
    max-width: 85vw;
    flex-wrap: wrap;
    padding: 0px 30px 30px 30px;
    gap: 30px;
    right: 0;
  }
  .img-historia,
  .img-ajuda {
    width: calc(85vw - 60px);
  }

  .sobre .dourado {
    font-size: 18px;
  }

  .sobre p {
    font-size: 14px;
    line-height: 18px; /* 125% */
    letter-spacing: -0.2px;
  }

  .container-ajuda {
    top: 0px;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }

  .ajuda {
    max-width: 85vw;
    background-color: #121e38;
    border-radius: 0 17px 0 17px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 0px 30px 30px 30px;
    gap: 30px;
  }

  .preencher-esquerda {
    width: 15vw;
  }

  /*formulario*/

  form {
    top: 50px;
    padding: 20px 40px;
    border-radius: 17px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    width: 80vw;
  }

  .container-form {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  form h1 {
    padding: 20px 0 0 0;
    font-size: 22px;
  }

  form p {
    color: #121e38;
    font-size: 12px;
    padding: 0 0 10px 0;
  }

  input,
  textarea {
    width: 250px;
    height: 33px;
    padding: 8px 16px;
    align-items: center;
    gap: 227px;
    border-radius: 4px;
    border: 1px solid #b6b0ab;
    background: #fff;
  }

  textarea {
    min-width: 250px;
    min-height: 150px;
  }

  form button {
    border-radius: 5px;
    width: 115px;
    height: 25px;
    border: none;
    color: white;
    background: #121e38;
    font-size: 13px;
  }

  .checkbox input {
    width: 15px;
    height: 15px;
  }

  .checkbox div {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 20px;
  }
  form label {
    font-size: 14px;
    text-align: left;
  }

  /*footer*/

  footer {
    align-items: center;
    justify-content: center;
    gap: 25vw;
    height: 110px;
    padding: 20px 35px 20px 35px;
  }

  footer p {
    font-size: 10px;
  }

  footer .ciculo {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
  footer img {
    width: 60px;
    height: 60px;
  }
  .contatos {
    display: flex;
    height: 100%;
    gap: 5px;
    justify-content: center;
  }
}
