@charset "UTF-8";
/* antialiasing  */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.bloco-operacoes {
  background-image: url('../images/bg-diamante.jpg') !important;
  background-position: center center;
  background-repeat: repeat;
  background-size: 55% auto;
  background-attachment: fixed;

}

.bloco-busca {
  background: #2b2b2b;
  color: #fff;
}



.letras div a {
  cursor: pointer;
  border: solid 1px #fff;
  font-size: 1.3rem;
  width:22px;
  height: 15px;
  text-align: center;
  display: table
}


.modalcristal-open-no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* -------------------------------------------------------------------------- */
/* Layout Geral                               */
/* -------------------------------------------------------------------------- */

.filter-field {
  display: flex;
  flex-direction: row;
  /*width: 100dvw;*/
}

.filter-search {
  background: #2b2b2b;
  padding: 60px 15px;
  display: flex;
  flex: 1;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.form-search {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.input-name {
  display: flex;
  gap: 4px;
  width: 100%;
  border-bottom: 2px solid #ccc;
  overflow: hidden;
  align-items: center;
  padding: 5px;
}

.input-name > input[type="text"] {
  flex-grow: 1;
  background: transparent;
  border: none;
  font-size: 1rem;
  color: white;
  outline: none;
}

.input-name > input[type="text"]::placeholder {
  color: #888;
}

.input-name > button {
  padding: 8px;
  cursor: pointer;
  color: white;
  background: transparent;
  border: none;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.input-name > button:hover {
  background-color: #ffffff16;
}

#search_segment {
  background: transparent;
  border: none;
  color: white;
  padding: 12px 12px 12px 0;
  border-bottom: 2px solid #ccc;
  cursor: pointer;
  width: 100%;
}

#search_segment option {
  background-color: #2b2b2b;
  color: white;
}

.grid-letters {
  display: grid;
  grid-template-columns: repeat(13, auto);
  row-gap: 8px;
}

.grid-letters > a {
  text-transform: uppercase;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  padding: 2px;
  transition: background-color 0.3s ease;
  color: white!important;
  text-decoration: none;
}

.grid-letters > a:hover {
  background-color: #ffffff16;
}

.title-letters {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color:#fff!important;
}

.filter-results {
  background: #2b2b2bf0;
  padding: 60px 15px;
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  row-gap: 16px;
  column-gap: 24px;
  justify-content: center;
  align-items: start;
  width: 100%;
  max-width: 900px;
}

.item-result {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 10px 0 10px 25px;
  padding-bottom: 15px;
}

.item-result:last-child {
  border-bottom: none;
}

.item-result::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 3px;
  background: #32c5d2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.item-result > a {
  display: block;
  color: #fff!important;
  font-size: 1em;
  margin-bottom: 4px;
  cursor: pointer;
}

.item-result > a:hover {
  text-decoration: underline;
}

.item-result > small {
  display: block;
  color: #5c6873;
  text-decoration: none;
  font-size: 0.9em;
}

/* -------------------------------------------------------------------------- */
/* Modal                                   */
/* -------------------------------------------------------------------------- */

.modalcristal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modalcristal.open {
  visibility: visible;
  opacity: 1;
}

.modalcristal-content {
  background-color: #fff;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100vh;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modalcristal.open .modalcristal-content {
  transform: translateX(0);
}

.modalcristal-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
}

.nav-arrow {
  background-color: transparent;
  color: #bbc0df;
  border: 2px solid #bbc0df;
  padding: 8px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  color: #fff;
  border-color: #fff;
}

.left-arrow {
  margin-right: 10px;
}

.right-arrow {
  margin-left: 10px;
}

.modalcristal-progress {
  font-size: 14px;
  color: #bbc0df;
  flex-grow: 1;
  text-align: center;
  white-space: nowrap;
}

.close-button {
  background: none;
  color: #bbc0df;
  border: 2px solid #bbc0df;
  font-size: 30px;
  width: 36px;
  height: 36px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  transition: color 0.3s ease;
  padding: 5px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-button:hover,
.close-button:focus {
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}

.modalcristal-inner-content {
  max-width: 1200px;
  gap: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modalcristal-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 40px;
  align-items: flex-start;
}

.modalcristal-main-title {
  width: 100%;
  text-align: left;
  font-size: 2.5em;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #32c5d2;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Estilos das colunas */
.modalcristal-column {
  flex: 1;
  min-width: 300px;
  padding: 0 20px;
  box-sizing: border-box;
}

.left-column {
  max-width: 40%;
  padding-right: 40px;
  border-right: 1px solid #eee;
}

.right-column {
  max-width: 60%;
  padding-left: 40px;
}

/* Seção da Logo */
.logo-container {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 30px;
}

.logo-container img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Estilos gerais para as seções (DESCRIÇÃO, PROFISSIONAIS, CONTATO) */
.modalcristal-section {
  margin-bottom: 30px;
}

.modalcristal-section:last-child {
  margin-bottom: 0;
}

.modalcristal-section h3.section-title {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #32c5d2;
  text-transform: uppercase;
}

.modalcristal-section p.section-content {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
}

/* Estilos para PROFISSIONAIS */
.professional-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.professional-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.professional-item p {
  margin: 0;
  font-size: 0.95em;
  color: #666;
}

.professional-item strong {
  color: #333;
  font-weight: normal;
}

/* Estilos para CONTATO */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95em;
  color: #666;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item strong {
  color: #333;
  font-weight: normal;
  display: inline-block;
  min-width: 120px;
}

.contact-item a {
  color: #007bff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/* Media Queries                               */
/* -------------------------------------------------------------------------- */

@media (max-width: 992px) {
  .modalcristal-content-wrapper {
    flex-direction: column;
    padding: 20px 20px;
  }

  .modalcristal-main-title {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .modalcristal-column {
    width: 100%;
    max-width: 100%;
    padding: 0;
    border-right: none;
    margin-bottom: 30px;
  }

  .left-column {
    padding-right: 0;
  }

  .right-column {
    padding-left: 0;
  }

  .logo-container {
    width: 100%;
    margin: 0 auto 20px auto;
  }
  .modalcristal-section {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .filter-field {
    flex-direction: column;
  }

  .filter-search,
  .filter-results {
    padding: 40px 20px;
  }

  .grid-letters {
    grid-template-columns: repeat(10, 1fr);
  }

  .grid-results {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    row-gap: 12px;
    column-gap: 16px;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .filter-field {
    flex-direction: column;
  }

  .filter-search,
  .filter-results {
    padding: 30px 10px;
  }

  .form-search {
    max-width: 90%;
  }

  .grid-letters {
    grid-template-columns: repeat(7, 1fr);
    font-size: 16px;
  }

  .grid-results {
    grid-template-columns: 1fr;
    row-gap: 10px;
    column-gap: 0;
    max-width: 300px;
  }

  .item-result {
    padding: 8px 0 8px 20px;
  }

  .item-result::before {
    width: 12px;
  }

  .modalcristal-header {
    padding: 10px 15px;
  }

  .nav-arrow {
    font-size: 20px;
    width: 30px;
    height: 30px;
  }

  .modalcristal-progress {
    font-size: 14px;
  }

  .close-button {
    font-size: 26px;
  }

  .modalcristal-content-wrapper {
    padding: 15px 15px;
  }
  .modalcristal-main-title {
    font-size: 1.8em;
  }
  .logo-container {
    width: 100%;
  }
  .modalcristal-section h3.section-title {
    font-size: 1em;
  }
  .modalcristal-section p.section-content,
  .professional-item p,
  .contact-item {
    font-size: 0.85em;
  }
  .contact-item strong {
    min-width: 90px;
  }
}

@media (min-width: 1025px) {
  .filter-field {
    flex-direction: row;
  }

  .grid-results {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }

  .modalcristal-content-wrapper {
    flex-direction: row;
  }

  .left-column {
    border-right: 1px solid #eee;
    padding-right: 40px;
  }

  .right-column {
    padding-left: 40px;
  }
}
