@charset "UTF-8";
@media (min-width: 120px) {
  .form-container {
    padding-top: 5rem;
  }
}

.progress-container {
  display: flex;
  justify-content: space-between; /* Espaçamento uniforme entre os passos */
  align-items: center;
  position: relative; /* Necessário para posicionar a barra e os passos */
  width: 100%; /* Responsivo */
  max-width: 1200px; /* Limita a largura máxima */
  margin: 0 auto; /* Centraliza horizontalmente */
  height: 50px; /* Altura total da barra e passos */
}

.step-active {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%; /* Formato circular */
  background-color: #00368A; /* Cor do passo ativo */
  color: #fff; /* Texto branco */
  font-weight: bold;
  z-index: 2; /* Fica acima da barra */
}

.step {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%; /* Formato circular */
  border: 3px solid #00368A; /* Borda azul escura */
  background-color: #ffffff; /* Fundo branco */
  color: #00368A; /* Texto na cor da borda */
  font-weight: bold;
  z-index: 2; /* Fica acima da barra */
}

/* Barra de progresso */
.progress {
  position: absolute; /* Fica por baixo dos passos */
  top: 50%; /* Alinha verticalmente com os passos */
  left: 0; /* Começa no início do contentor */
  transform: translateY(-50%); /* Corrige o alinhamento vertical */
  width: 100%; /* Responsivo - ocupa a largura total do contentor pai */
  height: 10px;
  background-color: var(--bs-progress-bg); /* Cor do fundo da barra */
  border-radius: 5px; /* Cantos arredondados */
  z-index: 1; /* Fica atrás dos passos */
  overflow: hidden;
}

/* Barra preenchida */
.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%; /* Inicializa vazia */
  background-color: #00368A; /* Cor da barra preenchida */
  transition: width 0.6s ease; /* Animação suave ao avançar */
  z-index: 1;
}

.row-overflow {
  height: 50vh;
  overflow-y: auto;
}

/* Efeito de hover */
.form-hover:hover {
  background-color: #004aad; /* Fundo azul */
  color: white;
}

.form-hover:hover .options-configurador,
.form-hover:hover .section-description {
  opacity: 0; /* Faz o texto desaparecer */
  pointer-events: none; /* Evita interação com o texto escondido */
}

.select-btn {
  background-image: linear-gradient(90deg, #4382E1 -50%, #003694 80%);
  border-radius: 0.625rem;
  height: 2.813rem;
  width: 15rem;
  border: none;
  font-family: "Kinetica", "sans-serif", sans-serif;
  font-size: 0.75rem;
  text-align: center;
  color: #ffffff;
  line-height: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: flex; /* Usa Flexbox para centralizar o conteúdo */
  justify-content: center; /* Centraliza o texto horizontalmente */
  align-items: center; /* Centraliza o texto verticalmente */
  text-align: center; /* Garantia extra para centralização */
  line-height: normal; /* Evita desalinhamento vertical causado pela altura da linha */
  white-space: nowrap; /* Impede quebra de texto */
}
@media (max-width: 992px) {
  .select-btn {
    font-size: 0.9rem;
    padding-top: 1.5rem;
    line-height: 1.75rem;
  }
}
@media (max-width: 575px) {
  .select-btn {
    font-size: 0.75rem;
  }
}

/* Botão escondido por padrão */
.form-hover .select-btn {
  display: none; /* Esconde o botão inicialmente */
}

/* Mostrar o botão no hover */
.form-hover:hover .select-btn {
  display: inline-block; /* Mostra o botão quando se passa com o rato */
}

/* Esconde o texto no hover */
.form-hover:hover .options-configurador,
.form-hover:hover .section-description {
  display: none;
}

/* Estado selecionado */
.form-hover.selected {
  background-color: #90bcfa;
}

.specs-box {
  border-radius: 0.9375rem;
  box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  height: 8.5rem;
  height: 130px;
}
@media (min-width: 320px) and (max-width: 768px) {
  .specs-box {
    height: auto;
  }
}

.specs-input {
  border-radius: 5px;
  border: solid 0.5px #b6b6b6;
  background-color: var(--bs-body-bg);
  height: 35px;
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  text-align: left;
  color: #202020;
  line-height: 2rem;
  font-weight: 300;
  padding-left: 0.25rem;
  line-height: 2rem;
}
@media (max-width: 992px) {
  .specs-input {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}

.specs-input::placeholder, input:active {
  font-size: 1rem;
}

.custom-dropdown {
  position: relative;
  padding-right: 30px; /* Espaço para o SVG */
  width: 5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.custom-dropdown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px; /* Posiciona o SVG à direita */
  transform: translateY(-50%);
  width: 15px;
  height: 10px;
  background-image: url("../../../assets/img/dropdown.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none; /* O SVG não interfere no clique */
}

.dropdown-vidros {
  line-height: 1.25;
  height: 3rem;
  align-items: center !important;
  text-align: start;
}

.dropdown-small {
  width: 150px;
}
@media (min-width: 320px) and (max-width: 992px) {
  .dropdown-small {
    width: 100%;
  }
}

.dropdown-color {
  width: 10rem;
}
@media (min-width: 320px) and (max-width: 992px) {
  .dropdown-color {
    width: 100%;
  }
}

.dropdown-medium {
  width: 275px;
}
@media (min-width: 320px) and (max-width: 992px) {
  .dropdown-medium {
    width: 100%;
  }
}

.dropdown-large {
  width: 550px;
}
@media (min-width: 320px) and (max-width: 992px) {
  .dropdown-large {
    width: 100%;
  }
}

.dropdown-number {
  width: 105px;
}
@media (min-width: 320px) and (max-width: 992px) {
  .dropdown-number {
    width: 100%;
  }
}

.form-divider {
  height: 0.5px;
  background-color: #b6b6b6;
  width: 90%;
}

.form-menu {
  width: 100%;
  background: linear-gradient(180deg, #90bcfa 6%, rgba(255, 255, 255, 0.7));
  border: none;
  max-height: 12.5rem;
  overflow-y: scroll;
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  text-align: center;
  color: #202020;
  line-height: 2rem;
  font-weight: 300;
}
@media (max-width: 992px) {
  .form-menu {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 320px) and (max-width: 992px) {
  .form-menu {
    width: 100%;
  }
}

.form-check-label {
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  text-align: center;
  color: #202020;
  line-height: 2rem;
  font-weight: 300;
}
@media (max-width: 992px) {
  .form-check-label {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}

.color-menu {
  width: 20rem;
  background: linear-gradient(180deg, #90bcfa 6%, rgba(255, 255, 255, 0.7));
  border: none;
  max-height: 12.5rem;
  overflow-y: scroll;
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  text-align: center;
  color: #202020;
  line-height: 2rem;
  font-weight: 300;
}
@media (max-width: 992px) {
  .color-menu {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 320px) and (max-width: 992px) {
  .color-menu {
    width: 15rem;
  }
}

.form-control {
  padding-left: 0.25rem;
}

.aberturas-img {
  height: 3.75rem;
}

.form-box {
  border-radius: 0.9375rem;
  box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  height: 22rem;
}
@media (min-width: 320px) and (max-width: 576px) {
  .form-box {
    height: 20rem;
  }
}

.form-radio {
  font-size: 1.5rem;
  text-align: left;
}
@media (min-width: 320px) and (max-width: 576px) {
  .form-radio {
    font-size: 1rem;
  }
}

#form-date {
  color: #202020;
  font-size: 1.5rem;
  border: none;
}
@media (min-width: 320px) and (max-width: 576px) {
  #form-date {
    font-size: 1rem;
  }
}

.form-msg {
  height: 7.5rem;
}

@media (min-width: 320px) and (max-width: 576px) {
  .form-final {
    height: 26rem;
  }
}

.zoom-wrapper {
  position: relative;
  overflow: visible;
}

.zoom-big {
  position: absolute;
  top: 0;
  left: 120px; /* ajusta se quiseres mais espaço entre as imagens */
  width: 124px; /* 2x 62 */
  height: 272px; /* 2x 136 */
  display: none;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  background: white;
  border: 1px solid #ccc;
}

.zoom-thumb:hover + .zoom-big {
  display: block;
}

.dropdown-menu {
  position: relative;
  z-index: 10;
}

.door-menu {
  width: 20rem;
  background: linear-gradient(180deg, #90bcfa 6%, rgba(255, 255, 255, 0.7));
  border: none;
  max-height: 20rem;
  overflow-y: scroll;
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  text-align: center;
  color: #202020;
  line-height: 2rem;
  font-weight: 300;
}
@media (max-width: 992px) {
  .door-menu {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 320px) and (max-width: 992px) {
  .door-menu {
    width: 15rem;
  }
}

.form-check-input {
  width: 1.5em !important;
  height: 1.5em !important;
}

.form-check-input:checked {
  background-color: #00368A;
  border-color: #00368A;
}

.message-sent {
  background-image: url("/assets/img/confirmacao/bg-mensagem.webp");
  max-height: 100vh;
}
.message-sent .title-message-sent {
  position: absolute;
  font-size: 40px;
  bottom: 6rem;
}
@media (min-width: 320px) and (max-width: 576px) {
  .message-sent .title-message-sent {
    font-size: 1.25rem !important;
    bottom: 5rem !important;
  }
}
@media (min-width: 1400px) {
  .message-sent {
    padding: 6rem 0 !important;
  }
}

.col-window {
  position: relative;
}
@media (min-width: 320px) and (max-width: 576px) {
  .col-window {
    padding-top: 3rem;
  }
}

.col-padding {
  position: relative;
}

.message-box {
  position: absolute;
  border-radius: 15px;
  height: 150px;
  z-index: 0;
}
@media (min-width: 320px) and (max-width: 576px) {
  .message-box {
    height: 16rem;
    bottom: -13rem;
  }
}