input[type="text"],
input[type="tel"],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
}

/* Início da estrutura do Formulário*/
.form-container {
  width: 90%;
  margin: 20px;
  padding: 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  background-color: #f6f6f6;
  border-radius: 20px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.step h2 {
  color: #000000;
  font-weight: 600; /* Bold added */
  font-size: 25px;
  line-height: 35px;
}

.step b {
  color: #fff;
  background-color: #007be5;
  padding: 3px 5px;
  border-radius: 5px;
}

.step p {
  color: #666;
  margin: 20px;
  font-size: 16px;
}

button[type="submit"] {
  background-color: transparent;
  border: none;
  border-radius: 40px;
  padding: 10px 20px;
  cursor: pointer;
  color: #0f0f0f;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

button[type="submit"]:hover {
  background-color: #e8e8e8;
}

button[data-value="Parcela"] {
  font-size: 18px;
  font-weight: 500;
}

.btn-group button.selected {
  background-color: #007be5;
  color: #ffffff;
  border-radius: 40px;
}

.btn-group {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  background-color: #efefef;
  border-radius: 40px;
  padding: 8px;
}

.btn-group button {
  flex: 1;
  margin: 0 5px;
}

#amount {
  flex: 1;
  margin: 0 10px;
}

#rs,
#centavos {
  font-size: 14px;
  font-weight: light;
  margin-bottom: 20px;
  padding-right: 5px;
  color: #333;
}

#amount-value {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000000;
}

#consorcio-form input[type="range"] {
  width: 95%;
  height: 10px;
  border-radius: 5px;
  background: #000000;
  outline: none;
  padding: 0px;
  margin: 20px 0px 0px 0px;
}

.range-container {
  display: flex;
  align-items: center;
  padding: 10px 15px;
}

#range-min,
#range-max {
  width: auto;
  text-align: center;
  color: #333;
  font-size: 14px;
  font-weight: normal;
  font-style: italic;
}

#range-min-rs {
  width: auto;
  text-align: start;
  color: #333;
  font-size: 14px;
  font-weight: normal;
  margin-right: 4px;
}

#range-max-rs {
  width: 100%;
  text-align: end;
  color: #333;
  font-size: 14px;
  font-weight: normal;
  margin-right: 4px;
}

#simular-btn {
  background-color: #db6a00;
  border: none;
  border-radius: 40px;
  padding: 10px 20px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 15px;
  width: 100%;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 15px;
}

#step-2 h2 {
  color: #000000;
  font-weight: bold; /* Bold added */
  font-size: 25px;
  margin-bottom: 20px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"] {
  width: 100%;
  padding: 10px 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  color: #505050;
  background-color: #fff;
}

.input-group input:focus {
  border-color: #131313;
  box-shadow: 0 0 5px rgba(54, 54, 54, 0.75);
}

select {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  color: #505050;
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
}

select:focus {
  border-color: #131313;
  box-shadow: 0 0 5px rgba(54, 54, 54, 0.75);
}

.input-group label {
  position: absolute;
  top: 12px;
  left: 20px;
  color: #505050;
  transition: 0.3s;
  pointer-events: none;
}

.input-group input[type="text"]:focus + label,
.input-group input[type="email"]:focus + label,
.input-group input[type="tel"]:focus + label {
  opacity: 0;
  transform: translateY(-10px);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group select:not([value=""]) + label {
  opacity: 0;
  transform: translateY(-10px);
}

.ui-autocomplete {
  max-height: 150px; /* Limita a altura visível para exibir 5 opções */
  overflow-y: auto; /* Adiciona barra de rolagem vertical */
  overflow-x: hidden; /* Remove barra de rolagem horizontal */
  background-color: #fff !important; /* Fundo branco */
  font-family: "Montserrat", sans-serif !important; /* Fonte personalizada */
}

.ui-menu-item-wrapper {
  padding: 10px 15px !important; /* Espaçamento das opções */
  cursor: pointer;
}

.canal {
  color: #146f96;
  font-style: italic;
  font-size: 14px;
}

.button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

#back-btn-2 {
  background-color: transparent;
  border: none;
  border-radius: 40px;
  padding: 10px 20px;
  cursor: pointer;
  color: #0f0f0f;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

#result-btn {
  background-color: #db6a00;
  border: none;
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 16px;
  width: auto;
}

#mensagem {
  color: rgb(114, 14, 14);
  padding-top: 15px;
}

/* Para telas maiores (tablet e desktop) */
@media (min-width: 768px) {
  button {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #simular-btn:hover,
  #result-btn:hover,
  .simulate-button:hover,
  .simule-btn:hover,
  .btn-porto-vale:hover {
    background-color: #000000;
    color: #fff;
    transform: translateY(-5px); /* Leva o botão 5px para cima */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }

  #back-btn-2:hover {
    background-color: #cccccc;
    color: #000000;
    transform: translateY(-5px); /* Leva o botão 5px para cima */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  /* Início da estrutura do Formulário*/
  .form-container {
    max-width: 35%;
    margin: 40px;
    padding: 30px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    background-color: #f6f6f6;
    border-radius: 20px;
  }

  .step {
    display: none;
  }

  .step.active {
    display: block;
  }

  .step h2 {
    color: #000000;
    font-weight: bold; /* Bold added */
    font-size: 25px;
  }

  .step p {
    color: #666;
    margin: 20px;
  }

  #amount {
    flex: 1;
    margin: 0 10px;
  }

  #rs,
  #centavos {
    font-size: 16px;
    font-weight: light;
    margin-bottom: 20px;
    padding-right: 5px;
    color: #333;
  }

  #amount-value {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000000;
  }

  #consorcio-form input[type="range"] {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #000000;
    outline: none;
    padding: 0px;
    margin: 20px 0px 0px 0px;
  }

  .range-container {
    display: flex;
    align-items: center;
    padding: 10px 15px;
  }

  #range-min,
  #range-max {
    width: auto;
    text-align: center;
    color: #333;
    font-size: 14px;
    font-weight: normal;
  }

  #range-min-rs {
    width: auto;
    text-align: start;
    color: #333;
    font-size: 14px;
    font-weight: normal;
  }

  #range-max-rs {
    width: 100%;
    text-align: end;
    color: #333;
    font-size: 14px;
    font-weight: normal;
  }

  #step-2 h2 {
    color: #000000;
    font-weight: bold; /* Bold added */
    font-size: 25px;
    margin-bottom: 20px;
  }

  .input-group {
    position: relative;
    margin-bottom: 20px;
  }

  .input-group input[type="text"],
  .input-group input[type="email"],
  .input-group input[type="tel"] {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #505050;
  }

  .input-group input:focus {
    border-color: #131313;
    box-shadow: 0 0 5px rgba(54, 54, 54, 0.75);
  }

  select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #505050;
    font-family: "Montserrat", sans-serif;
  }

  select:focus {
    border-color: #131313;
    box-shadow: 0 0 5px rgba(54, 54, 54, 0.75);
  }

  .input-group label {
    position: absolute;
    top: 12px;
    left: 20px;
    color: #505050;
    transition: 0.3s;
    pointer-events: none;
  }

  .input-group input[type="text"]:focus + label,
  .input-group input[type="email"]:focus + label,
  .input-group input[type="tel"]:focus + label {
    opacity: 0;
    transform: translateY(-10px);
  }

  .input-group input:focus + label,
  .input-group input:not(:placeholder-shown) + label,
  .input-group select:not([value=""]) + label {
    opacity: 0;
    transform: translateY(-10px);
  }

  #mensagem {
    color: rgb(114, 14, 14);
    padding: 0px;
  }
}
/* Fim da estrutura do Formulário*/
/* Fim da estrutura da seção capa */

/*Sessão produtos*/
.section-sonhos {
  display: flex;
  justify-content: center; /* Alinha horizontalmente */
  align-items: center; /* Alinha verticalmente */
  margin-bottom: 30px;
}

.sonhos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 20px;
}

.icone-house {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.titulo-sonhos {
  position: relative;
}

.titulo-sonhos h2 {
  font-size: 22px;
  color: #133346;
  text-align: center;
  line-height: 30px;
}

.titulo-sonhos span {
  background-color: #11c6f3;
  color: #fff;
  padding: 4px;
  border-radius: 5px;
  text-transform: uppercase;
}

.titulo-sonhos img {
  width: 180px;
  height: auto;
  content: "";
  position: absolute;
  top: 100%;
  left: 24%;
  z-index: 1;
}

@media (min-width: 768px) {
  /*Seção produtos*/
  .sonhos-container {
    padding: 40px 0 10px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .titulo-sonhos {
    position: relative;
    margin-bottom: 30px;
  }

  .titulo-sonhos h2 {
    font-size: 35px;
    color: #133346;
    text-align: center;
    line-height: 45px;
    max-width: 600px;
  }

  .titulo-sonhos span {
    background-color: #11c6f3;
    color: #fff;
    padding: 4px;
    border-radius: 5px;
    text-transform: uppercase;
  }

  .titulo-sonhos img {
    width: 200px;
    height: auto;
    content: "";
    position: absolute;
    top: 100%;
    left: 35%;
    z-index: 1;
  }

  .construcao-mobile {
    display: none;
  }
}

/*cartoes - bolt*/
.pricing-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;

  justify-content: center;
  padding: 0 30px;
}

.pricing-card {
  background: linear-gradient(to bottom left, #059fca, #094b8d);
  border-radius: 1rem;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin: 10px 20px;
}

.pricing-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  color: #f3f3f3;
}

.card-content p {
  font-size: 20px;
}

.credit-info {
  margin-bottom: 1rem;
}

.credit-label {
  margin-bottom: 0.25rem;
}

.credit-amount {
  font-size: 1rem;
  font-weight: normal;
}

.credit-amount span {
  font-size: 2.5rem;
  font-weight: bold;
  margin-left: 4px;
}

.monthly-amount {
  font-size: 1rem;
  font-weight: normal;
}

.monthly-amount span {
  font-size: 2.5rem;
  font-weight: bold;
  margin-left: 4px;
}

.per-text {
  padding: 5px 0px;
}

.crossed-out {
  text-decoration: line-through;
}

.payment-info {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.simulate-button {
  display: block;
  width: 80%;
  padding: 0.8rem;
  background-color: #db6a00;
  color: white;
  text-align: center;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  margin: 0 auto;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 350px;
    margin: 10px 40px;
  }
}

/*Vantagens 1*/
/* Estilos para a seção de vantagens do Consórcio Porto */

.vantagens-section {
  position: relative;
  padding: 80px 0;
  background:
    /* gradiente de fundo */ linear-gradient(
    to bottom left,
    #00a8c2,
    #094b8d
  );
  background-blend-mode: overlay;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Container para centralizar o conteúdo */
.vantagens-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2; /* Coloca o conteúdo acima do background com opacidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Estilo do título */
.vantagens-title {
  color: white;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}

.vantagens-title span {
  font-weight: 700;
}

/* Grid de cards */
.vantagens-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  margin-bottom: 40px;
}

/* Estilo dos cards */
.vantagem-card {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 30px 20px;
  width: calc(25% - 30px); /* Ajuste para 4 cards por linha com gap */
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Ícones nos cards */
.card-icon {
  margin-bottom: 15px;
  justify-content: end;
}

.card-icon img {
  width: 40px;
  height: 40px;
}

/* Título do card */
.vantagem-card h3 {
  color: #003366;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Texto do card */
.vantagem-card p {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 992px) {
  .vantagem-card {
    width: calc(50% - 10px); /* 2 cards por linha em telas médias */
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .vantagem-card {
    width: 100%; /* 1 card por linha em telas pequenas */
  }
}

@media (min-width: 768px) {
  /*Seção vantagens*/
  .vantagens-section {
    margin-top: 80px;
    padding: 60px 0; /* Aumentar o padding inferior para dar espaço aos cards */
    overflow: visible; /* Mudar de hidden para visible para permitir que elementos ultrapassem os limites */
  }

  /* Background com imagem de baixa opacidade */
  .vantagens-section::before {
    opacity: 0.6; /* Opacidade baixa como na imagem */
    background-size: 700px;
  }

  .vantagens-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2; /* Coloca o conteúdo acima do background com opacidade */
  }
}

.section-respiro {
  height: 720px;
}

/* Início da seção tabela */
.section-tabela {
  position: relative;
  color: #133346;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto;
  padding: 40px 25px;
  text-align: center;
  overflow: hidden;
}

.section-tabela h2 {
  color: #283750;
  font-weight: 500;
  font-size: 30px;
}

.selo {
  display: none;
  width: 100%;
  height: auto;
}

/* Exibe a imagem desktop em telas maiores que 768px */
@media (max-width: 769px) {
  .selo {
    display: none;
    margin-top: 10px;
  }
}

.simule-btn {
  background-color: #db6a00;
  border: none;
  border-radius: 2rem;
  color: #fff;
  cursor: pointer;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  /*Início da seção tabela*/
  .section-tabela h2 {
    font-size: 45px;
    max-width: 700px;
  }

  .section-tabela {
    margin: 40px auto;
    gap: 30px;
  }

  .tabela-mobile {
    display: none;
  }

  .tabela-desktop {
    display: block;
    max-width: 60%;
  }

  .selo {
    display: block;
    position: absolute;
    content: "";
    top: 35%;
    left: 77%;
    width: 7%;
  }
}
/* Fim da seção tabela */

/* Início da seção feedbacks */
.section-feedbacks {
  color: #283750;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 25px;
  text-align: center;
}

.section-feedbacks h2 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
}

.feedbacks-subtitulo {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

#simular-btn-feedbacks1 {
  display: none;
}

.section-feedbacks div {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: auto;
}

.video-placeholder {
  width: 100%;
  height: auto;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  margin-bottom: 30px;
}

.lazy-video {
  display: none;
  width: 100%;
  height: 245px;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  /* Inicio da seção feedbacks */
  .section-feedbacks div {
    max-width: 100%;
    padding: 20px 30px 0px 30px;
    align-items: center;
  }

  .feedback-principal {
    display: flex;
    width: 100%;
  }

  .titulo-feedbacks h2 {
    font-size: 35px;
    text-align: start;
  }

  .titulo-feedbacks p {
    font-size: 18px;
    text-align: start;
  }

  .video-titulo {
    max-width: 50%;
  }

  .video-titulo .lazy-video {
    height: 365px;
  }

  #simular-btn-feedbacks1 {
    display: block;
    max-width: 40%;
    margin-bottom: 15px;
  }

  #simular-btn-feedbacks2 {
    display: none;
  }

  .video-serie {
    display: flex;
    max-width: 100%;
  }

  .video-serie img,
  iframe {
    width: 30%;
    margin: 20px;
  }
}
/* Fim da seção feedbacks */

/* Sobre a Porto Vale*/
.section-porto-vale {
  background-color: #e9e9e9;
  padding: 0 0 1px;
}

.section-text-and-image {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  text-align: start;
  max-width: 50%;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sectoin-title {
  font-weight: 800;
  font-size: 40px;
  color: #000;
  letter-spacing: 0.5px;
  line-height: 60px;
  width: 90%;
}

.img-lateral {
  height: auto;
  border-radius: 10px; /* Optional: Add rounded corners to the image */
}

.default {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  width: 80%;
}

.btn-porto-vale {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 0;
  max-width: fit-content;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #db6a00;
  border-radius: 25px;
  cursor: pointer;
  border: none;
}

.btn-porto-vale img {
  max-width: 20px;
  margin-left: 8px;
}

/* Mobile devices (less than 768px) */
@media (max-width: 767px) {
  .section-text-and-image {
    max-width: 90%;
    margin: 30px auto;
    flex-direction: column-reverse; /* Switch to column layout */
    align-items: center; /* Center align items */
    gap: 40px;
  }

  .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: start;
    max-width: 100%;
  }

  .image-container {
    width: 100%;
  }

  .img-lateral {
    width: 100%; /* Adjust image size for mobile */
  }

  .sectoin-title {
    font-size: 28px;
    line-height: 32px;
    width: 100%;
  }

  .default {
    width: 100%;
  }

  .btn-porto-vale {
    width: 80%;
  }
}

/* Mobile devices (less than 768px) */
@media (min-width: 768px) {
  .section-text-and-image {
    width: 100%;
    max-width: 1200px; /* Set a max width for larger screens */
    flex-direction: row;
    align-items: center;
    padding: 40px 0px;
  }

  .image-container {
    max-width: 50%;
    padding-left: 30px;
  }

  .img-lateral {
    width: 100%;
  }
}
/*FIm Sobre a Porto Vale*/

/*/////// Números ///////*/
.info-container {
  background-color: #00446b;
  color: white;
  border-radius: 32px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 50px auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
}

.info-item {
  flex: 1 1 200px;
}

.info-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #49d4ff;
}

.info-text {
  font-size: 1rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .info-container {
    border-radius: 25px;
    padding: 40px 20px;
    max-width: 90%;
    margin: 40px auto;
  }
}
/*/////// Fim Números ///////*/

/*Seção avaliações*/
.section-avaliacoes {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
}

.avaliacao-titulo {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 90%;
}

.avaliacao-titulo img {
  max-width: 200px;
  margin: 0 auto;
}

.grafico-nota {
  display: flex;
  align-items: center;
  gap: 10px;
}

.grafico-nota p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: center; /* Centraliza o número */
  width: 30px; /* Define uma largura fixa para alinhar as barras */
}

.barra {
  flex: 1;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.preenchimento {
  height: 100%;
  background-color: #fbc02d;
  border-radius: 5px;
}

.avaliacao {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px;
  position: relative;
}

.estrelas img {
  width: 100%;
  max-width: 18px;
  height: auto;
  margin-bottom: 10px;
}

.logo-google {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 10px;
}

.avaliacao-title-mb {
  font-size: 1.6rem;
  font-weight: 700;
  color: #685a5d;
  text-align: center;
  line-height: 1.6rem;
}

.avaliacao-title-mb span {
  font-size: 1.4rem;
  font-weight: 500;
  width: 100%;
}

.avaliacao-title-dk {
  display: none;
}

.notas-gmn {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.notas-gmn app-grafico-nota {
  width: 100%;
  height: auto;
}

.grafico {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-left: 0;
}

.avaliacao .numero {
  font-size: 6rem;
  font-weight: 500;
  color: #685a5d;
  text-align: center;
  line-height: 5rem;
  margin-bottom: 15px;
}

.avaliacao .estrelas {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  color: #ecc320;
  font-size: 0.5rem;
}

.avaliacao .comentarios {
  font-size: 0.9rem;
  font-weight: 500;
  color: #685a5d;
  text-align: center;
}

.depoimentos {
  max-width: 90%;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden; /* Garante que as imagens fiquem dentro da div */
}

.depoimentos img {
  max-width: 550px;
  width: 100%;
  height: auto;
  object-fit: contain; /* Garante que a imagem não seja cortada */
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 10px 15px rgba(0, 0, 0, 0.08);
}

/* Estilos para telas maiores */
@media (min-width: 768px) {
  .section-avaliacoes {
    margin: 50px 0;
  }

  .avaliacao-titulo img {
    max-width: 250px;
  }

  .avaliacao {
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    width: 1200px;
  }

  .notas-gmn {
    flex-direction: row;
    width: 50%;
  }

  .avaliacao .numero {
    text-align: start;
  }

  .avaliacao-title-dk {
    display: flex;
    font-size: 1.6rem;
    font-weight: 700;
    color: #685a5d;
    text-align: center;
    line-height: 1.6rem;
  }

  .avaliacao-title-mb {
    display: none;
  }

  .grafico {
    margin-left: 20px;
  }

  .depoimentos {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    flex-direction: row;
    padding: 40px;
  }
}
/*Fim Seção avaliações*/

/*Section FAQ*/
.section-faq {
  margin-top: 60px;
  background-color: #e9e9e9;
  padding: 60px 0;
}

.faq-backgrond {
  max-width: 90%;
  margin: 0 auto;
}

.faq-item {
  background: #1c9bd8;
  border: none;
  border-radius: 30px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px 30px;
  height: 75px;
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
  position: relative;
  font-weight: 400;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 22px;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background: #fafafa;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem 1.25rem;
}

.titulo {
  font-weight: bold;
  color: #000000;
  font-size: 25px;
  margin: 0 auto;
  text-align: center;
  margin: 0 auto;
}

.subtitulo {
  color: #685a5d;
  font-size: 15px;
  margin: 10px auto 30px;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 90%;
}

@media (min-width: 768px) {
  .titulo {
    font-size: 50px;
  }

  .subtitulo {
    font-size: 20px;
    max-width: 500px;
  }

  .faq-backgrond {
    max-width: 800px;
  }

  .faq-question {
    height: auto;
  }

  .faq-question::after {
    right: 30px;
    top: 15px;
  }
}
/*Fim Section FAQ*/

/*DEFESA*/
.defesa {
  display: flex;
  padding: 15px;
  max-width: 90%;
  margin: 0 auto;
}

.defesa p {
  text-align: center;
  font-size: 15px;
  color: #283750;
  line-height: 15px;
}

@media (min-width: 768px) {
  .defesa {
    max-width: 800px;
  }

  .defesa p {
    font-size: 14px;
    line-height: 16px;
  }
}

/* Início do rodapé */
.rodape {
  position: relative;
  color: #f3f3f3;
  background:

    /* gradiente de fundo */ linear-gradient(
    to bottom left,
    #00a8c2,
    #094b8d
  );
  background-blend-mode: overlay;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.rodape-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 20px 0;
}

.informacoes-rodape {
  color: #f3f3f3;
  margin: 20px;
  font-weight: 400;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.rodape a {
  color: #f3f3f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: underline;
}

.footer-section {
  margin-bottom: 20px;
  width: 100%;
}

.footer-logo-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin: 10px;
}

.title-socials {
  font-size: 19px;
  font-weight: 600;
}

.footer-social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.footer-logo-social {
  max-width: 40px;
  margin: 0 auto;
  height: auto;
  transition: transform 0.3s;
}

.footer-logo-social-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}

.footer-logo-social:hover {
  transform: scale(1.1);
}

/* Para telas maiores (tablet e desktop) */
@media (min-width: 768px) {
  .rodape-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 100px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    height: auto;
  }

  .politica {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 0;
    width: auto;
  }

  .footer-logo-group {
    flex-direction: row;
    align-items: center;
  }

  .footer-logo {
    width: 150px;
  }

  .title-socials {
    font-size: 19px;
    font-weight: 500;
  }

  .footer-logo-social-group {
    gap: 30px;
  }

  .footer-social {
    flex-direction: column;
    gap: 10px;
  }
}

/*//////// BLIP CHAT ////////*/
* {
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
}

@font-face {
  font-family: "Montserrat", sans-serif;
  src: url(https://www.blip.ai/wp-content/uploads/2023/04/font-47.ttf);
}

.blip-card .bubble.left,
.blip-card .bubble.middle {
  color: #292929 !important;
}

.blip-chat-icon {
  height: auto !important;
  max-height: 6.25em;
}

.message-bubble {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  background: #ffffff;
  color: #000000;
  width: auto;
  max-width: 15em;
  border-radius: 0.8125em 0.8125em 0.125em 0.8125em;
  box-shadow: 0.0625em 0.25em 0.5625em rgb(0 0 0 / 10%);
  z-index: 980;
  animation: toggle-bubble 0.5s ease-out;
  line-height: 1.5em;
  transform-origin: 100% 100%;
}

.textContainer {
  padding: 1em 1.5em;
}

.message-bubble::after {
  bottom: 0;
  content: "";
  position: absolute;
  left: calc(100% - 0.9375em);
  width: 0;
  border: 0.875em solid transparent;
  border-bottom-color: #ffffff;
  border-radius: 0.28125em;
}

.message-bubble::before {
  bottom: 0;
  content: "";
  position: absolute;
  left: calc(100% - 0.75em);
  width: 0;
  border: 0.9375em solid transparent;
  border-bottom-color: rgb(0 0 0 / 5%);
  filter: blur(0.125em);
  border-radius: 0.28125em;
}

.message-bubble .close-button {
  position: absolute;
  right: 0.625em;
  top: 0.9375em;
  width: 0.7em;
  height: 0.7em;
  opacity: 0.3;
}

.message-bubble .close-button:hover {
  opacity: 1;
  cursor: pointer;
}

.message-bubble .close-button:before,
.message-bubble .close-button:after {
  position: absolute;
  content: " ";
  height: 0.8em;
  width: 0.125em;
  background-color: #333;
}

.message-bubble .close-button:before {
  transform: rotate(45deg);
}

.message-bubble .close-button:after {
  transform: rotate(-45deg);
}

@keyframes toggle-bubble {
  from {
    transform: scale(0.1);
  }

  to {
    transform: scale(1);
  }
}

#blip-chat-container {
  display: inline-flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
}

#blip-chat-container > #blip-chat-open-iframe {
  position: static !important;
  background-size: contain;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
}

#blip-chat-icon {
  position: static;
  width: auto !important;
  height: auto !important;
  max-width: 3.75em !important;
  border-radius: 0% !important;
}

#blip-chat-close-icon {
  height: auto !important;
  background-color: #db6a00;
}

#blip-chat-header {
  background: #db6a00 !important;
}

#blip-chat-icon:hover {
  transform: translateY(-2px);
}

.option-message {
  font-family: "Montserrat", sans-serif;
  margin-top: 0.3125em;
  width: auto;
  z-index: 980;
  font-size: 14px;
}

.option-message li {
  list-style: none !important;
  margin-top: 0.3125em !important;
  text-align: right !important;
  animation: Appearing2 2s ease-out !important;
}

.option-message li:nth-child(2n + 1) {
  animation: Appearing 1s ease-out !important;
}

@keyframes Appearing {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes Appearing2 {
  from {
    transform: translateX(300%);
  }

  to {
    transform: translateX(0);
  }
}

.option-message li a {
  display: inline-block !important;
  padding: 0.3125em 0.9375em !important;
  background-color: #db6a00 !important;
  margin-top: 0.3125em !important;
  border-radius: 0.8em !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: 0.2s ease-in !important;
  box-shadow: 0.0625em 0.125em 0.375em rgb(0 0 0 / 10%) !important;
  font-weight: 400 !important;
}

.option-message li a:hover {
  transform: scale(1.1) !important;
}

#blip-chat-notifications {
  position: absolute !important;
  bottom: 35px !important;
  right: -4px !important;
}

.containerMessage {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (max-width: 480px), screen and (max-height: 420px) {
  #blip-chat-container {
    position: fixed !important;
    display: inline-flex !important;
    height: auto !important;
    margin-bottom: 40px;
    margin-right: 20px;
    margin-left: 20px;
  }

  #blip-chat-container #blip-chat-iframe {
    position: fixed !important;
  }
}

@media screen and (max-width: 280px) and (min-width: 0) {
  #blip-chat-container {
    margin-right: -20px;
    margin-bottom: -20px;
  }

  #blip-chat-container #blip-chat-iframe {
    position: fixed !important;
  }
}

@media screen and (max-width: 920px) and (min-width: 481px) {
  #blip-chat-container {
    margin-right: -40px;
  }

  #blip-chat-container #blip-chat-iframe {
    position: fixed !important;
  }
}
