@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

body {
  font-family: "Poppins", sans-serif;
}
/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #040d12;

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo-header {
  height: 7rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #7a6238;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #ac8a50;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #ffffff;
  color: #ac8a50;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background-image: linear-gradient(
      to right bottom,

      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
    url(../img/IMG_1592.webp);

  background-size: cover;

  background-position: center;

  flex-direction: column;

  /*  float: left; */

  width: 100%;

  height: calc(100vh - 100px);

  /* background-attachment: fixed; */

  background-repeat: no-repeat;

  background-size: cover;

  /*  max-width: 1200px; */

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 20rem;
  padding: 0 3.2rem;
  display: grid;
  gap: 9.6rem;
  align-items: center;
}

.heading-primary {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 64px;
  color: #fff;
  text-align: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
  color: #fff;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.hero-img {
  width: 100%;
}

.delivered-meals {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}

.delivered-imgs {
  display: flex;
}

.delivered-imgs img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fdf2e9;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
}

.delivered-text span {
  color: #cf711f;
  font-weight: 700;
}

.home {
  background-image: linear-gradient(
      to right bottom,

      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url(../img/IMG_1592.webp);

  background-size: cover;

  background-position: center;

  flex-direction: column;

  /*  float: left; */

  width: 100%;

  height: calc(100vh - 100px);

  /* background-attachment: fixed; */

  background-repeat: no-repeat;

  background-size: cover;

  /*  max-width: 1200px; */

  display: flex;

  align-items: center;

  justify-content: center;
}

.container-home {
  display: flex;

  justify-content: center;

  align-items: center;

  width: 100%;

  height: calc(100vh - 130px);

  padding: 0;

  margin: 0;
}

.mask {
  /*  display: flex; */
  height: auto;

  min-height: 100%;

  width: 100%;

  background-color: rgba(6, 4, 4, 0.5);

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
}

.mask h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 64px;
  padding-top: 30px;
  padding: 30px 15px 0 50px;
}

.rowx {
  /* padding: 10px; */

  margin: 100px 10px;

  margin-top: 10%;

  /* position: relative; */

  left: 100px;

  /*  width: 40%; */

  overflow: hidden;

  display: grid;

  grid-template-columns: 1fr 1fr;

  grid-gap: 20px;

  max-width: 1200px;

  margin: 10% auto;

  display: flex;

  flex-direction: row;

  justify-content: space-between;
}

.col {
  flex: 1;

  padding: 20px;

  box-sizing: border-box;
}

/* .text-overlay {

  color: #fff;

   text-align: block; 

}



.text-overlay h1 {

  align-items: center;

} */

.logo {
  height: 100px;
  /*   margin-top: 30px; */
}

.logo-home {
  position: absolute;
  top: 20px;
  left: 50px;
  width: 150px;
  height: 120px;
}

.title-description {
  /*  display: flex; */

  flex-direction: column;

  align-items: center;

  /*  text-align: center; */

  flex-basis: 100%;

  margin-bottom: 20px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.title {
  font-size: 50px;

  /* font-weight: bold; */

  color: white;

  line-height: 1.5;

  margin-bottom: 10px;

  text-align: left;
}

.title-second {
  font-size: 50px;

  font-weight: bold;

  color: white;

  margin-top: -20px;

  /*  line-height: 2.5; */
}

.title-second {
  padding-left: 150px;

  text-align: left;
}

.title-three {
  padding-left: 330px;

  font-size: 10px;

  text-transform: uppercase;

  color: white;
}

.subtitle {
  font-size: 10px;

  margin-bottom: 20px;

  text-align: left;
}

.description {
  font-size: 24px;

  color: #ac8a50;

  text-transform: none;

  margin-top: 20px;

  line-height: 1.5;

  padding: 0px 15px 0 50px;

  font-family: "Poppins", sans-serif;

  font-size: 22px;

  font-weight: 500;
}

.description-two {
  font-size: 24px;

  color: #d9985f;

  text-transform: uppercase;

  margin-top: 20px;
}

.bg-fotos {
  display: flex;

  align-items: center;

  gap: 1.6rem;

  margin-top: 8rem;
}

.bg-imgs {
  display: flex;
}

.bg-imgs img {
  height: 3.2rem;

  width: 3.2rem;

  border-radius: 50%;

  margin-right: -1.6rem;

  border: 3px solid #fdf2e9;
}

.bg-imgs img:last-child {
  margin: 0;
}

.bg-text {
  margin: 0;
}

/* #menu {

  position: relative;

  z-index: 1000;

}



#menu .media {

  position: fixed;

  right: 15px;

  bottom: 30px;

  height: 60px;

  width: 60px;

  background: #159622;

  border-radius: 100%;

  padding-top: 15px;

  text-align: center;

  color: #fff;

  font-size: 15px;

  font-family: "Ubuntu";

  line-height: 15px;

  -webkit-box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);

  -moz-box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);

  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);

  z-index: 1000;

} */

.menu-socials {
  position: fixed;
  right: 0;
  top: calc(50% - 120px);
  color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.menu-socials .menu-socials__icon {
  padding: 20px;
  text-decoration: none;
  display: flex;
  justify-content: center;
}

.menu-socials .menu-socials__icon ion-icon {
  fill: #fff;
  width: 22px;
  height: 22px;
}

.menu-socials__facebook {
  background-color: #4267b2;
}

.menu-socials__instagram {
  background: #8a3ab9;
  background-image: linear-gradient(180deg, #8a3ab9, #a13873);
}

.menu-socials__whatsapp {
  background-color: #159622;
}

.fa-2x {
  font-size: 2em;
}

.fa {
  display: inline-block;

  font: normal normal normal 14px/1 FontAwesome;

  font-size: inherit;

  text-rendering: auto;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;
}

.fa-whatsapp:before {
  content: "\f232";
}

.icon-whatsapp {
  width: 2em;

  height: 2em;
}

#menu > #dropdown {
  position: fixed;

  right: 90px;

  bottom: 35px;

  background-color: #159622;

  color: #fff;

  -webkit-box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);

  -moz-box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);

  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);

  border-radius: 8px;

  visibility: hidden;

  opacity: 0;

  transition: visibility 0s, opacity 0.5s linear;

  z-index: 999999;

  font-family: "Ubuntu";
}

#menu > #dropdown > #seta {
  width: 0px;

  height: 0px;

  border-style: solid;

  border-width: 15px;

  border-color: transparent;

  border-left-color: #159622;

  position: absolute;

  top: 10px;

  right: -25px;

  clear: both;
}

#menu > #dropdown > span {
  position: relative;

  margin: 15px;

  clear: both;

  display: block;

  font-family: "Rubik", sans-serif;
}

#menu:hover > #dropdown {
  visibility: visible;

  opacity: 1;
}

.whats-flutuante {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 1px 1px 2px #888;
  z-index: 1000;
}

/***** SECTION FORM *****/

.section-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  padding-left: 10rem;
  padding-right: 10rem;
  padding-bottom: 7rem;
}

.form-overlay {
  flex-basis: 100%;
}

.custom-form {
  /* background-color: #fff; */

  border-radius: 8px;

  color: #000;

  padding: 20px;

  /*  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); */

  margin-top: 45px;
  padding: 0 !important;
  margin-bottom: 3rem;
}

.form-title {
  text-align: left;
  font-size: 40px;
  color: #ac8a50;
  /* padding: 10px; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.form-subtitle {
  padding-top: 3rem;
  font-size: 18px;
}

.form-title-form {
  font-size: 18px;
  color: #555;
  font-weight: 600;
  text-align: center;
  padding-bottom: 1rem;
}

.custom-form label {
  color: #000;
}

.btn-primary,
.btn-primary:active {
  /* background: linear-gradient(178.16deg, #ac8a50 1.56%, #7d5f2b 98.45%); */
  border-color: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  background-color: #ac8a50 !important;
  padding: 8px 16px;
  box-shadow: 1px 1px 1px 1px #7d5c24;
  font-family: "Poppins", sans-serif;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

.btn-form,
.btn-form:active {
  padding: 8px 15rem !important;
  margin-top: 2rem;
}

.custom-form .btn-primary img {
  height: 20px;
  margin-left: 5px;
}

.btn-primary:hover {
  background-color: #bb9a60;
}

.custom-form .text-center {
  text-align: center;
}

.button-container {
  text-align: center;
}

.form-control {
  background-color: #fff;
  border-radius: 4px;
  font-size: 14px;
  /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1); */
  padding: 9px;
}

.custom-form input:focus,
.custom-form textarea:focus {
  outline: none;

  box-shadow: 0 0 5px #dda15e;

  border-color: transparent;
}

.mb-3.input-area label,
.mb-3.input-area select {
  display: block;
}

.mb-3.input-area:focus {
  border-color: red;
}

.browser-default {
  border-color: #e6e4e4;
  background-color: #fff;
  /* margin-top: 10px; */
  color: #555;
  border-radius: 4px;
  padding: 8px;
  padding-right: 5%;
  width: 100%; /* Define a largura */
  height: 40px; /* Define a altura */
}

.browser-default:focus {
  box-shadow: 0 0 5px #dda15e;
  border-color: #dda15e;
  border-radius: 4px;
  /*   margin-top: 10px; */
  font-size: 1.4rem;
  padding-right: 5px;
  padding: 8px;
}

.form-control-select {
  font-size: 1.4rem;
  background-color: #fff;
  /*   box-shadow: 0 0 5px #dda15e;
  border-color: #dda15e; */
  /* padding: 8px; */
  /*   padding-right: 5px; */
}

.contato .info span {
  display: block;
  width: 100%;
  color: #ff0000;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Roboto";
}

.green-text {
  color: #4caf50 !important;
}

.contato .info span .fa {
  margin-right: 5px;
}

.contato .info .fa {
  font-size: 20px;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/****** BENEFICIOS *******/

.beneficios {
  background-image: url(../img/backgroundBeneficios.webp);

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 20px;

  padding: 20px 10%;

  align-items: center;
}

.grid-item {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;
}

.grid-item .circle {
  width: 50px;

  height: 50px;

  border-radius: 50%;

  margin-top: 5px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.beneficios-descricao {
  color: #fff;

  text-transform: uppercase;

  font-size: 14px;

  letter-spacing: 0;

  margin-top: 10px;
}

.icones {
  width: 40px;

  height: 40px;

  color: #fff;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;
}

/***** NOSSA HISTORIA *****/

.nossa-historia {
  background-color: #efefef;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.sobre {
  background-color: #efefef;
  display: flex;

  align-items: center;

  padding: 70px 10%;
}

.sobre .imagem {
  height: 200px;
  width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre .imagem img {
  object-fit: cover;
  width: 100%;
  height: 500px;
  margin: 0;
  border-radius: 8px;
  box-shadow: none;
}

.sobre h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-align: left;
}

.sobre .texto {
  padding-left: 60px;
}

.sobre .button-container {
  display: flex;
  padding-top: 30px;
}

.sobre-nos {
  font-size: 30px;

  text-align: center;

  color: #212121;
}

.sublinhado {
  height: 4px;
  width: 60px;
  display: table;
  /* margin: 0 auto 40px; */
  background: linear-gradient(to right, #edd09d, #7d5f2b);
  /* background: linear-gradient(178.16deg, #edd09d 1.56%, #7d5f2b 98.45%); */
  border-radius: 8px;
  margin-bottom: 30px;
}

.bem-vindo {
  font-size: 18px;
  line-height: 1.4em;
  /* margin: 30px; */
  text-align: justify;
  color: #212121;
  font-family: "Poppins", sans-serif;
}

.imagem img {
  width: 100%; /* ajuste o tamanho conforme necessário */

  height: auto;

  margin: 2rem;

  border-radius: 20px;

  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.texto {
  flex: 1;

  margin-left: 20px; /* ajuste o espaçamento conforme necessário */

  margin: 30px;

  /*  line-height: 1.4em; */
}

.btn-sobrenos {
  background-color: #a66316;

  border-color: #a66316;

  margin: 40px;

  font-size: 16px;
}

.frase-nossa-historia {
  font-size: 34px;

  text-align: left;

  color: #212121;

  display: block;

  font-weight: 700;

  padding-top: 10px;
}

.espaco-frase-nossa-historia {
  margin-top: 50px;
}

.frase-nossa-historia p {
  margin-bottom: 0;
  text-align: center;
}

.frase {
  width: 100%;
  display: block;

  padding: 60px 0 30px;

  font-family: "Poppins", sans-serif;
}

.cor-destaque {
  color: #ac8a50;
}

.subtitulo-nossa-historia {
  text-align: center;

  font-size: 18px;

  margin-top: 20px;
}

/***** PROJETOS *****/

.projetos {
  padding: 50px 10%;

  background-color: #fff;
}

/* .projetos-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  padding: 10px;

} */

.projetos-titulo {
  font-size: 40px;

  padding: 10px;

  margin-bottom: 30px;

  color: #212121;

  text-align: center;

  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.projetos-galeria {
  text-align: center;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  justify-items: center;

  align-items: center;
}

.projetos-galeria-img {
  width: 90%; /* Largura ocupando 100% do espaço disponível */

  height: 90%; /* Altura ajustada automaticamente para manter a proporção */

  object-fit: cover; /* Redimensiona as imagens para preencher o espaço */

  border-radius: 10px;
}

.projetos .button-area {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.veja-mais {
  margin: 30px;
}

.projetos-botao {
  display: flex;
  margin-top: 30px;
  margin-left: 45%;
}

.veja-mais-body {
  padding: 0;

  width: 100%;

  display: none;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */

.active,
.veja-mais-page:hover {
  background-color: #f9f9f9;
}

/* Style the faq-page panel. Note: hidden by default */

.veja-mais-body {
  display: none;

  overflow: hidden;
}

.veja-mais-page:after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */

  font-size: 13px;

  color: white;

  margin-left: 15px;

  /*   background-color: #e4b86d; */
}

.veja-mais-page:hover {
  background: #e4b86d;
}

.veja-mais-page:active {
  background-color: #e4b86d;
}

.active:after {
  /*  content: "\2796";  */

  font-size: 13px;

  color: #777;

  margin-left: 15px;
}

/***** DEPOIMENTOS *****/

.parallax {
  position: relative;

  z-index: 1;

  margin-top: 40px;
}

.background-testemunhas {
  position: relative;

  /* width: 100%; */

  /*   height: 80vh; */

  background-image: url("../img/IMG_1595PB.webp");

  background-attachment: fixed;

  background-size: cover;

  background-position: center;

  overflow: hidden;
}

.background-testemunhas::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 0, 0, 0.8);
}

.testemunhas-depoimentos {
  background-color: #fff;
}

.depoimentos-titulo {
  font-size: 40px;

  text-align: center;

  color: #e9ecef;

  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.depoimentos {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  column-gap: 30px;

  padding: 60px 10%;
}

.depoimentos .star-outline {
  fill: #e4b86d;
}

.retangulo {
  border: 1px solid #e9ecef;

  background-color: #fff;

  padding: 20px;

  border-radius: 8px;
  height: 100%;
}

.foto {
  width: 50px;

  height: 50px;

  border-radius: 50%;
}

.foto-google {
  width: 30px;

  height: 30px;

  border-radius: 50%;
}

.informacoes {
  margin-left: 10px;
}

.experiencia {
  margin-top: 10px;
}

.grid-interna {
  display: grid;

  grid-template-columns: auto 1fr;

  column-gap: 10px;
}

.coluna-interna-google {
  display: grid;

  grid-template-columns: auto 1fr;

  column-gap: 10px;
}

.coluna-interna {
  display: flex;
}

.nome-depoimento {
  color: #212121;

  font-size: 18px;

  line-height: 1.2em;

  margin-bottom: 0;
  padding-top: 5px;
}

.texto-interno {
  margin-top: 10px;

  font-size: 16px;

  line-height: 22px;

  padding-left: 60px;
}

.botao-orcamento {
  border-color: #ac8a50;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  background-color: #ac8a50;
  /* border-radius: 56px 56px 56px 56px; */
  /* padding: 16px 40px 16px 40px; */
  padding: 8px 16px;
  box-shadow: 1px 1px 1px 1px #7d5c24;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.botao-orcamento:hover {
  background-color: #bb9a60;
}

.button-container-comentarios {
  text-align: center;
  padding-bottom: 60px;
}

/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */

  /* top / horizontal / left */
  padding: 4.8rem 0 12.8rem;
}

.cta {
  display: grid;
  /* 2/3 = 66.6% + 1/3 = 33.3% */
  grid-template-columns: 2fr 1.2fr;
  /* background-color: #e67e22; */
  /*   box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15); */
  border-radius: 11px;
  background-color: #eeeeee;
  /*   background-image: linear-gradient(to right bottom, #eb984e, #e67e22); */
  overflow: hidden;
  column-gap: 1.2rem;
  row-gap: 1rem;
}

.cta-text-box {
  padding: 4.8rem 2.4rem 0 2.4rem;
  color: #555;
}

.cta .heading-secondary {
  /* color: #45260a; */
  color: #ac8a50;
  margin-bottom: 3.2rem;
  font-weight: 700;
  font-size: 3rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333;
  /* margin-bottom: 4.8rem; */
}

.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(6, 4, 4, 0.5),
      rgba(0, 0, 0, 0.6)
    ),
    url("../img/img11.webp");
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/***** FAQ *****/

.faq-heading {
  border-bottom: #212121;

  padding-bottom: 8rem;

  text-align: center;

  font-size: 40px;

  color: #212121;

  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.faq-container {
  display: flex;
  /*  background-color: #efefef; */
  justify-content: center;

  flex-direction: column;

  padding: 0 10%;
}

.hr-line {
  width: 30%;

  margin: auto;
}

/* Style the buttons that are used to open and close the faq-page body */

.faq-page {
  border-color: #f9f9f9;

  color: #212121;

  cursor: pointer;

  padding: 20px 30px;

  border: none;

  outline: none;

  transition: 0.4s;

  margin: auto;

  font-size: 20px;

  width: 50%;
}

.faq-body {
  margin: auto;

  /* text-align: center; */

  padding: auto;

  width: 50%;

  background-color: #f9f9f9;

  font-size: 16px;

  padding: 10px 30px;
  background-color: #f9f9f9;
  display: none;
  overflow: hidden;
  line-height: 22px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */

.active,
.faq-page:hover {
  background-color: #ecbd6b;
  color: #fff;
  border-color: #ecbd6b;
}

/* Style the faq-page panel. Note: hidden by default */

.faq-page:after {
  content: "\02795";

  /* Unicode character for "plus" sign (+) */

  font-size: 13px;

  color: #f9f9f9;

  float: right;

  margin-left: 5px;
}

.active:after {
  content: "\2796";

  /* Unicode character for "minus" sign (-) */
}

/***** FOOTER *****/

.footer {
  padding: 60px 10% 0;

  background-color: #212529;

  margin-top: 100px;
}

.grid--footer {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  grid-gap: 10px;
}

.logo-col {
  display: flex;

  flex-direction: column;
}

.footer-logo {
  display: block;

  margin-bottom: 3.2rem;
}

.logo-img-footer {
  height: 8rem;
}

.social-links {
  list-style: none;
  justify-content: center;
  display: flex;

  gap: 2.4rem;

  padding: 0;
}

.social-icon {
  height: 20px;

  width: 20px;
}

.copyright {
  font-size: 16px;

  line-height: 1.6;

  color: #767676;

  text-align: center;
  margin-bottom: 0;
  margin-top: 30px;
}

.footer-heading {
  font-size: 18px;
  text-align: center;
  font-weight: 500;

  margin-bottom: 1rem;

  color: #dee2e6;
}

.contacts {
  font-style: normal;

  font-size: 10px;

  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.adress-cidade {
  margin-top: 2rem;
}

.footer-nav {
  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 2.4rem;
}

.footer-descricao {
  text-decoration: none;
  text-align: center;
  font-size: 12px;

  color: #dee2e6;

  line-height: 1.5;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;

  font-size: 12px;

  color: #dee2e6;

  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

.delayed-text {
  opacity: 0;

  animation: fadeIn 1s ease-in-out forwards;

  animation-delay: 1s; /* Atraso de 2 segundos antes de iniciar a animação */
}

.modal-window {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.25);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.modal-window.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-window .sit-modal {
  width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  background: white;
  color: #1b1b1b;
  box-shadow: 1px 1px 150px #1a1a1a;
}

.modal-window .sit-modal .icon {
  display: flex;
  justify-content: center;
  font-size: 60px;
  color: #5682df;
}

.modal-window.modal-error .sit-modal .icon {
  color: #aa0b0b;
}

.modal-window .sit-modal .sit-modal-text {
  text-align: center;
  padding: 0 20px 20px;
  font-size: 16px;
}

.modal-window header {
  font-weight: bold;
}

.modal-window h1 {
  text-transform: uppercase;
  font-size: 22px;
  text-align: center;
  padding: 20px;
  margin: 0;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}

.modal-window.sit-modal-error h1 {
  padding-bottom: 0;
}

.modal-window .sit-modal ul {
  padding: 0;
  margin: 0;
  text-align: left;
}

.modal-window .icone--success {
  color: #5682df;
}

.sit-modal-close {
  color: #aaa;
  line-height: 50px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 45px;
  text-decoration: none;
  cursor: pointer;
}

.icone--close {
  color: #aaa;
  font-size: 20px;
}

.modal-close:hover {
  color: black;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
