.cd-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: hsl(224deg 12.2% 75.88% / 15%);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    color: #0A366F;
    flex-direction: column;
}

.cd-btn {
    display: block;
    background: #fff0;
    padding: 4px 40px;
    border-radius: 60px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #0A366F;
    border: 2px solid #0A366F;
    font-size: 16px;
    margin-top: 20px;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.cd-btn:hover {
   background-color: #009FE3;
   border: 2px solid #009FE3;
   color: #fff;
}

.cd-doc-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    font-weight: 700;
}

.cd-doc-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0A366F;
    text-decoration: none;
    font-weight: 400;
}

.cd-doc-info a:hover {
    color: #0A366F;
}

.cd-doc-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.title-search {
    display: flex;
    gap: 40px;
    align-items: baseline;
    flex-wrap: wrap;
}

.cd-downloads-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    justify-content: space-between;
   flex-direction: row;
}

.cd-filters-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cd-filter-title h3 {
    font-size: 32px !important;
    color: #222222;
    margin: 0;
    white-space: nowrap;
    font-weight: 300 !important;
}

.cd-filter-search {
    position: relative;
}

.cd-filter-search input {
    padding: 6px 12px;
    font-size: 16px;
    border: none !important;
    min-width: 180px;
    color: #6B7C96;
}

#cd-search {
    padding: 8px 12px 8px 36px; /* espaço à esquerda para o ícone */
    background-image: url('https://laboraltec.com.br/wp-content/uploads/2024/12/lupa.svg');
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: 10px center;
    background-color: #fff;
}

#cd-search::placeholder {
    color: #6B7C96;
}

#cd-search:focus {
    outline: none;
    border-color: none;
}

.cd-filter-categoria {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #0A366F;
  border-bottom: 1px solid hsl(215deg 35% 78% / 30%);
  flex-wrap: wrap;
  max-width: min-content;
}

.cd-filter-categoria label {
  font-weight: 400;
}

.cd-filter-categoria select {
  appearance: none;
  border: none;
  padding: 2px 24px 0px 0px;
  font-size: 16px;
  font-weight: 700;
  color: #0A366F;
  background: transparent;
  cursor: pointer;
  position: relative;
  width: auto;
  min-width: 100px;
  max-width: 100%;
}

.cd-filter-categoria select option {
  font-size: 14px;
}

.cd-filter-categoria select:focus-visible {
  outline: none;
  box-shadow: none;
}

.cd-filter-categoria {
  position: relative;
}

.cd-filter-categoria::after {
  content: "▾";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #0A366F;
  font-size: 14px;
  pointer-events: none;
}

@media (max-width: 1024px) {
.cd-filter-categoria {
  max-width: 100% !important;
}
.title-search {
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
}

@media (min-width: 1024px) { 
#cd-downloads-list .cd-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
}