/* Container geral */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Botões das abas */
.tab {
    padding: 10px 15px;
    border: none;
    background: #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.tab:hover {
    background: #0073aa;
    color: #fff;
}

/* Cards */
.card {
    padding: 18px;
    margin: 12px 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-2px);
}

/* Nome da empresa */
.card strong {
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
    color: #222;
}

/* Texto do desconto */
.card p {
    margin: 5px 0;
    color: #555;
}

/* Botão WhatsApp */
.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

/* Link do mapa */
.link-mapa {
    display: inline-block;
    margin-top: 10px;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.link-mapa:hover {
    text-decoration: underline;
}

/* Campo de busca */
#busca {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Responsivo */
@media (max-width: 600px) {
    .card {
        padding: 15px;
    }

    .tab {
        flex: 1;
        text-align: center;
    }
}