/* Section Utilidade */

:root {
  --swiper-theme-color: #1360af !important;
}

/* Margin Top */
.mt-5 {
  margin-top: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}

/* Margin Bottom */
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}

/* Margin Left */
.ml-5 {
  margin-left: 5px;
}
.ml-10 {
  margin-left: 10px;
}
.ml-15 {
  margin-left: 15px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-30 {
  margin-left: 30px;
}

/* Margin Right */
.mr-5 {
  margin-right: 5px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-15 {
  margin-right: 15px;
}
.mr-20 {
  margin-right: 20px;
}
.mr-30 {
  margin-right: 30px;
}

/* Padding Top */
.pt-5 {
  padding-top: 5px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-15 {
  padding-top: 15px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-30 {
  padding-top: 30px;
}

/* Padding Bottom */
.pb-5 {
  padding-bottom: 5px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-30 {
  padding-bottom: 30px;
}

/* Padding Left */
.pl-5 {
  padding-left: 5px;
}
.pl-10 {
  padding-left: 10px;
}
.pl-15 {
  padding-left: 15px;
}
.pl-20 {
  padding-left: 20px;
}
.pl-30 {
  padding-left: 30px;
}

/* Padding Right */
.pr-5 {
  padding-right: 5px;
}
.pr-10 {
  padding-right: 10px;
}
.pr-15 {
  padding-right: 15px;
}
.pr-20 {
  padding-right: 20px;
}
.pr-30 {
  padding-right: 30px;
}

/* Background Colors */
.bg-primary {
  background-color: #007bff;
}
.bg-secondary {
  background-color: #6c757d;
}
.bg-success {
  background-color: #28a745;
}
.bg-danger {
  background-color: #dc3545;
}
.bg-warning {
  background-color: #ffc107;
}
.bg-info {
  background-color: #17a2b8;
}
.bg-light {
  background-color: #f8f9fa;
}
.bg-dark {
  background-color: #343a40;
}

/* Text Colors */
.text-primary {
  color: #007bff;
}
.text-secondary {
  color: #6c757d;
}
.text-success {
  color: #28a745;
}
.text-danger {
  color: #dc3545;
}
.text-warning {
  color: #ffc107;
}
.text-info {
  color: #17a2b8;
}
.text-light {
  color: #f8f9fa;
}
.text-dark {
  color: #343a40;
}

/* Font Sizes */
.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}

/* Text Alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* Display */
.d-block {
  display: block;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
.d-flex {
  display: flex;
}
.d-none {
  display: none;
}

/* Flex Utilities */
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}

/* Border Radius */
.rounded {
  border-radius: 0.25rem;
}
.rounded-circle {
  border-radius: 50%;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-pill {
  border-radius: 50rem;
}

/* Width */
.w-25 {
  width: 25%;
}
.w-50 {
  width: 50%;
}
.w-75 {
  width: 75%;
}
.w-100 {
  width: 100%;
}

/* Height */
.h-25 {
  height: 25%;
}
.h-50 {
  height: 50%;
}
.h-75 {
  height: 75%;
}
.h-100 {
  height: 100%;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Positioning */
.position-static {
  position: static;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.position-fixed {
  position: fixed;
}
.position-sticky {
  position: sticky;
}

/* Overflow */
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-scroll {
  overflow: scroll;
}

/* Section Utilidade */

.swiper-pagination-bullet-active {
  width: 25px !important;
  border-radius: 15px !important;
}
.swiper-pagination-bullet {
  transition: all 0.3s ease-in-out;
}

.vantagens-container {
  width: 100%;
  padding: 0px;
  margin: 0px;
  column-count: 2;
  -webkit-column-count: 2;
  list-style-type: none;
}

.text-decoration-none {
  text-decoration: none !important;
}

.rounded {
  border-radius: 40px;
}
.display-none {
  display: none !important;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.career18_item.active {
  display: block;
  opacity: 1;
}

/* Faqs */

.h-none {
  height: 0 !important;
}
.open {
  max-height: 100px !important; /* Defina um valor grande o suficiente para caber o conteúdo */
  transition: max-height 0.5s ease-in;
}

/* Categorias Homepage */

.gallery3_row {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Adjust the gap between rows as needed */
}

.row {
  display: flex;
  gap: 20px; /* Adjust the gap between columns as needed */
}

.row:first-of-type {
  flex-wrap: nowrap;
}

.row:last-of-type {
  flex-wrap: wrap;
}

.column {
  flex: 1;
}

/* Display Botao */
/* Estilos para a barra de pesquisa e seletor de categorias */

.form_field-wrapper textarea {
  resize: none; /* Bloqueia o redimensionamento do textarea */
}
.search-filter-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.search-input,
.category-select,
.button-filter {
  padding: 10px;
  font-size: 16px;
}

.search-input {
  flex: 1;
  border: 1px solid #ccc;
  font-family: Gotham, sans-serif;
  font-weight: 100;
  font-size: 12px;
}

.checkbox-terms-label {
  font-size: 12px;
}

.category-select {
  width: 200px;
  border: 1px solid #ccc;
  font-family: Gotham, sans-serif;
  font-weight: 100;
  font-size: 12px;
}

.button,
.form_input {
  font-family: Gotham, sans-serif;
}
.form_input {
  font-weight: 300;
}

.button-filter {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.button-filter:hover {
  background-color: #0056b3;
}

#filterButton,
#loadMoreButton {
  color: var(--text--alternate);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gotham, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
}
#filterButton:hover {
  color: var(--text-color--text-primary);
}

/* Estilos para o botão de carregar mais produtos */
.button-load-more {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.button-load-more:hover {
  background-color: #0056b3;
}

.button-6 {
  padding: 6px 14px;
}
.button-6 > div {
  font-size: 12px;
}

/* Escondendo os itens inicialmente */
.product-item {
  display: none;
  border: 1px solid transparent;
}
.product-item:hover {
  border: 1px solid #1360af;
  transition: 300ms;
}
.product-item:hover img {
  scale: 1.1;
  transition: 300ms;
}

/* Estilos para a mensagem de Nenhum Produto Encontrado */
.no-results {
  text-align: center;
  margin-top: 20px;
}

.no-results-image {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.no-results-text {
  font-size: 18px;
  color: #666;
}

/* Section Contact Page */

.checkbox-terms-div {
  display: flex;
}

.checkbox-terms-div:first-child input {
  margin-right: 10px !important;
}

/* Section Lista Solucao */

.tituloSolucao {
  color: var(--base-color-neutral--white);
  font-family: Gotham, sans-serif;
}

.tituloSolucao h5 {
  display: flex;
  flex-direction: column;
}

.column-reverse {
  flex-direction: column-reverse !important;
}

.content-layout458 {
  width: 100%;
}

/* Section Modal */

/* O modal (fundo) */
.modal {
  display: none; /* Oculto por padrão */
  position: fixed; /* Ficar no lugar */
  z-index: 1; /* Ficar na frente */
  padding-top: 100px; /* Localização do box */
  left: 0;
  top: 0;
  width: 100%; /* Largura total */
  height: 100%; /* Altura total */
  overflow: auto; /* Habilitar rolagem se necessário */
  background-color: rgb(0, 0, 0); /* Fundo cinza */
  background-color: rgba(0, 0, 0, 0.4); /* Fundo com opacidade */
}

/* Modal Conteúdo/Box */
.modal-content {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background-color: #fefefe;
  margin: auto;
  padding: 60px;
  overflow: auto;
  gap: 32px;
  border: 1px solid #888;
  width: 100%;
  max-width: 640px;
}

/*Logos*/
.logo-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  align-items: center;
}

.logo3_wrapper {
  flex: 0 1 175px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 2.5rem;
}

.logo-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.social-list {
  margin-top: 1em;
  display: flex;
  gap: 10px;
}
.navbar1_menu > div {
  display: flex;
  align-items: center;
}

.social-list a {
  text-decoration: none;
}

/* Botão de fechar (x) */

.button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.step-container {
  display: flex;
  align-items: center;
}
.step-container span {
  margin-right: 10px;
}

.form-step-footer {
  padding: 10px 0 10px 0px;
  display: flex;
  justify-content: flex-end;
}

.form-step-title {
  text-align: center;
  margin-bottom: 20px;
}
.steps {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.step {
  width: 30px;
  height: 30px;
  background-color: white;
  border: #1360af solid 1px;
  border-radius: 50%;
  color: #1360af;
  display: flex;
  text-align: center;
  justify-content: center;
  line-height: 30px;
}

.step.active {
  color: white;
  background-color: #1360af;
}

.form-step {
  display: none;
}

.form-step-active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-orcamento {
  overflow: auto;
}
.categories-list {
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-item {
  display: flex;
  padding: 8px 16px 8px 8px;
  background-color: #ffffff;
  border: 1px solid #0c397c;
  cursor: pointer;
  border-radius: 30px;
  text-align: center;
  align-items: center;
}

.category-item span {
  min-height: 40px;
  min-width: 40px;
  font-weight: bold;
  border-radius: 50%;
  border: 1px solid #0c397c;
  padding: 5px 10px 5px 10px;
  margin-right: 10px;
}

.category-item.selected {
  background-color: #0c397c;
  color: white;
}

body.modal-open {
  overflow: hidden;
}

/* Hovers */
.navbar1_link:hover,
.button-3:hover,
.footer2_link:hover {
  font-weight: 700;
  text-decoration: underline;
}
.button {
  border: 1px solid transparent !important;
}
.button:hover {
  background-color: white;
  border: 1px solid white !important;
  transition: 300ms;
  color: #1360af;
}
#loadMoreButton:hover {
  color: #1360af;
}
.button:hover .ver-produtos {
  color: #1360af;
}
.categoria-home {
  overscroll: hidden;
}
.categoria-home:hover {
  overflow: hidden;
  cursor: pointer;
  border-radius: 15px;
}
.categoria-home:hover img {
  scale: 1.1;
  transition: 300ms;
}
label {
  font-family: Gotham, sans-serif;
}

.simple-desc {
  font-size: 1.2em;
}

/* Section Modal */

/*   */
.testimonial13_content {
  padding-right: 40px;
}
.testimonial13_component.w-layout-grid {
  display: none;
}

.testimonial13_component.w-layout-grid.active {
  display: flex;
  opacity: 1 !important;
  transform: none !important;
}
.filter-section {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.button.filter-button {
  background: #ffffff;
  color: #1360af;
  border: 1px solid #1360af !important;
  font-size: 0.8em;
}
.button.filter-button.active {
  background: #1360af;
  color: #fff;
}
.testimonial13_client-image-wrapper {
  width: 100%;
  max-width: 500px;
}

.stat-4 {
  overflow: hidden;
}

/* Media queries */

@media only screen and (max-width: 991px) {
  .nav-mobile-force {
    background-color: white !important;
  }

  .nav-link-force {
    color: rgb(19, 96, 175) !important;
  }

  .w--current {
    text-decoration: underline !important;
  }

  .display-flex.menu {
    justify-content: flex-start !important;
    align-items: center !important;
    display: flex !important;
  }
  .simple-desc {
    font-size: 1.1em;
  }
}

@media only screen and (max-width: 640px) {
  .step-container-mobile {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .testimonial13_component.w-layout-grid {
    flex-wrap: wrap;
  }

  .step-container-mobile p {
    margin-top: 10px;
  }
  label {
    font-size: 14px;
  }
  .search-filter-section > .form-group {
    width: 48%;
  }
  .search-filter-section > .form-group > input,
  .search-filter-section > .form-group > select {
    width: 100%;
  }
  .search-filter-section > button {
    width: 100%;
  }
  .button.button-menu {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .column-mobile {
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 353px) {
  .step-container-mobile p {
    display: none !important;
  }
}

/* Media queries */
