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: #009bdb;
  padding: 3px 5px;
  border-radius: 5px;
}

.step p {
  color: #666;
  margin: 20px;
  font-size: 16px;
}

button[type="button"] {
  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="button"]:hover {
  background-color: #e8e8e8;
}

.btn-group button.selected {
  background-color: #009bdb;
  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;
}

/* Fim da estrutura do Formulário*/
/* Fim da estrutura da seção capa */

/* Início da seção tabela */
.section-tabela,
.section-feedbacks {
  color: #000000;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 25px;
  text-align: center;
}

.tabela-desktop {
  display: none;
}

.section-tabela button,
.section-feedbacks button {
  background-color: #009bdb;
  border: none;
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
  margin-top: 15px;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  width: 90%;
}

/* Fim da seção tabela */

/* Início da seção vantagens */
.section-vantagens {
  background-color: #009bdb;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 40px 25px;
}

.section-vantagens h2 {
  color: #fff;
  text-align: center;
}

.group-vantagens div {
  background-color: #e0e0e0;
  width: 100%;
  padding: 20px;
  margin-bottom: 30px;
  border: none;
  border-radius: 10px;
  align-items: start;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.vantagens img {
  width: 15%;
  padding-bottom: 15px;
}

.vantagens h3 {
  padding-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.vantagens p {
  font-size: 16px;
  color: #000000;
}

.section-vantagens button {
  background-color: #fff;
  border: none;
  border-radius: 40px;
  color: #009bdb;
  cursor: pointer;
  margin-top: 15px;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  width: 90%;
}
/* Fim da seção vantagens */

/* Início da seção feedbacks */
.section-feedbacks h2 {
  color: #000000;
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
}

.feedbacks-subtitulo {
  color: #000000;
  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;
}

.defesa {
  padding: 15px;
  font-size: 12px;
  color: #8a8a8a;
}
/* Fim da seção feedbacks */

/* Início do rodapé */
.rodape,
.politica {
  background-color: #009de1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rodape img {
  width: 150px;
  margin: 20px;
}

.rodape a,
p {
  color: white;
  margin: 20px;
}

.politica a {
  color: white;
  margin-bottom: 25px;
}

/* Para telas maiores (tablet e desktop) */
@media (min-width: 768px) {
  button {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .section-vantagens button:hover,
  .section-tabela button:hover,
  .section-feedbacks button:hover {
    background-color: #91e1fa;
    color: #000000;
    transform: translateY(-5px); /* Leva o botão 5px para cima */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }

  #simular-btn:hover,
  #result-btn:hover {
    background-color: #000000;
    color: #db6a00;
    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: 30%;
    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 seção capa*/

  /*Início da seção tabela*/
  .section-tabela h2 {
    font-size: 35px;
  }

  .tabela-mobile {
    display: none;
  }

  .tabela-desktop {
    display: block;
    max-width: 75%;
  }

  .section-tabela button {
    max-width: 40%;
  }
  /*Fim da seção tabela*/

  /*Início da seção vantagens*/
  .section-vantagens {
    padding: 50px;
    align-items: center;
  }

  .section-vantagens h2 {
    font-size: 35px;
  }

  .group-vantagens div:hover {
    background-color: #f0f0f0;
  }

  .group-vantagens {
    display: flex;
    margin: 20px 0px;
  }

  .group-vantagens div {
    width: 25%;
    margin: 20px;
  }

  .section-vantagens button {
    max-width: 40%;
  }
  /* Fim da seção vantagens

    /* 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 */
  /* Fim da seção feedbacks */
  .rodape {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 100px;
    text-align: center;
  }

  .rodape img {
    width: 150px;
    margin: 20px;
  }

  .rodape p {
    color: white;
    margin: 20px;
  }
}

/*//////// 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: #0c4ec0;
}

#blip-chat-header {
  background: #1968f0 !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;
  }
}
