@charset "UTF-8";
ul {
  list-style-type: square; /* ou circle, disc, none */
  text-decoration: none;
}

ul a {
  color: #202020;
}

li::marker {
  color: #00368A;
}

/* 1. Remove todas as bordas do item do acordeão */
#accordion-1 .accordion-item {
  border: none;
}

/* 2. Adiciona só a borda de baixo */
#accordion-1 .accordion-item {
  border-bottom: 2px solid #B6B6B6;
}

/* 3. (Opcional) Remove a borda de baixo do último item, se não quiseres dupla linha no fim */
#accordion-1 .accordion-item:last-child {
  border-bottom: none;
}

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

.form-description {
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  text-align: left;
  color: #202020;
  line-height: 2rem;
  font-weight: 300;
}
@media (max-width: 992px) {
  .form-description {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 320px) and (max-width: 576px) {
  .form-description {
    line-height: 1.25rem;
  }
}

.step-item {
  font-family: "Kinetica", "sans-serif", sans-serif;
  font-size: 3rem;
  text-align: center;
  color: #00368A;
  line-height: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  width: 150px;
  padding: 0 !important;
}
@media (max-width: 992px) {
  .step-item {
    font-size: 0.9rem;
    padding-top: 1.5rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 320px) and (max-width: 576px) {
  .step-item {
    text-align: left;
    font-size: 1.5rem;
    line-height: 1rem;
    max-width: 80px;
  }
}

.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; 
  justify-content: center;
  align-items: center; 
  text-align: center; 
  line-height: normal; 
  white-space: nowrap; 
}
@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;
  }
}

.abertura-tipo {
  background-image: linear-gradient(180deg, #90bcfa 6%, rgba(255, 255, 255, 0.7));
  border-radius: 10px;
  width: 10rem;
  height: 8.5rem;
}
@media (min-width: 320px) and (max-width: 576px) {
  .abertura-tipo {
    width: 8rem;
  }
}

.abertura-tipo img {
  height: 5rem;
  width: auto;
  mix-blend-mode: luminosity;
}
@media (min-width: 320px) and (max-width: 576px) {
  .abertura-tipo img {
    height: 3.5rem;
  }
}

.abertura-tipo .form-description {
  text-align: center;
}

.bg-item {
  background-color: #ffffff;
}

.accordion-button:not(.collapsed) {
  background-color: white !important;
}

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

/* Efeito de hover */

/* .form-hover:hover {
  background-color: #90bcfa; 
  color: white;
} */

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


.accordion-button {
  height: 9rem;
}

#accordion-1 .accordion-button:not(.collapsed) {
  background-image: linear-gradient(180deg, rgba(67, 128, 215, 0.3) 6%, #4380D7); /* cor de fundo à tua escolha */
  color: #ffffff; /* cor do texto */
  text-shadow: 0px 2px 2px rgba(32, 32, 32, 0.6862745098);
}

#accordion-1 .accordion-button:not(.collapsed)::after {
  color: #ffffff;
}

#accordion-1 .accordion-button:not(.collapsed) .step-item {
  color: #ffffff;
  /* centra horizontalmente */
}

.btn-delete svg {
  font-size: 22px;
}

.specs-input {
  border-radius: 0.313rem;
  border: solid 0.5px #b6b6b6;
  background-color: var(--bs-body-bg);
  height: 2.188rem;
  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 {
  max-width: 100%;
  width: 100%;
}
@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%;
}

.nova-janela {
  height: 70px;
  border-radius: 10px;
  border: dashed 2px #00368a;
}

.btn-adicionar, .btn-copiar {
  font-size: 45px;
}

.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;
  backdrop-filter: blur(37px);
}
@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;
  backdrop-filter: blur(37px);
}
@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;
  }
}

.submit-arrow-form {
  width: 4rem;
}

.cor-custom {
  background-color: white;
}

.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;
  backdrop-filter: blur(37px);
}
@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;
  }
}

.aberturas-img {
  height: 3.75rem;
}

.swiper-slide.active .abertura-tipo {
  border: 2px solid #00368a;
  background: #eef5ff;
  border-radius: 8px;
}

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

.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: 35rem;
  }
}

.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: 99999;
  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;
}

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

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

.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;
  }
}

/* garante que todo accordion-body dentro de #accordion-2 preencha 100% do seu painel */
#accordion-2 .accordion-collapse > .accordion-body {
  width: 100% !important;
  padding: 0 !important;
}

.btn-delete {
  background-image: rgba(255, 255, 255, 0.7);
  font-family: "Kinetica", "sans-serif";
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #00368A;
  border: none;
  padding: 5px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3843137255), 0 0 #000, inset 1px 3px 0.75px #ffffff, inset 0 2px 1px rgba(255, 255, 255, 0.5019607843);
}

.dropdown-hover:hover > .dropdown-menu-hover {
  display: block;
}

.dropdown-hover > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

.icon {
  color: #00368A;
}

.solar-menu { overflow: visible !important; }
.dropdown-menu.form-menu li { position: relative; }

.dropdown-menu.form-menu .submenu{
display: none;      /* escondido por defeito */
position: static;   /* abre para baixo */
min-width: 100%;
margin: 0;
}
.dropdown-menu.form-menu .submenu.show{ display: block; }

#btn-vidro-tipo-X {
text-wrap: auto;
}

button[title] {
  position: relative;
  overflow: visible; /* permite que o ::after ultrapasse os limites do botão */
}

button[title]::before {
  content: attr(title);
  position: absolute;
  top: 80%; /* aparece acima do botão */
  left: 40%;
  transform: translateX(-70%);
  background-image: linear-gradient(180deg, rgba(67, 128, 215, 0.5) 6%, #4380D7);
  backdrop-filter: 45px;
  font-family: "Kinetica", "sans-serif", sans-serif;
  font-size: 0.65rem;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0px 2px 2px rgba(32, 32, 32, 0.9);
  height: 30px;
  width: fit-content;
  text-align: center;
  vertical-align: middle !important;
  white-space: nowrap;
  padding: 0 0.5rem !important;
  opacity: 0;
  border-radius: 0.25rem !important;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Só aparece em hover */
button[title]:hover::before {
  opacity: 1;
}