/* ===== Estilos principais da página de vagas ===== */
/* Força toda a página a utilizar a fonte Poppins */
body, h1, h2, h3, h4, h5, h6, p, a, span, button, input, select, textarea {
    font-family: 'Poppins', sans-serif !important;
}

/* Corrige o bug de caractere estranho no breadcrumb (Home • Vagas) e garante alinhamento */
.breadcrumb {
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}
.breadcrumb > li {
    display: inline-flex !important;
    align-items: center !important;
}
.breadcrumb > li + li:before { 
    content: "›" !important; 
    font-size: 16px !important; 
    margin: 0 8px !important;
    color: #fff !important;
    vertical-align: middle !important;
    display: inline-block !important;
}

/* SEÇÃO DA BARRA DE FILTROS (LARGURA TOTAL - IGUAL IMAGE_29672B.PNG) */
.filter-section {
    background-color: #ffffff; /* Fundo limpo/clean */
    padding: 22px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); /* Sombra suave */
    border-bottom: 1px solid #f1f5f9;
}
.filter-label {
    font-size: 11px;
    font-weight: 700;
    color: #00592d;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
    letter-spacing: 0.3px;
}
.filter-input {
    height: 46px; /* Maior e clean */
    border: 1.5px solid #e2e8f0;
    border-radius: 24px; /* Mais arredondado */
    background: #f8fafc;
    padding-left: 16px;
    width: 100%;
    font-size: 14px;
    color: #1a202c;
    transition: all 0.2s ease-in-out;
    outline: none;
}
.filter-input:focus {
    border-color: #006633;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 102, 51, 0.12);
}
.filter-input::placeholder {
    color: #94a3b8;
}
.filter-actions {
    margin-top: 0px;
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}
.btn-filtrar {
    background-color: #006633;
    color: #fff !important;
    border: none;
    height: 46px; /* Altura igual ao input */
    padding: 0 28px;
    font-weight: 600;
    border-radius: 24px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 102, 51, 0.15);
}
.btn-filtrar i {
    margin-right: 6px;
}
.btn-filtrar:hover {
    background-color: #004d26;
    box-shadow: 0 4px 12px rgba(0, 102, 51, 0.25);
    transform: translateY(-1px);
}
.btn-limpar {
    color: #4a5568 !important;
    background: #edf2f7;
    border: none;
    height: 46px;
    margin-left: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    border-radius: 24px;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-limpar:hover {
    color: #1a202c !important;
    background: #e2e8f0;
    transform: translateY(-1px);
}

/* SIDEBAR DE CIDADES (IGUAL IMAGE_295557.PNG) */
.cocari-sidebar { 
    border: 1px solid #e2e8f0; 
    border-radius: 4px; 
    overflow: hidden; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.03); 
}
.cocari-sidebar-header { 
    background-color: #006633; 
    color: #ffffff; 
    padding: 12px 15px; 
    font-size: 13px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}
.cocari-sidebar-header i { 
    margin-right: 6px; 
}
.cocari-menu-item { 
    color: #4a5568 !important; 
    border: none !important; 
    border-bottom: 1px solid #edf2f7 !important; 
    padding: 11px 15px !important; 
    font-size: 13px; 
    background-color: #ffffff !important; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    text-decoration: none !important; 
    transition: background 0.2s, color 0.2s;
}
.cocari-menu-item:last-child { 
    border-bottom: none !important; 
}
.cocari-menu-item:hover { 
    background-color: #f8fafc !important; 
    color: #006633 !important; 
}
.cocari-menu-item.active {
    background-color: #e8f5ee !important;
    color: #006633 !important;
    font-weight: 700;
}
.badge-cocari { 
    background-color: #006633; 
    color: #fff; 
    font-size: 11px; 
    font-weight: 600; 
    width: 20px; 
    height: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
}

#listaVagasContainer {
    display: flex !important;
    flex-wrap: wrap !important;
}
#listaVagasContainer > div {
    display: flex !important;
    flex-direction: column !important;
    float: none !important;
}

/* CARDS DE VAGAS (IGUAL IMAGE_295557.PNG) */
.vaga-card { 
    background: #e8f5ee; 
    border: 1px solid #e8e8e8; 
    border-radius: 4px; 
    padding: 16px; /* Reduzido de 25px para dar mais espaço */
    margin-bottom: 25px; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.vaga-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.vaga-head-content {
    flex: 1;
    min-width: 0;
}
.vaga-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 102, 51, 0.12);
    border-color: #006633;
}
.vaga-titulo { 
    color: #00592d; 
    font-size: 14px; 
    font-weight: 700; 
    margin-top: 0; 
    margin-bottom: 4px; 
    text-transform: uppercase; 
    letter-spacing: 0.3px; 
}
.vaga-card-footer {
    margin-top: auto;
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 15px;
}
.vaga-card-footer {
    margin-top: auto;
    display: flex;
    gap: 8px;
    align-items: center;
    padding-top: 15px;
    flex-wrap: wrap; /* Evita quebra para fora do card */
}
.btn-candidatar-bottom {
    flex: 1;
    background-color: #006633;
    color: #fff !important;
    font-size: 10px; /* Reduzido levemente para caber perfeitamente */
    font-weight: 700;
    padding: 9px 8px; /* Reduzido levemente */
    border-radius: 4px;
    text-transform: uppercase;
    border: none;
    text-align: center;
    text-decoration: none !important;
    letter-spacing: 0.3px;
    transition: background 0.2s;
    display: inline-block;
    white-space: nowrap;
}
.btn-candidatar-bottom:hover {
    background-color: #004d26;
}
.btn-detalhes-bottom {
    flex: 1;
    background-color: transparent;
    color: #006633 !important;
    border: 1.5px solid #006633;
    font-size: 10px; /* Reduzido levemente */
    font-weight: 700;
    padding: 7.5px 8px; /* Reduzido levemente */
    border-radius: 4px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none !important;
    letter-spacing: 0.3px;
    transition: background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.btn-detalhes-bottom:hover {
    background-color: #e8f5ee;
}
.vaga-local { 
    color: #c53030; 
    font-size: 13px; 
    font-weight: 600; 
    margin-bottom: 12px; 
}
.vaga-local i { 
    margin-right: 4px; 
}
.vaga-desc { 
    color: #666; 
    font-size: 13px; 
    line-height: 1.5; 
    margin-bottom: 12px; 
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 54px;
}
.vaga-tags { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 6px 5px;
    align-items: center;
}
.vaga-tag { 
    font-size: 9.5px; /* Reduzido de 11px */
    font-weight: 600; 
    padding: 2px 7px; /* Reduzido de 3px 9px */
    border-radius: 4px; 
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    white-space: nowrap;
}
.tag-gray { background-color: #f0f0f0; color: #555; }
.tag-blue { background-color: #ebf8ff; color: #2b6cb0; }
.tag-purple { background-color: #faf5ff; color: #6b46c1; }

/* Botão de login na barra de filtros */
.btn-login-filter {
    background-color: #ffffff;
    color: #006633 !important;
    border: 2px solid #006633;
    font-weight: 600;
    height: 46px; /* Altura igual ao input */
    padding: 0 26px;
    border-radius: 24px;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    margin-left: auto;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 102, 51, 0.05);
}
.btn-login-filter:hover {
    background-color: #006633;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 51, 0.15);
}
.btn-login-logged {
    background-color: #006633 !important;
    color: #ffffff !important;
    border: 2px solid #006633 !important;
}
.btn-login-logged:hover {
    background-color: #004d26 !important;
    color: #ffffff !important;
    border-color: #004d26 !important;
}
.filter-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}
.search-and-filters-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
}
.search-input-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 500px;
}
.search-input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #006633;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    margin: 0;
}
.search-input-wrapper .filter-input {
    padding-left: 46px;
    width: 100%;
}
.login-filter-box {
    flex-shrink: 0;
}
.filter-actions-top {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.login-text-mobile {
    display: none;
}
@media (max-width: 991px) {
    .login-text-desktop {
        display: none;
    }
    .login-text-mobile {
        display: inline;
    }
}

/* Ajustes responsivos para tablet (iPad e similares) */
@media (min-width: 768px) and (max-width: 1024px) {
    .filter-section {
        padding: 10px 0;
    }
    .filter-actions-top {
        justify-content: space-between !important;
        gap: 8px !important;
        width: 100%;
    }
    .filter-actions-top .btn-filtrar,
    .filter-actions-top .btn-limpar,
    .filter-actions-top .btn-login-filter {
        flex: 1;
        margin-left: 0 !important;
        height: 34px;
        padding: 0 10px;
        font-size: 11px;
    }
    .vaga-card {
        padding: 16px;
        margin-bottom: 16px;
    }
    .vaga-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
    .vaga-titulo {
        font-size: 13px;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .vaga-tags {
        gap: 5px 4px;
        margin-bottom: 8px;
    }
    .vaga-tag {
        font-size: 10px;
        padding: 2px 6px;
        white-space: nowrap;
    }
    .vaga-local {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .vaga-desc {
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 52px;
    }
    .vaga-card-footer {
        gap: 6px;
        padding-top: 10px;
    }
    .btn-candidatar-bottom,
    .btn-detalhes-bottom {
        font-size: 9.5px;
        padding-left: 6px;
        padding-right: 6px;
    }
}

/* Ajustes responsivos para telas de celular */
@media (max-width: 767px) { 
    /* Ocultar características (tags) no Mobile */
    .vaga-tags {
        display: none !important;
    }

    /* Compactação da Seção de Filtros no Mobile */
    .filter-section {
        padding: 8px 0 !important;
    }
    .filter-section .row {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
    .filter-section [class*="col-"] {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .filter-label {
        font-size: 9px !important;
        margin-bottom: 2px !important;
    }
    .filter-input {
        height: 40px !important;
        font-size: 14px !important;
        padding-left: 42px !important;
        border-radius: 20px !important;
    }
    .filter-input::placeholder {
        font-size: 13px !important;
    }
    .filter-flex-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        margin-top: 6px !important;
    }
    .search-and-filters-box {
        display: contents !important;
    }
    .search-input-wrapper {
        grid-column: span 3 !important;
        width: 100% !important;
        max-width: none !important;
    }
    .btn-filtrar {
        grid-column: span 1 !important;
        height: 40px !important;
        font-size: 11px !important;
        padding: 0 10px !important;
        border-radius: 20px !important;
        width: 100% !important;
        margin: 0 !important;
        justify-content: center !important;
        display: inline-flex !important;
    }
    .btn-limpar {
        grid-column: span 1 !important;
        height: 40px !important;
        font-size: 11px !important;
        padding: 0 10px !important;
        border-radius: 20px !important;
        width: 100% !important;
        margin: 0 !important;
        justify-content: center !important;
        display: inline-flex !important;
        margin-left: 0 !important;
    }
    .filtro-divisor-vertical {
        display: none !important;
    }
    .btn-warning-suporte {
        grid-column: span 1 !important;
        height: 40px !important;
        font-size: 11px !important;
        padding: 0 10px !important;
        border-radius: 20px !important;
        width: 100% !important;
        margin: 0 !important;
        justify-content: center !important;
        display: inline-flex !important;
    }

    /* Duas colunas de vagas por linha no mobile */
    #listaVagasContainer {
        margin-left: -4px;
        margin-right: -4px;
    }
    #listaVagasContainer > .vaga-coluna {
        width: 50% !important;
        float: left !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
    
    .vaga-card {
        padding: 12px !important;
        margin-bottom: 15px !important;
    }
    .vaga-head {
        margin-bottom: 8px;
    }
    
    .vaga-card-icon {
        display: none !important; /* Oculta o ícone no mobile */
    }
    
    .vaga-titulo {
        font-size: 12px !important;
        margin-bottom: 8px !important;
        height: 36px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .vaga-tags {
        gap: 4px !important;
    }
    
    .vaga-tag {
        font-size: 9px !important;
        padding: 2px 5px !important;
    }
    
    .vaga-local {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }
    
    .vaga-desc {
        display: none !important; /* Oculta a descrição no mobile */
        min-height: 0 !important;
    }
    
    .vaga-card-footer {
        flex-direction: column !important;
        gap: 6px !important;
        padding-top: 10px !important;
    }
    
    .btn-candidatar-bottom, .btn-detalhes-bottom {
        width: 100% !important;
        flex: none !important;
        font-size: 9px !important;
        padding: 6px 4px !important;
        height: auto !important;
    }
    .filter-actions-top {
        justify-content: initial !important;
    }
    .filter-actions-top .btn-login-filter {
        margin-left: 0 !important;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ÍCONE DOS CARDS DE VAGAS */
.vaga-card-icon {
    width: 42px; /* Reduzido de 50px */
    height: 42px; /* Reduzido de 50px */
    min-width: 42px;
    background-color: #e8f5ee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006633;
    font-size: 18px; /* Reduzido de 22px */
}

/* BOTÃO VER TODAS AS CIDADES */
.btn-ver-cidades {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: none;
    border-top: 1px solid #e2e8f0;
    padding: 11px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #006633 !important;
    text-decoration: none !important;
    transition: background 0.2s;
    cursor: pointer;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}
.btn-ver-cidades:hover {
    background: #e8f5ee;
}

/* DRAWER DE FILTROS LATERAIS */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    z-index: 1100;
    display: none;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.drawer-overlay.is-active {
    display: flex;
    opacity: 1;
}
.drawer-container {
    background: #ffffff;
    width: 100%;
    max-width: 380px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer-overlay.is-active .drawer-container {
    transform: translateX(0);
}
.drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid #dfe4ea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.drawer-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #004d26;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #7a858f;
    cursor: pointer;
}
.drawer-close:hover {
    color: #2c3540;
}
.drawer-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}
.drawer-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}
.drawer-field label {
    font-size: 11px;
    font-weight: 700;
    color: #7a858f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}
.drawer-field input[type="text"], .drawer-field select {
    width: 100%;
    background: #fafafa;
    border: 1.5px solid #dfe4ea;
    border-radius: 6px;
    padding: 10px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #2c3540;
    outline: none;
    transition: border-color 0.2s;
}
.drawer-field input[type="text"]:focus, .drawer-field select:focus {
    border-color: #006633;
    background: #fff;
}
.drawer-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}
.drawer-checkbox-label {
    font-size: 13.5px;
    color: #2c3540;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500 !important;
    text-transform: none !important;
    cursor: pointer;
}
.drawer-checkbox-label input {
    cursor: pointer;
}
.drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid #dfe4ea;
    display: flex;
    gap: 12px;
    background: #fdfdfd;
}
.btn-drawer-sec {
    flex: 1;
    background: #f1f3f5;
    color: #495057 !important;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
}
.btn-drawer-sec:hover {
    background: #e9ecef;
}
.btn-drawer-prim {
    flex: 2;
    background: #006633;
    color: #ffffff !important;
    border: none;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
}
.btn-drawer-prim:hover {
    background: #004d26;
}

.btn-candidatar-bottom {
    white-space: nowrap !important;
}

/* CHIPS DE FILTRO ATIVO */
.filtro-chip {
    display: inline-flex;
    align-items: center;
    background-color: #e8f5ee;
    border: 1px solid #c6edd5;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #006633;
    gap: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    animation: fadeIn 0.2s ease;
}
.filtro-chip strong {
    color: #004d26;
    font-weight: 700;
}
.filtro-chip-btn {
    background: #006633;
    border: none;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background-color 0.2s, transform 0.1s;
    font-family: 'Poppins', sans-serif;
}
.filtro-chip-btn:hover {
    background-color: #c53030;
    transform: scale(1.05);
}

/* ESTILOS DA BARRA DE BUSCA STICKY */
.sticky-search-container {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid #006633;
    z-index: 1040;
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    transform: translateY(-100%);
    opacity: 0;
}
.sticky-search-container.show {
    transform: translateY(0);
    opacity: 1;
}
.sticky-search-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}
.sticky-search-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.sticky-search-input-box {
    position: relative;
    flex-grow: 1;
    max-width: 600px;
}
.sticky-search-input-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #006633;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}
.sticky-search-input {
    height: 42px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #f8fafc;
    padding-left: 42px;
    padding-right: 15px;
    width: 100%;
    font-size: 14px;
    color: #333;
    transition: all 0.2s;
    outline: none;
}
.sticky-search-input:focus {
    border-color: #006633;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 102, 51, 0.15);
}
.sticky-search-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.btn-filtrar-sticky {
    background-color: #006633;
    color: #fff !important;
    border: none;
    height: 38px;
    padding: 0 18px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s, transform 0.1s;
    cursor: pointer;
}
.btn-filtrar-sticky:hover {
    background-color: #004d26;
    transform: translateY(-1px);
}
.btn-limpar-sticky {
    color: #555 !important;
    background: none;
    border: 1px solid #cbd5e1;
    height: 38px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    border-radius: 20px;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-limpar-sticky:hover {
    color: #111 !important;
    background: #f1f5f9;
    border-color: #94a3b8;
}
.btn-login-sticky {
    background-color: #006633;
    color: #ffffff !important;
    font-weight: 700;
    height: 38px;
    padding: 0 18px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s, transform 0.1s;
    border: none;
    text-decoration: none !important;
}
.btn-login-sticky:hover {
    background-color: #004d26;
    transform: translateY(-1px);
}
@media (max-width: 767px) {
    .sticky-search-container {
        height: 60px;
    }
    .sticky-search-logo {
        display: none;
    }
    .btn-limpar-sticky, .btn-login-sticky {
        display: none !important;
    }
    .sticky-search-wrapper {
        gap: 10px;
    }
    .sticky-search-input-box {
        max-width: none;
    }
    .sticky-search-input {
        height: 36px;
        font-size: 13px;
        padding-left: 34px;
    }
    .sticky-search-input-box i {
        left: 12px;
        font-size: 14px;
    }
    .btn-filtrar-sticky {
        height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }
}

/* BARRA LATERAL DE FILTRO POR CIDADES */
.cidades-sidebar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
}
.cidades-sidebar-title {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cidades-sidebar-title i {
    color: #006633;
}
.cidades-search-container {
    position: relative;
    margin-bottom: 15px;
}
.cidades-search-container input {
    width: 100%;
    height: 38px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0 12px 0 35px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    outline: none;
    transition: all 0.2s ease;
}
.cidades-search-container input:focus {
    border-color: #006633; /* verde */
    box-shadow: 0 0 0 3px rgba(0, 102, 51, 0.15);
}
.cidades-search-container i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
}
.cidades-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Scrollbar customizada para a lista de cidades */
.cidades-list::-webkit-scrollbar {
    width: 4px;
}
.cidades-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}
.cidades-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.cidades-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.cidade-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s ease;
    user-select: none;
}
.cidade-item:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateX(2px);
}
.cidade-item.active {
    background: #e8f5ee;
    border-color: #c6edd5;
    color: #004d26;
    font-weight: 600;
}
.cidade-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cidade-icon {
    width: 26px;
    height: 26px;
    background: #006633;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    flex-shrink: 0;
}
.cidade-badge {
    background: #006633;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.cidade-item:hover .cidade-badge {
    background: #004d26;
}
.cidade-item.active .cidade-badge {
    background: #006633;
}
/* Ajustes para tablet/iPad */
@media (min-width: 768px) and (max-width: 991px) {
    .cidades-sidebar {
        padding: 10px !important;
    }
    .cidade-item {
        padding: 8px 10px !important;
        font-size: 11.5px !important;
    }
    .cidade-badge {
        width: 18px !important;
        height: 18px !important;
        font-size: 9px !important;
    }
}

@media (max-width: 767px) {
    .cidades-sidebar-col {
        display: none !important;
    }
}

/* ===== Hover do botão de conta no cabeçalho ===== */
.btn-login-header-top:hover {
                background-color: rgba(255, 255, 255, 0.25) !important;
                border-color: rgba(255, 255, 255, 0.4) !important;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
            }

/* ===== Botão de ajuda (suporte) na barra de filtros ===== */
.btn-warning-suporte {
                            background-color: #ff9800 !important;
                            border: 2px solid #e65100 !important;
                            color: #ffffff !important;
                            font-weight: 700;
                            height: 40px;
                            padding: 0 18px;
                            border-radius: 20px;
                            font-size: 11px;
                            text-transform: uppercase;
                            display: inline-flex;
                            align-items: center;
                            justify-content: center;
                            gap: 8px;
                            transition: all 0.2s ease;
                            letter-spacing: 0.5px;
                            cursor: pointer;
                            box-shadow: 0 4px 6px rgba(255, 152, 0, 0.15);
                            white-space: nowrap;
                        }
                        .btn-warning-suporte:hover {
                            background-color: #f57c00 !important;
                            border-color: #e65100 !important;
                            transform: translateY(-1px);
                            box-shadow: 0 6px 12px rgba(255, 152, 0, 0.25);
                        }

/* ===== Botão flutuante de ajuda (FAB) e modal de ajuda ===== */
.fab-ajuda {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #006633;
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 102, 51, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.fab-ajuda:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 102, 51, 0.45);
}
.fab-ajuda-tooltip {
    position: fixed;
    bottom: 40px;
    right: 92px;
    z-index: 9998;
    background: #2d3748;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    font-family: 'Poppins', sans-serif;
}
.fab-ajuda:hover + .fab-ajuda-tooltip { opacity: 1; }

/* Modal de Ajuda Moderno e Limpo */
.modal-ajuda-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17, 41, 69, 0.4);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.3s ease;
}
.modal-ajuda-overlay.ativo { display: flex; }
.modal-ajuda-box {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    animation: modalEntrar 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    box-sizing: border-box;
}
.modal-ajuda-box::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}
@keyframes modalEntrar {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Botão fechar redondo no topo direito */
.modal-ajuda-box .btn-fechar-ajuda {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f3f5;
    border: none;
    color: #495057;
    font-size: 16px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
    padding: 0;
    z-index: 10;
}
.modal-ajuda-box .btn-fechar-ajuda:hover {
    background: #e9ecef;
    color: #212529;
}

.modal-ajuda-body {
    padding: 30px 24px 24px 24px;
}
.modal-ajuda-body .modal-ajuda-titulo-verde {
    font-size: 14px;
    font-weight: 700;
    color: #006633;
    margin: 0 0 24px 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}
.modal-ajuda-body .modal-ajuda-titulo-verde::before {
    content: "•";
    font-size: 20px;
    line-height: 1;
}
.modal-ajuda-body .campo-ajuda {
    margin-bottom: 20px;
    position: relative;
}
.modal-ajuda-body .campo-ajuda label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}
.modal-ajuda-body .campo-ajuda input,
.modal-ajuda-body .campo-ajuda textarea {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    color: #2d3748;
}
.modal-ajuda-body .campo-ajuda textarea {
    padding-left: 14px;
    resize: vertical;
    min-height: 100px;
}
.modal-ajuda-body .campo-ajuda i {
    position: absolute;
    left: 15px;
    top: 41px;
    font-size: 16px;
    color: #a0aec0;
    pointer-events: none;
}
.modal-ajuda-body .campo-ajuda input::placeholder,
.modal-ajuda-body .campo-ajuda textarea::placeholder {
    color: #a0aec0;
}
.modal-ajuda-body .campo-ajuda input:focus,
.modal-ajuda-body .campo-ajuda textarea:focus {
    border-color: #006633;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 51, 0.08);
}
.btn-enviar-ajuda {
    width: 100%;
    height: 48px;
    background: #006633;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}
.btn-enviar-ajuda:hover { background: #004d26; }
.btn-enviar-ajuda:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}