/* ==========================================
   BARRA DE FILTROS (MANTIDA E AJUSTADA)
========================================== */
.barra-filtros {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: var(--branco);
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.filtro-input-wrapper {
    position: relative;
    flex: 1;
}

.icon-busca {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--texto-mutado);
    width: 18px;
    height: 18px;
}

.filtro-input-wrapper input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    outline: none;
}

.barra-filtros select {
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    min-width: 200px;
    outline: none;
}

/* ==========================================
   GRID E CARDS DE LOJAS (RECUPERADO DO ANTIGO)
========================================== */
.grid-lojas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 25px;
}

.card-loja {
    background-color: var(--branco);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-loja:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cidade-estado {
    font-size: 1.25rem;
    font-weight: 700;
    color: #008cd6; /* Azul real da marca no print antigo */
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 12px;
}

.info-texto {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.4;
}

.info-texto strong {
    color: #1e293b;
}

/* ==========================================
   BOTÕES DE AÇÃO INTERNOS (MAPS E WHATS)
========================================== */
.btn-acao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    background-color: #f1f5f9;
}

.btn-acao:active {
    transform: scale(0.95);
}

.btn-maps {
    color: #008cd6;
}

.btn-maps:hover {
    background-color: #008cd6;
    color: var(--branco);
}

.btn-whats {
    color: #16a34a;
}

.btn-whats:hover {
    background-color: #16a34a;
    color: var(--branco);
}

/* ==========================================
   BLOCO DE HORÁRIOS COMPLETO
========================================== */
.horarios {
    font-size: 0.85rem;
    color: #334155;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    margin-top: auto;
}

.horarios-titulo {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--texto-mutado);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.horarios-linha {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.fechado {
    color: var(--vermelho-site);
    font-weight: 700;
}

.msg-inicial-pesquisa {
    grid-column: 1/-1;
    text-align: center;
    color: var(--texto-mutado);
    padding: 40px;
}