/* css document */

* {
  padding: 0;
  margin: 0;
}

.obg {
  font-family: "Anton SC", sans-serif;
  color: #F2EBDC;
}

#obrigada {
  margin-top: 15%;
}

main {
  max-width: 1200px;
}

body {
  background-color: #7897BF;
}

p {
  font-family: "Afacad", sans-serif;
  font-weight: 500;
  color: #1D1D1D;
  font-size: 17px;
}

h4 {
  font-family: "Anton SC", sans-serif;
}

.tit_rod {
  font-family: "Anton SC", sans-serif;
  font-size: 22px;
}

h3 {
  font-family: "Afacad", sans-serif;
  font-weight: 500;
}

.tit_pol {
  font-family: "Anton SC", sans-serif;
  letter-spacing: 4px;
}

/* header */
ul {
  justify-content: space-between;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #F2EBDC;
}

.nav-link {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  color: #1D1D1D;
}

.nav-link:hover {
  text-decoration: underline;
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

.btn_banner {
  background-color: #A6B86C;
  border: none;
  color: #F2EBDC;
  padding: 2% 10%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 40px;
  margin-bottom: 2%;
  font-family: "Afacad", sans-serif;
  font-weight: 700;
}

.btn_banner:hover {
  transform: scale(1.1);
  transition: transform 0.6s ease;
  background-color: #F2EBDC;
  color: #A6B86C;
}

h1 {
  font-family: "Afacad", sans-serif;
  font-weight: 500;
  text-align: center;
  color: #F2EBDC;
}

#banner {
  margin-top: 5%;
}


#text_banner {
  background-color: #636B48;
}

/* Sobre */

#tit_sobre {
  font-family: "Anton SC", sans-serif;
  color: #3D4524;
  text-align: center;
}

.text_sobre {
  text-align: justify;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
}

#sobre {
  background-color: #F2EBDC;
}

/* Serviços */

#servicos {
  background-color: #FAF6ED;
}

#tit_servicos {
  font-family: "Anton SC", sans-serif;
  background: #CCB43B;
  color: #1D1D1D;
  white-space: nowrap;
  overflow: hidden;
}



/* cards serviços */

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  height: 450px;
  perspective: 1000px;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
  transform: rotateY(0);
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card.flip .flip-card-inner {
  transform: rotateY(180deg);

}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  transform: translateZ(0);
}


.preco {
  margin: 0;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
}

.valor {
  font-family: "Anton SC", sans-serif;
}

.saiba {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  opacity: 0.7;
  font-size: 18px;
  transition: 0.3s;
  cursor: pointer;
  color: #1D1D1D;
}

.flip-card:hover .saiba {
  opacity: 1;
  letter-spacing: 1px;
}

.identidade {
  border-style: solid;
  border-color: #636B48;
  background-color: #F2EBDC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.identidade h3 {
  font-family: "Anton SC", sans-serif;
  color: #636B48;
  margin: 0;
}

.identidade ul {
  list-style: none;
  padding: 0;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
}

.identidade .valor {
  color: #636B48;
}

.id_land {
  border-style: solid;
  border-color: #496C99;
  background-color: #F2EBDC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.id_land h3 {
  font-family: "Anton SC", sans-serif;
  color: #496C99;
  margin: 0;
}

.id_land ul {
  list-style: none;
  padding: 0;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
}

.id_land .valor {
  color: #496C99;
}

.landing {
  border-style: solid;
  border-color: #CCB43B;
  background-color: #F2EBDC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.landing h3 {
  font-family: "Anton SC", sans-serif;
  color: #CCB43B;
  margin: 0;
}

.landing ul {
  list-style: none;
  padding: 0;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
}

.landing .valor {
  color: #CCB43B;
}

/* Style the back side */
.flip-card-back {
  background-color: #F2EBDC;
  color: #1D1D1D;
  border: solid;
  border-color: #CCC6B8;
  transform: rotateY(180deg);
}

.btn_servico {
  background-color: #7897BF;
  border: none;
  color: #F2EBDC;
  padding: 1% 12%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 40px;
  margin: 2%;
  font-family: "Afacad", sans-serif;
  font-weight: 700;
}

.btn_servico:hover {
  transform: scale(1.2);
  transition: transform 0.6s ease;
  background-color: #F2EBDC;
  color: #7897BF;
}

/* Projetos */

#tit_proj {
  font-family: "Anton SC", sans-serif;
  text-align: center;
  color: #1D1D1D;
}

#caco:hover {
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

#manto:hover {
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

#pingo:hover {
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

#xero:hover {
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

.btn_projeto {
  background-color: #F2DC6B;
  border: none;
  color: #1A1F0B;
  padding: 1% 12%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 40px;
  margin: 2%;
  font-family: "Afacad", sans-serif;
  font-weight: 700;
}

.btn_projeto:hover {
  transform: scale(1.2);
  transition: transform 0.6s ease;
  background-color: #3D4524;
  color: #F2DC6B;
}

/* FAQ */

#faq {
  background-color: #CCB43B;
}

#tit_faq {
  font-family: "Anton SC", sans-serif;
  text-align: center;
  color: #1D1D1D;
}

/* accordion */


.accordion {
  font-family: "Afacad", sans-serif;
  font-weight: 500;
  background-color: #FAF6ED;
  color: #1D1D1D;
  cursor: pointer;
  padding: 10px;
  text-align: left;
  border: solid;
  border-color: #636B48;
  outline: none;
  border-radius: 40px;
}

.accordion.active {
  border-radius: 40px 40px 0 0;
}


.accordion:hover {
  background-color: #CCC6B8;
}


.panel {
  padding: 10px 18px;
  background-color: #FAF6ED;
  display: none;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  margin-bottom: 2%;
  border: solid;
  border-color: #636B48;
}

.accordion:after {
  content: "\25BC";
  float: right;
  padding-right: 10px;
}

.accordion.active:after {
  transform: rotate(180deg);
}

/* Formulario */

legend {
  font-family: "Anton SC", sans-serif;
  color: #1D1D1D;
}

label {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  color: #1D1D1D;
}

.form-control {
  border: 1px solid #636B48;
  border-radius: 20px;
  margin-top: 5px;
}

.btn {
  padding: 1.5% 5%;
  margin: 0 2% 0 0;
  font-family: "Afacad", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}

.btn_whats {
  background-color: #A0B268;
  border: none;
  color: #F2EBDC;
  padding: 1.5% 15%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 40px;
  margin: 2%;
  font-family: "Afacad", sans-serif;
  font-weight: 700;
}

.btn_whats:hover {
  transform: scale(1.2);
  transition: transform 0.6s ease;
  background-color: #F2EBDC;
  color: #A0B268;
}

/* footer */

.text_rod {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
}

.text_rod:link {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: #1D1D1D;
}

.text_rod:visited {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: #1D1D1D;
}

/* back to top */

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #3D4524;
  color: #F2EBDC;
  cursor: pointer;
  padding: 12px;
  border-radius: 50px;
  font-size: 25px;
  font-family: "Afacad", sans-serif;
  font-weight: 700;
}

#myBtn:hover {
  background-color: #F2EBDC;
  color: #3D4524;
}

/* footer */

footer {
  background-color: #F2EBDC;
}

.redes {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.redes img {
  width: 60px;
}

.politica {
  max-width: 800px;
  font-family: "Afacad", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.back_poli {
  background-color: #F2EBDC;
}

.tit_poli {
  color: #496C99;
  font-family: "Anton SC", sans-serif;
}

/* responsivo */

@media (min-width: 320px) {

  .obg {
    font-size: 50px;
    letter-spacing: 7px;
  }

  #obrigada {
    margin-top: 20%;
  }

  .btn_banner {
    padding: 1% 8%;
  }

  h1 {
    font-size: 24px;
    letter-spacing: 3px;
    padding-top: 3%;
  }

  #tit_sobre {
    font-size: 60px;
  }

  #tit_servicos {
    font-size: 24px;
  }

  .flip-card {
    height: 450px;
    width: 80%;
    perspective: 1000px;
  }

  .valor {
    letter-spacing: 2px;
    font-size: 20px;
  }

  .btn_servico {
    padding: 1% 15%;
    font-size: 18px;
  }

  #tit_proj {
    font-size: 80px;
  }

  .btn_projeto {
    padding: 1% 15%;
    font-size: 18px;
  }

  .btn_whats {
    padding: 2% 15%;
    font-size: 18px;
  }

  .whats {
    width: 20px;
    margin-right: 10px;
  }
}

@media (min-width: 576px) {

  .obg {
    font-size: 70px;
    letter-spacing: 7px;
  }

  #obrigada {
    margin-top: 16%;
  }

  h1 {
    font-size: 30px;
  }

  #tit_sobre {
    font-size: 80px;
  }

  #tit_servicos {
    font-size: 28px;
  }

  .flip-card {
    height: 450px;
    width: 70%;
    perspective: 1000px;
  }

  .valor {
    letter-spacing: 2px;
    font-size: 24px;
  }

  #tit_proj {
    font-size: 100px;
  }

  .btn_projeto {
    padding: 2% 15%;
    font-size: 18px;
  }

  .btn_whats {
    padding: 2% 15%;
    font-size: 18px;
  }

  .whats {
    width: 25px;
    margin-right: 10px;
  }
}

@media (min-width: 768px) {

  .obg {
    font-size: 70px;
    letter-spacing: 7px;
  }

  #obrigada {
    margin-top: 15%;
  }

  p {
    font-size: 18px;
  }

  .nav-link {
    font-size: 18px;
  }

  .accordion {
    font-size: 18px;
  }

  .btn_banner {
    padding: 2% 10%;
  }

  h1 {
    font-size: 32px;
    padding-bottom: 5px;
  }

  #sobre figure {
    margin-bottom: 0;
    padding-top: 12%;
  }

  #tit_sobre {
    font-size: 110px;
    text-align: left;
  }

  .text_sobre {
    line-height: 30px;
    padding-top: 5%;
  }

  .flip-card {
    height: 450px;
    width: 60%;
    perspective: 1000px;
  }

  #tit_proj {
    font-size: 110px;
  }

  #formulario p,
  label {
    font-size: 17px;
  }

  .btn {
    font-size: 18px;
  }

  .btn_whats {
    padding: 2% 15%;
    font-size: 19px;
  }

  .whats {
    width: 30px;
    margin-right: 15px;
  }

  legend {
    font-size: 30px;
  }
}

@media (min-width: 992px) {

  .obg {
    font-size: 80px;
    letter-spacing: 7px;
  }

  #obrigada {
    margin-top: 10%;
  }

  p {
    font-size: 19px;
  }

  .nav-link {
    font-size: 19px;
  }

  .politica ul {
    font-size: 19px;
  }

  .accordion {
    font-size: 19px;
  }

  .btn_banner {
    padding: 2% 9%;
    font-size: 20px;
  }

  h1 {
    font-size: 40px;
    padding-bottom: 5px;
  }

  #sobre figure {
    margin-bottom: 0;
    padding-top: 5px;
  }

  #tit_sobre {
    font-size: 120px;
    text-align: left;
  }

  .text_sobre {
    line-height: 35px;
    padding-top: 7%;
  }

  #tit_servicos {
    font-size: 35px;
  }

  .btn_servico {
    padding: 1% 13%;
    font-size: 20px;
  }

  .flip-card {
    height: 490px;
    width: 30%;
    perspective: 1000px;
  }

  .identidade,
  .id_land,
  .landing ul {
    font-size: 19px;
  }

  #tit_proj {
    font-size: 130px;
  }

  .btn_projeto {
    padding: 2% 13%;
    font-size: 20px;
  }

  #faq {
    padding: 30px 50px !important;
  }

  legend {
    font-size: 35px;
  }

  #formulario p,
  label {
    font-size: 18px;
  }

  .btn {
    font-size: 19px;
  }

  .form-check-input {
    padding: 10px;
  }

  .form-control {
    padding: 12px;
  }

  .btn_whats {
    padding: 2% 13%;
    font-size: 20px;
  }

  .whats {
    width: 35px;
    margin-right: 25px;
  }
}

@media (min-width: 1080px) {

  .obg {
    font-size: 80px;
    letter-spacing: 7px;
  }

  #obrigada {
    margin-top: 8%;
  }

  #sobre figure {
    margin-bottom: 0;
  }

  #tit_sobre {
    font-size: 134px;
    text-align: left;
  }

}

@media (min-width: 1200px) {

  .obg {
    font-size: 80px;
    letter-spacing: 7px;
  }

  #obrigada {
    margin-top: 8%;
  }

  p {
    font-size: 19px;
  }

  .nav-link {
    font-size: 19px;
  }

  .politica ul {
    font-size: 19px;
  }


  .accordion {
    font-size: 19px;
  }

  .btn_banner {
    padding: 1.5% 10%;
    font-size: 22px;
    border-radius: 60px;
  }

  h1 {
    font-size: 40px;
    padding-bottom: 12px;
  }

  #sobre figure {
    margin-bottom: 0;
    padding-top: 65px;
  }

  #tit_sobre {
    font-size: 120px;
    text-align: left;
  }

  .text_sobre {
    line-height: 35px;
    padding-top: 5%;
  }

  #tit_servicos {
    font-size: 40px;
  }

  .btn_servico {
    padding: 1% 13%;
    font-size: 22px;
    border-radius: 60px;
  }

  .flip-card {
    height: 510px;
    width: 30%;
    perspective: 1000px;
  }

  .identidade,
  .id_land,
  .landing ul {
    font-size: 20px;
  }

  #tit_proj {
    font-size: 130px;
  }

  .btn_projeto {
    padding: 1.5% 10%;
    font-size: 22px;
  }

  #faq {
    padding: 10px 60px !important;
  }

  legend {
    font-size: 32px;
  }

  #formulario p,
  label {
    font-size: 19px;
  }

  .btn {
    font-size: 20px;
  }

  .form-check-input {
    padding: 10px;
  }

  .form-control {
    padding: 14px;
  }

  .btn_whats {
    padding: 1.5% 13%;
    font-size: 22px;
  }

  .whats {
    width: 40px;
    margin-right: 25px;
  }
}