.elementor-17333 .elementor-element.elementor-element-5e03642{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:flex-start;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:130px;--padding-bottom:130px;--padding-left:0px;--padding-right:0px;}.elementor-17333 .elementor-element.elementor-element-67afe00{--display:flex;}.elementor-widget-global{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-17333 .elementor-element.elementor-global-16571{font-family:"Apercu Light", Sans-serif;font-size:16px;font-weight:normal;color:var( --e-global-color-c98a9b9 );}.elementor-17333 .elementor-element.elementor-global-16571 a{color:var( --e-global-color-secondary );}.elementor-17333 .elementor-element.elementor-element-6b8bd2e{margin:20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for global, class: .elementor-global-16571 */.cotton_bread_crumb a:hover {
    text-decoration: underline!important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6b8bd2e */.archive-container {
    width: 1140px;
    max-width: 100%; /* Garante que não quebre em telas menores que 1140px */
    margin: 0 auto;
}

/* Ajuste para campos lado a lado */
.filters-section {
    display: flex;
    flex-direction: row; 
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
    flex-wrap: wrap; /* Permite quebra de linha se o espaço acabar */
}

/* Distribuição de largura dos campos */
.filters-section input[type="text"] {
    flex: 2; /* Busca ocupa mais espaço */
    min-width: 200px;
}

/* Estilização padronizada para todos os campos de seleção e texto */
.filters-section input[type="text"],
.filters-section select {
    font-family: 'Apercu', sans-serif;
    color: #7a7a7a;
    border: 1px solid #7a7a7a70;
    padding: 10px;
    height: 45px;
    background-color: #fff;
    outline: none;
}

/* Ajuste específico para os selects para manterem o mesmo tamanho */
.filters-section select {
    flex: 1;
    min-width: 150px;
    cursor: pointer;
}

/* Estilização do Botão de Limpar Filtros */
#clear-filters {
    font-family: 'Apercu', sans-serif;
    background-color: #084C7D;
    color: #ffffff !important;
    padding: 0 20px;
    height: 45px; /* Mesma altura dos inputs */
    border-radius: 0;
    font-size: 14px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#clear-filters:hover {
    background-color: #063a5f; /* Tom levemente mais escuro para o hover */
}

/* Grid de Registros */
#downloads-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.download-card {
    border: 1px solid #7a7a7a70;
    padding: 15px; /* Aumentei levemente o respiro interno */
    display: flex;
    align-items: center !important;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.download-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pdf-icon {
    width: 39px;
    height: 48px;
    flex-shrink: 0;
    object-fit: contain;
}

.post-title {
    font-family: 'Avant B', sans-serif;
    font-size: 16px;
    color: #084C7D;
    text-decoration: none;
    margin: 0;
    line-height: 1.2;
}

.download-btn {
    font-family: 'Apercu', sans-serif;
    background-color: #084C7D;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 0;
    text-decoration: none;
    font-size: 14px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #063a5f;
}

/* Paginação */
#pagination-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    font-family: 'Apercu', sans-serif;
    border: 1px solid #7a7a7a70;
    background: transparent;
    color: #7a7a7a;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn.active {
    background-color: #084C7D;
    color: #fff;
    border-color: #084C7D;
}

.page-btn:hover:not(.active) {
    background-color: #7a7a7a10;
}

/* Responsividade */
@media (max-width: 1024px) {
    .archive-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .filters-section {
        flex-direction: column;
        align-items: stretch;
    }

    .filters-section input[type="text"],
    .filters-section select,
    #clear-filters {
        width: 100%;
        flex: none;
    }

    #downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .download-card {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
    }

    .download-btn {
        width: 100%;
        text-align: center;
    }
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Apercu Light';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://cottonbrazil.com/wp-content/uploads/2024/03/apercu_light-webfont.woff2') format('woff2');
}
/* End Custom Fonts CSS */