/* BOTÕES */
.button { height: 42px; border-radius: 21px; padding: 0 20px; font-size: 13px; background-color: var(--button-color); color: var(--button-color-contrast); font-weight: 600; text-transform: uppercase; }

/* CARDS DE LINK / TREINAMENTOS */
.link { background-color: #FFF; border-radius: 10px; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); transition: box-shadow 0.3s ease-in-out; }
.link-image { position: relative; padding-bottom: 40%; overflow: hidden; }
.link-text { padding: 16px; }
.link-title { font-size: 24px; font-weight: 700; display: block; }

/* ALTURAS FIXAS USADAS NO SEU TEMA */
.height-align-item-alturafixa { display: flex; height: 500px; }
.height-align-content { display: flex; flex-direction: column; width: 100%; height: 100%; }

/* ==========================================================================
   MÁGICA DO FILTRO BLINDADO (Garante o visual independente do tema)
   ========================================================================== */
.culco-toolbar-blindada {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
}

.culco-toolbar-blindada .control {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 200px; /* Garante que os campos não fiquem espremidos no desktop */
}

.culco-toolbar-blindada .label-mini {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.culco-toolbar-blindada .label-mini i {
    color: var(--primary-color);
    margin-right: 4px;
}

.culco-toolbar-blindada .culco-input {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fafafa;
    font-family: inherit;
    font-size: 14px;
    color: #333;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.culco-toolbar-blindada .culco-input:focus {
    border-color: var(--primary-color);
    background: #fff;
}

/* Botões do Filtro */
.culco-toolbar-blindada .btn-submit-filter {
    background: var(--button-color, #333);
    color: var(--button-color-contrast, #fff);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    height: 43px; /* Alinha perfeitamente com a altura dos inputs */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.culco-toolbar-blindada .btn-submit-filter:hover { opacity: 0.9; }

.culco-toolbar-blindada .btn-clear-filter {
    background: #eee;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.culco-toolbar-blindada .btn-clear-filter:hover { background: #ddd; }

/* Responsividade Mágica para Mobile */
@media (max-width: 768px) {
    .culco-toolbar-blindada {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
    }
    
    .culco-toolbar-blindada .control {
        min-width: 100%;
    }
    
    .culco-toolbar-blindada .btn-submit-filter,
    .culco-toolbar-blindada .btn-clear-filter {
        width: 100%;
        margin-top: 5px;
    }
}